Angular Robot
dbca467a35
build: lock file maintenance ( #57256 )
...
See associated pull request for more information.
PR Close #57256
2024-08-05 14:42:24 +00:00
Paul Gschwendtner
2d314865c8
build: lock file maintenance ( #57205 )
...
See associated pull request for more information.
PR Close #57205
2024-07-31 16:02:11 +00:00
Angular Robot
6ca056532a
build: lock file maintenance ( #56361 )
...
See associated pull request for more information.
PR Close #56361
2024-06-10 13:54:11 -07:00
Angular Robot
7898957b9d
build: lock file maintenance ( #55680 )
...
See associated pull request for more information.
PR Close #55680
2024-05-06 12:32:18 -07:00
Angular Robot
2ac54f8327
build: lock file maintenance ( #55575 )
...
See associated pull request for more information.
PR Close #55575
2024-04-30 14:03:59 -07:00
Angular Robot
86967af904
build: lock file maintenance ( #55343 )
...
See associated pull request for more information.
PR Close #55343
2024-04-23 13:37:56 -07:00
Alan Agius
15f19820b0
build: update Domino to 8f228f8862540c6ccd14f76b5a1d9bb5458618af ( #55424 )
...
This contains the fix for https://github.com/angular/angular/issues/55416
PR Close #55424
2024-04-19 13:24:25 -07:00
Angular Robot
cae993c3b7
build: lock file maintenance ( #55241 )
...
See associated pull request for more information.
PR Close #55241
2024-04-09 15:22:11 -07:00
Angular Robot
a84cb62522
build: lock file maintenance ( #55145 )
...
See associated pull request for more information.
PR Close #55145
2024-04-05 11:08:44 -07:00
Angular Robot
418b7dff4b
build: lock file maintenance ( #55022 )
...
See associated pull request for more information.
PR Close #55022
2024-03-29 12:59:32 -07:00
Angular Robot
e7d54aba8b
build: update dependency google-closure-compiler to v20240317 ( #54931 )
...
See associated pull request for more information.
PR Close #54931
2024-03-19 17:00:45 +00:00
Angular Robot
d099d650ec
build: lock file maintenance ( #54920 )
...
See associated pull request for more information.
PR Close #54920
2024-03-19 16:51:45 +00:00
Angular Robot
369157063c
build: update dependency google-closure-compiler to v20231112 ( #54893 )
...
See associated pull request for more information.
PR Close #54893
2024-03-15 18:31:22 +00:00
JiaLiPassion
08b0c87a94
fix(zone.js): Promise.resolve(subPromise) should return subPromise ( #53423 )
...
In the original `Promise` impelmentation, zone.js follow the spec from
https://promisesaplus.com/#point-51 .
```
const p1 = Promise.resolve(1);
const p2 = Promise.resolve(p1);
p1 === p2; // false
```
in this case, `p2` should be the same status with `p1` but they are
still different instances.
And for some edge case.
```
class MyPromise extends Promise {
constructor(sub) {
super((res) => res(null));
this.sub = sub;
}
then(onFufilled, onRejected) {
this.sub.then(onFufilled, onRejected);
}
}
const p1 = new Promise(setTimeout(res), 100);
const myP = new MyPromise(p1);
const r = await myP;
r === 1; // false
```
So in the above code, `myP` is not the same instance with `p1`,
and since `myP` is resolved in constructor, so `await myP` will
just pass without waiting for `p1`.
And in the current `tc39` spec here https://tc39.es/ecma262/multipage/control-abstraction-objects.html#sec-promise-resolve
`Promise.resolve(subP)` should return `subP`.
```
const p1 = Promise.resolve(1);
const p2 = Promise.resolve(p1);
p1 === p2; // true
```
So the above `MyPromise` can wait for the `p1` correctly.
PR Close #53423
2023-12-11 10:55:12 -08:00
Angular Robot
7888819063
build: update cross-repo angular dependencies ( #52191 )
...
See associated pull request for more information.
PR Close #52191
2023-10-26 14:12:34 -07:00
Joey Perrott
5436890d4c
build: lock file maintenance ( #52353 )
...
See associated pull request for more information.
PR Close #52353
2023-10-24 14:29:17 -07:00
Joey Perrott
5269cae788
build: lock file maintenance ( #51834 )
...
Update the lock file.
PR Close #51834
2023-10-04 11:31:27 -07:00
Angular Robot
068b38a05d
build: update cross-repo angular dependencies ( #51996 )
...
See associated pull request for more information.
(cherry picked from commit e169b2da2e )
PR Close #51996
2023-10-03 08:07:48 -07:00
Angular Robot
690c8325cd
build: lock file maintenance ( #51628 )
...
See associated pull request for more information.
PR Close #51628
2023-09-01 20:44:06 +00:00
Angular Robot
c439a40db2
build: update dependency google-closure-compiler to v20230802 ( #51265 )
...
See associated pull request for more information.
PR Close #51265
2023-08-31 16:34:49 +00:00
Angular Robot
27d43a4a7f
build: lock file maintenance ( #51134 )
...
See associated pull request for more information.
PR Close #51134
2023-07-24 08:12:51 -07:00
Angular Robot
a5bd5ddbaa
build: lock file maintenance ( #50877 )
...
See associated pull request for more information.
PR Close #50877
2023-06-28 13:33:22 -07:00
Angular Robot
17dec5bbe7
build: lock file maintenance ( #50532 )
...
See associated pull request for more information.
PR Close #50532
2023-06-13 11:46:07 +02:00
Angular Robot
b68306e616
build: update dependency google-closure-compiler to v20230502 ( #50153 )
...
See associated pull request for more information.
PR Close #50153
2023-05-19 14:18:36 +00:00
Angular Robot
f2926b19e8
build: lock file maintenance ( #49879 )
...
See associated pull request for more information.
PR Close #49879
2023-05-11 14:27:01 -07:00
Alan Agius
cd5946bccd
build: lock file maintenance ( #50227 )
...
See associated pull request for more information.
(cherry picked from commit d5f92bdd64 )
PR Close #50227
2023-05-10 11:32:43 -07:00
Angular Robot
84a2e7db55
build: lock file maintenance ( #49914 )
...
See associated pull request for more information.
PR Close #49914
2023-05-09 14:38:45 -07:00
Angular Robot
50de000cf7
build: update dependency google-closure-compiler to v20230411 ( #49892 )
...
See associated pull request for more information.
PR Close #49892
2023-04-18 19:07:14 +00:00
Angular Robot
1c16be4728
build: update domino digest to aa8de34 ( #49716 )
...
See associated pull request for more information.
PR Close #49716
2023-04-05 10:52:49 -07:00
Angular Robot
a218ef5bf2
build: update domino digest to 89bec1a ( #49703 )
...
See associated pull request for more information.
PR Close #49703
2023-04-04 15:04:50 -07:00
Angular Robot
d11f5d70d3
build: update dependency google-closure-compiler to v20230228 ( #49663 )
...
See associated pull request for more information.
PR Close #49663
2023-04-03 19:12:14 -07:00
Alan Agius
50c58ce56e
build: update domino digest to f29f047 ( #49461 )
...
Update domino digest to f29f047
PR Close #49461
2023-03-30 09:40:31 -07:00
Alan Agius
3dff6385f4
build: update Domino to dc2f473e8155f0e21162e89681b5b0cb295d86e9 ( #49461 )
...
Update own Domino SHA.
Closes #44685
PR Close #49461
2023-03-30 09:40:31 -07:00
JiaLiPassion
5a2b6227b3
fix(zone.js): revert Mocha it.skip, describe.skip method patch ( #49329 )
...
In the previous commit https://github.com/angular/angular/pull/45047
The `it.skip` and `describe.skip` is wrongly deleted, should keep
the patch for these methods.
PR Close #49329
2023-03-14 09:13:57 -07:00
Jessica Janiuk
76731ae5c8
refactor(platform-server): Switch to using angular fork of domino ( #49189 )
...
This changes the dependency on Domino to use the recently forked version.
PR Close #49189
2023-02-24 09:33:07 -08:00
Angular Robot
f874d6e226
build: update dependency google-closure-compiler to v20230206 ( #49028 )
...
See associated pull request for more information.
PR Close #49028
2023-02-14 16:24:22 +01:00
Paul Gschwendtner
cc5d3b75e2
refactor: update zone.js and tests to work with ESM ( #48521 )
...
* Adjusts tests to no longer rely on CommonJS features. Switches them to
ESM
* Updates test initialization files to not double-initialize Jasmine now
that bootstrap files are loaded after Jasmine. The `jasmine.boot`
setup was hacky from `rules_nodejs` and will break in the future
regardless if we e.g. use `rules_js` with actual unmodified `jasmine`.
PR Close #48521
2022-12-19 19:50:44 +00:00
Kristiyan Kostadinov
dd42974b07
feat(core): support TypeScript 4.9 ( #48005 )
...
Updates to TypeScript 4.9 and resolves some of the errors and deprecation warnings that showed up as a result.
PR Close #48005
2022-12-06 10:45:33 -08:00
Angular Robot
30177a41f9
build: update dependency google-closure-compiler to v20221102 ( #47992 )
...
See associated pull request for more information.
PR Close #47992
2022-11-08 12:39:21 -08:00
Angular Robot
370aa345b1
build: update dependency google-closure-compiler to v20221004 ( #47696 )
...
See associated pull request for more information.
PR Close #47696
2022-10-10 16:09:15 +00:00
JiaLiPassion
59aa2c06d1
test(zone.js): update jest test code after upgrade to jest 29.0 ( #47486 )
...
related to https://github.com/angular/angular/pull/47438
After jest 28, `jest-environment-node` and `jest-environment-jsdom` need
to be installed by the user themselves, and the API has some breaking
changes, so this PR fix these issues to make the zone/jest integration
test code work as expected.
PR Close #47486
2022-09-20 18:12:47 +02:00
Angular Robot
c9991ca49d
build: update dependency google-closure-compiler to v20220905 ( #47437 )
...
See associated pull request for more information.
PR Close #47437
2022-09-19 17:21:02 +02:00
Kristiyan Kostadinov
7d3df4724d
build: update to TypeScript 4.8 final ( #47270 )
...
Bumps up to the final version of TS 4.8 and removes some workarounds.
PR Close #47270
2022-08-26 09:46:07 -07:00
Kristiyan Kostadinov
31429eaccc
feat(core): support TypeScript 4.8 ( #47038 )
...
Adds support for TypeScript 4.8 and resolves some issues that came up as a result of the update.
Most of the issues came from some changes in TypeScript where the `decorators` and `modifiers` properties were removed from most node types, and were combined into a single `modifiers` array. Since we need to continue supporting TS 4.6 and 4.7 until v15, I ended up creating a new `ngtsc/ts_compatibility` directory to make it easier to reuse the new backwards-compatible code.
PR Close #47038
2022-08-16 16:02:47 +00:00
Angular Robot
bba2e252cd
build: update dependency google-closure-compiler to v20220719 ( #46926 )
...
See associated pull request for more information.
PR Close #46926
2022-08-01 09:39:25 -07:00
Angular Robot
dbb0dfe707
build: lock file maintenance ( #46691 )
...
See associated pull request for more information.
PR Close #46691
2022-07-13 17:07:57 +00:00
Angular Robot
4b03b1c25a
build: lock file maintenance ( #46819 )
...
See associated pull request for more information.
PR Close #46819
2022-07-13 16:32:25 +00:00
Angular Robot
4f2c87b988
build: update dependency mocha to v10 ( #46619 )
...
| datasource | package | from | to |
| ---------- | ------- | ----- | ------ |
| npm | mocha | 9.2.2 | 10.0.0 |
PR Close #46619
2022-07-11 18:13:37 +00:00
renovate[bot]
19364cff20
build: update dependency google-closure-compiler to v20220601 ( #46565 )
...
PR Close #46565
2022-06-29 10:18:26 -07:00
Renovate Bot
5cfde8b23e
build: lock file maintenance ( #46104 )
...
PR Close #46104
2022-06-03 10:23:36 -07:00