Angular Robot
84f3ba0d90
build: lock file maintenance ( #60635 )
...
See associated pull request for more information.
PR Close #60635
2025-03-31 14:43:03 +00:00
Angular Robot
3bfa85f5c8
build: lock file maintenance ( #59836 )
...
See associated pull request for more information.
PR Close #59836
2025-02-18 15:41:09 +00:00
Angular Robot
e635f42284
build: lock file maintenance ( #59763 )
...
See associated pull request for more information.
Closes #59621 as a pr takeover
PR Close #59763
2025-01-29 08:49:47 -08:00
Angular Robot
19d224117e
build: lock file maintenance ( #59519 )
...
See associated pull request for more information.
Closes #59494 as a takeover pull request
PR Close #59519
2025-01-14 14:44:30 -05:00
Angular Robot
8eb8af5217
build: lock file maintenance ( #59291 )
...
See associated pull request for more information.
PR Close #59291
2025-01-06 22:23:08 +00:00
Angular Robot
b4f38e5d47
build: lock file maintenance ( #59202 )
...
See associated pull request for more information.
PR Close #59202
2024-12-16 15:22:38 -08:00
Angular Robot
2beb374524
build: lock file maintenance ( #59110 )
...
See associated pull request for more information.
PR Close #59110
2024-12-10 13:43:27 -08:00
Angular Robot
392c036e5e
build: update dependency mocha to v11 ( #59012 )
...
See associated pull request for more information.
PR Close #59012
2024-12-03 12:21:45 +01:00
Angular Robot
e305b45627
build: lock file maintenance ( #58998 )
...
See associated pull request for more information.
PR Close #58998
2024-12-02 16:29:03 +01:00
Angular Robot
a534fa5f46
build: lock file maintenance ( #58867 )
...
See associated pull request for more information.
PR Close #58867
2024-11-25 15:21:02 +00:00
Angular Robot
aca8cc0e16
build: lock file maintenance ( #58711 )
...
See associated pull request for more information.
PR Close #58711
2024-11-22 14:46:21 +00:00
Angular Robot
48be715878
build: lock file maintenance ( #58450 )
...
See associated pull request for more information.
PR Close #58450
2024-11-07 21:29:52 +00:00
Angular Robot
24cd1c8db6
build: lock file maintenance ( #57340 )
...
See associated pull request for more information.
PR Close #57340
2024-08-12 11:22:43 -07:00
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