Angular Robot
70fb3e114b
build: lock file maintenance
...
See associated pull request for more information.
2026-07-21 11:02:05 +02:00
Angular Robot
86b10d7138
build: lock file maintenance
...
See associated pull request for more information.
2026-07-14 08:00:35 -07:00
Angular Robot
ac5f4769dd
build: update pnpm to v10.34.5
...
See associated pull request for more information.
2026-07-13 11:52:20 -07:00
Angular Robot
f4d20693d5
build: lock file maintenance
...
See associated pull request for more information.
2026-07-07 13:48:52 -07:00
Angular Robot
98ea50718a
build: lock file maintenance
...
See associated pull request for more information.
2026-06-30 17:43:43 -07:00
Angular Robot
6ff26e96e4
build: update babel monorepo to v7.29.7
...
See associated pull request for more information.
2026-06-24 10:35:42 -04:00
Angular Robot
f2d3bb16c5
build: update pnpm to v10.34.4
...
See associated pull request for more information.
2026-06-24 10:35:18 -04:00
Angular Robot
7766dc0ef4
build: lock file maintenance
...
See associated pull request for more information.
2026-06-23 10:44:38 -04:00
Angular Robot
8dec7753a3
build: lock file maintenance
...
See associated pull request for more information.
Closes #69368 as a pr takeover
2026-06-17 09:59:32 -07:00
Angular Robot
3856ef7b98
build: update pnpm to v10.34.3
...
See associated pull request for more information.
2026-06-15 08:54:56 -07:00
Angular Robot
d45e318afd
build: update pnpm to v10.34.2
...
See associated pull request for more information.
2026-06-12 08:26:26 -07:00
Angular Robot
4ab9c5bd55
build: lock file maintenance
...
See associated pull request for more information.
2026-06-10 15:43:37 -07:00
Angular Robot
8f06057abe
build: lock file maintenance
...
See associated pull request for more information.
2026-06-04 14:44:49 -07:00
Angular Robot
2652c256d1
build: update pnpm to v10.34.1
...
See associated pull request for more information.
2026-06-01 11:56:50 +02:00
Angular Robot
7104453951
build: lock file maintenance
...
See associated pull request for more information.
2026-05-27 11:04:40 -07:00
Angular Robot
935a80a733
build: lock file maintenance
...
See associated pull request for more information.
2026-05-19 13:28:02 -07:00
Angular Robot
60eac0e55c
build: lock file maintenance
...
See associated pull request for more information.
2026-05-12 11:43:17 -07:00
Angular Robot
1d621ead2f
build: update pnpm to v10.33.4
...
See associated pull request for more information.
2026-05-08 10:05:58 -06:00
Angular Robot
fc526331e3
build: lock file maintenance
...
See associated pull request for more information.
2026-05-05 09:35:19 -07:00
Angular Robot
4f048e7de3
build: update dependency typescript to v6.0.3
...
See associated pull request for more information.
2026-05-04 13:05:58 -07:00
Angular Robot
9c7cbcd263
build: update all non-major dependencies
...
See associated pull request for more information.
2026-05-01 15:57:16 -07:00
Angular Robot
32d768f69c
build: lock file maintenance
...
See associated pull request for more information.
2026-04-28 10:25:45 -07:00
Angular Robot
f9c1f979d9
build: update pnpm to v10.33.2
...
See associated pull request for more information.
2026-04-24 10:10:56 -07:00
Angular Robot
09b9a62a25
build: lock file maintenance
...
See associated pull request for more information.
2026-04-21 11:52:07 -07:00
Angular Robot
8b4581d1bb
build: lock file maintenance
...
See associated pull request for more information.
2026-04-15 10:49:13 -04:00
Doug Parker
cf47eb41ff
test: use strict mode for ng_elements integration test
...
Apparently the Rollup bundle for these tests defaults to `es` format, meaning it expects to be loaded at runtime as native ESM. This was not happening because it was loaded as a regular `<script src="...">` tag (note the lack of `type="module"`).
This is problematic because Rollup assumed it would be running in a scoped environment, meaning [this function](https://github.com/angular/angular/blob/adb8d1078d5f127085952ca81951c18e0178a038/packages/core/primitives/event-dispatch/src/event.ts#L45 ), which happens to be named `addEventListener` but does *not* implement the `EventTarget.prototype.addEventListener` contract, was being bundled as a simple:
```javascript
function addEventListener(element, ...) {
// ...
}
```
Since this was loaded with no `type="module"` or `'use strict';`, the script executed in "sloppy mode", meaning all `var` statements and function definitions are implicitly global. Since `window` *is* the `globalThis` object, this random `addEventListener` function clobbers the actual `window.addEventListener` and breaks any calls to it because they're not implementing the same contract.
Fix is to just use `<script src="..." type="module">`. Alternatively we could bundle in an IIFE, which Rollup does support, but in theory we could depend on external ES modules which aren't bundled, so the `type="module"` seems a little safer and more future-proof.
2026-04-13 14:12:48 +03:00
Angular Robot
2ff9db30e0
build: lock file maintenance
...
See associated pull request for more information.
2026-04-07 10:48:02 -07:00
Angular Robot
11f047f195
build: update all non-major dependencies
...
See associated pull request for more information.
2026-04-02 11:45:22 -07:00
Angular Robot
277f9adb74
build: lock file maintenance
...
See associated pull request for more information.
2026-03-31 13:41:22 +02:00
Angular Robot
c9502999cf
build: update pnpm to v10.33.0
...
See associated pull request for more information.
2026-03-30 12:45:23 +02:00
Angular Robot
60930f847e
build: update all non-major dependencies
...
See associated pull request for more information.
2026-03-30 11:15:50 +02:00
Kristiyan Kostadinov
9ee4f83705
build: update to TypeScript 6 stable
...
Updates the repo to the stable version of TypeScript 6.
2026-03-25 12:57:49 -07:00
Angular Robot
1533242577
build: lock file maintenance
...
See associated pull request for more information.
2026-03-24 15:08:28 -07:00
Angular Robot
275a436a33
build: lock file maintenance
...
See associated pull request for more information.
2026-03-20 15:11:24 -07:00
Angular Robot
ed54855f5c
build: update pnpm to v10.32.1
...
See associated pull request for more information.
2026-03-13 13:09:26 -06:00
Angular Robot
4c532bdfb4
build: lock file maintenance
...
See associated pull request for more information.
2026-03-11 10:08:58 -07:00
Angular Robot
563eff0f49
build: update pnpm to v10.32.0
...
See associated pull request for more information.
2026-03-11 09:57:53 -07:00
Angular Robot
02a617e89e
build: update dependency @rollup/plugin-babel to v7
...
See associated pull request for more information.
2026-03-10 13:09:06 -07:00
Angular Robot
e121e25567
build: update pnpm to v10.31.0
...
See associated pull request for more information.
2026-03-09 11:18:08 -07:00
Angular Robot
f390e2d6a5
build: lock file maintenance
...
See associated pull request for more information.
2026-03-03 09:08:23 -08:00
Angular Robot
35175b0a8a
build: update pnpm to v10.30.3
...
See associated pull request for more information.
2026-03-02 08:38:47 -08:00
Angular Robot
b68228e89d
build: lock file maintenance
...
See associated pull request for more information.
2026-02-25 09:13:10 -08:00
Alan Agius
6d07890d63
build: update all non-major dependencies
...
See associated pull request for more information.
Closes #67035 as a pr takeover
2026-02-25 08:31:32 -08:00
Angular Robot
6bfec96d41
build: update pnpm to v10.30.2
...
See associated pull request for more information.
2026-02-25 07:54:24 -08:00
Angular Robot
9a3f5cbacc
build: update pnpm to v10.30.1
...
See associated pull request for more information.
2026-02-23 09:12:23 -08:00
Matthieu Riegler
d501506aa6
ci: add zone.js to minimumReleaseAgeExclude
...
This is a package we control the release of.
2026-02-19 12:41:19 -08:00
Angular Robot
22a209055c
build: update pnpm to v10.30.0
...
See associated pull request for more information.
2026-02-18 09:07:03 -08:00
Angular Robot
dfd5e3a90a
build: update pnpm to v10.29.3
...
See associated pull request for more information.
2026-02-13 09:18:58 -08:00
Angular Robot
5b59dbd36f
build: lock file maintenance
...
See associated pull request for more information.
2026-02-12 10:18:03 -08:00
Angular Robot
a4fceda35b
build: update pnpm to v10.29.2
...
See associated pull request for more information.
2026-02-11 13:40:49 -08:00