Andrew Kushnir
b2076fad07
release: cut the v20.0.7 release
2025-07-09 11:59:12 -07:00
Jessica Janiuk
5766ba6a5e
release: cut the v20.0.6 release
2025-07-01 18:40:02 +02:00
Angular Robot
4bc8187b7e
build: update all non-major dependencies ( #62356 )
...
See associated pull request for more information.
PR Close #62356
2025-06-30 08:47:31 +00:00
Angular Robot
175e4802b8
build: update cross-repo angular dependencies ( #62350 )
...
See associated pull request for more information.
PR Close #62350
2025-06-30 07:42:15 +00:00
Angular Robot
84fe149dc7
build: update cross-repo angular dependencies ( #62330 )
...
See associated pull request for more information.
PR Close #62330
2025-06-27 11:21:21 +00:00
Angular Robot
41230e6719
build: update dependency marked to v16 ( #62322 )
...
See associated pull request for more information.
PR Close #62322
2025-06-27 08:59:58 +00:00
Angular Robot
308c82d87b
build: update all non-major dependencies ( #62324 )
...
See associated pull request for more information.
Closes #62321 as a pr takeover
PR Close #62324
2025-06-27 08:35:53 +00:00
Angular Robot
ff37af9f76
build: update cross-repo angular dependencies ( #62313 )
...
See associated pull request for more information.
PR Close #62313
2025-06-27 07:21:12 +00:00
Joey Perrott
31e3eb20f9
build: migrate to use web test runner rules ( #62294 )
...
Migrate karma tests throughout the repo to use the new web test runner based rule instead
PR Close #62294
2025-06-26 17:20:49 +00:00
Angular Robot
8b861e2caf
build: update cross-repo angular dependencies ( #62289 )
...
See associated pull request for more information.
PR Close #62289
2025-06-26 11:44:06 +00:00
Angular Robot
92ecd6900d
build: update dependency rollup to v4.44.1 ( #62286 )
...
See associated pull request for more information.
PR Close #62286
2025-06-26 10:25:00 +00:00
Angular Robot
8822d6c1bc
build: update cross-repo angular dependencies ( #62274 )
...
See associated pull request for more information.
PR Close #62274
2025-06-26 08:18:51 +00:00
Jessica Janiuk
c6f0f54cdd
release: cut the v20.0.5 release
2025-06-25 18:45:56 +02:00
Angular Robot
31a21253ed
build: update cross-repo angular dependencies ( #62263 )
...
See associated pull request for more information.
PR Close #62263
2025-06-25 13:19:42 +00:00
Angular Robot
767e1ddcf5
build: update cross-repo angular dependencies ( #62248 )
...
See associated pull request for more information.
PR Close #62248
2025-06-24 16:26:10 +00:00
Angular Robot
7a520ffff9
build: update cross-repo angular dependencies ( #62200 )
...
See associated pull request for more information.
PR Close #62200
2025-06-24 08:53:38 +00:00
Angular Robot
9c4144962f
build: update cross-repo angular dependencies ( #62163 )
...
See associated pull request for more information.
PR Close #62163
2025-06-20 14:43:24 -07:00
Angular Robot
3aeee1dd56
build: update dependency rollup to v4.44.0 ( #62145 )
...
See associated pull request for more information.
PR Close #62145
2025-06-20 10:31:07 +02:00
Pawel Kozlowski
6a4fdbad7d
release: cut the v20.0.4 release
2025-06-18 19:33:26 +02:00
Angular Robot
4aa262b425
build: update cross-repo angular dependencies ( #62116 )
...
See associated pull request for more information.
PR Close #62116
2025-06-18 13:28:13 +02:00
Angular Robot
24b4484f7f
build: update cross-repo angular dependencies ( #62080 )
...
See associated pull request for more information.
PR Close #62080
2025-06-18 09:10:08 +02:00
Angular Robot
44468bfe48
build: update cross-repo angular dependencies ( #62008 )
...
See associated pull request for more information.
PR Close #62008
2025-06-12 10:03:41 +02:00
Pawel Kozlowski
6412d4e544
release: cut the v20.0.3 release
2025-06-11 15:24:20 +02:00
Angular Robot
492d76f6cf
build: update cross-repo angular dependencies ( #61944 )
...
See associated pull request for more information.
PR Close #61944
2025-06-11 13:30:56 +02:00
Angular Robot
ff27f21142
build: update all non-major dependencies ( #61954 )
...
See associated pull request for more information.
PR Close #61954
2025-06-11 12:05:39 +02:00
Angular Robot
229c6b440c
build: update dependency typescript to v5.8.3 ( #61958 )
...
See associated pull request for more information.
PR Close #61958
2025-06-10 17:26:45 -07:00
Joey Perrott
d3c2956043
build: add zone.js as an npm based dependency ( #61948 )
...
Add zone.js as an npm based dependency
PR Close #61948
2025-06-06 15:20:44 -07:00
Andrew Kushnir
321c8a3855
release: cut the v20.0.2 release
2025-06-06 09:25:58 -07:00
Angular Robot
9ae8027d9b
build: update cross-repo angular dependencies ( #61912 )
...
See associated pull request for more information.
PR Close #61912
2025-06-06 10:29:43 +02:00
Paul Gschwendtner
23e3c6a7c9
build: introduce NodeJS loader for rules_js Node execution ( #61895 )
...
For the `rules_js` migration, we are facing the problem where
our current Angular code is shipped as ESM, but we aren't fully
there yet with fully compliant strict ESM during development.
That is because we lack explicit import extensions, and it's also a
different story how this would work in Google3, if we were to add them.
In addition, we cross-import from our packages using npm module names.
This works well for TS, for ESBuild because those can respect path
mappings— but at runtime, when executing native `jasmine_test`'s— such
mappings aren't respected. The options here are:
- avoid module imports in the repo (impossible; undesired)
- use pre-bundling of all NodeJS execution involving npm package code
(slower, extra build action cost)
- wire up a simple NodeJS loader (supported via official APIs) to simply
account for our cases (preferred and similar to what we experimented
with for the last year(s); and worked well)
This commit implements the last option and allows for an easy migration
to `rules_js`, and also is pretty reasonable. Long-term we can resolve
the extension problem if we e.g. migrate to real explicit extensions + a
proper TS module resolution like e.g. `nodenext`.
PR Close #61895
2025-06-05 13:33:52 +02:00
Angular Robot
f6841ea089
build: update cross-repo angular dependencies ( #61881 )
...
See associated pull request for more information.
PR Close #61881
2025-06-05 10:17:01 +02:00
Angular Robot
49e273a5f9
build: update all non-major dependencies ( #61701 )
...
See associated pull request for more information.
PR Close #61701
2025-06-04 17:23:54 -04:00
kirjs
66e9924eb2
release: cut the v20.0.1 release
2025-06-04 15:19:00 -04:00
Angular Robot
3710b124a1
build: update cross-repo angular dependencies ( #61855 )
...
See associated pull request for more information.
PR Close #61855
2025-06-04 10:24:51 -04:00
Angular Robot
30ea478be4
build: update cross-repo angular dependencies ( #61704 )
...
See associated pull request for more information.
PR Close #61704
2025-06-03 07:33:33 -04:00
Angular Robot
9e16d9cdf6
build: update dependency yargs to v18 ( #61770 )
...
See associated pull request for more information.
PR Close #61770
2025-06-03 07:02:12 -04:00
Andrew Scott
40e2b5b4d1
release: cut the v20.0.0 release
2025-05-28 06:52:44 -07:00
Andrew Scott
0502cf26c5
release: cut the v20.0.0-rc.3 release
2025-05-27 15:59:11 -07:00
Angular Robot
360660db17
build: update all non-major dependencies ( #61667 )
...
See associated pull request for more information.
PR Close #61667
2025-05-26 11:13:25 +00:00
Angular Robot
2f1f6eeb57
build: update cross-repo angular dependencies ( #61680 )
...
See associated pull request for more information.
PR Close #61680
2025-05-26 10:27:08 +00:00
Angular Robot
6b7c8d1d6f
build: update cross-repo angular dependencies to v20.0.0-rc.2 ( #61588 )
...
See associated pull request for more information.
PR Close #61588
2025-05-21 15:31:35 -07:00
Andrew Scott
09f79e0a46
release: cut the v20.0.0-rc.2 release
2025-05-21 13:05:34 -07:00
Angular Robot
9d8a778b28
build: update cross-repo angular dependencies ( #61577 )
...
See associated pull request for more information.
PR Close #61577
2025-05-21 15:01:11 +00:00
Angular Robot
c68e9d0033
build: update cross-repo angular dependencies ( #61562 )
...
See associated pull request for more information.
PR Close #61562
2025-05-21 11:56:30 +00:00
Angular Robot
7a447271de
build: update cross-repo angular dependencies ( #61531 )
...
See associated pull request for more information.
PR Close #61531
2025-05-20 17:45:32 +00:00
Angular Robot
9de1d4fbbf
build: update dependency undici to v7 ( #61523 )
...
See associated pull request for more information.
PR Close #61523
2025-05-20 16:52:24 +00:00
Alan Agius
30e081287d
fix(core): update min Node.js support to 20.19, 22.12, and 24.0 ( #61500 )
...
This is to match the versions of the Angular CLI.
See: https://github.com/angular/angular-cli/pull/30349
PR Close #61500
2025-05-20 14:17:20 +00:00
Angular Robot
6218b381c7
build: update cross-repo angular dependencies ( #61509 )
...
See associated pull request for more information.
PR Close #61509
2025-05-20 13:50:57 +00:00
Angular Robot
29d8283d65
build: update dependency @octokit/graphql to v9 ( #61505 )
...
See associated pull request for more information.
PR Close #61505
2025-05-20 12:31:14 +00:00
Angular Robot
3c5b0296cd
build: update cross-repo angular dependencies ( #61507 )
...
See associated pull request for more information.
PR Close #61507
2025-05-20 12:01:28 +00:00