Skip to content

Commit 1120d54

Browse files
JiaLiPassionthePunderWoman
authored andcommitted
release: cut the zone.js-0.11.6 release (angular#46232)
PR Close angular#46232
1 parent 1278d2a commit 1120d54

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

packages/zone.js/CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
## [0.11.6](https://github.com/angular/angular/compare/zone.js-0.11.5...zone.js-0.11.6) (2022-06-02)
2+
3+
### Bug Fixes
4+
5+
- **zone.js:** check if `process` is defined when patching the `GlobalErrors.install` ([#45392](https://github.com/angular/angular/issues/45392)) ([c7bcc1b](https://github.com/angular/angular/commit/c7bcc1b50182e5378756aa4528a24075b5be026e)), closes [#42260](https://github.com/angular/angular/issues/42260)
6+
- **zone.js:** in TaskTrackingZoneSpec track a periodic task until it is cancelled ([#45391](https://github.com/angular/angular/issues/45391)) ([f19b36f](https://github.com/angular/angular/commit/f19b36f462803b3b3b9410391c039649541b10bc))
7+
- **zone.js:** read `Symbol.species` safely ([#45369](https://github.com/angular/angular/issues/45369)) ([e2eaac3](https://github.com/angular/angular/commit/e2eaac34b06a558145be41853f1d3585c1108880))
8+
- **zone.js:** should ignore multiple resolve call ([#45283](https://github.com/angular/angular/issues/45283)) ([aebf165](https://github.com/angular/angular/commit/aebf165359ad6de5a8bacd9cb91651fc4175aaad)), closes [#44913](https://github.com/angular/angular/issues/44913)
9+
- **zone.js:** swallow the error when the element callback is not patchable ([#45400](https://github.com/angular/angular/issues/45400)) ([4ea70e3](https://github.com/angular/angular/commit/4ea70e36b998208302183f78088637f3de86323d)), closes [lwc/engine-core/src/framework/base-bridge-element.ts#L180-L186](https://github.com/lwc/engine-core/src/framework/base-bridge-element.ts/issues/L180-L186) [#42546](https://github.com/angular/angular/issues/42546)
10+
11+
### BREAKING CHANGES
12+
13+
- **zone.js:** in TaskTrackingZoneSpec track a periodic task until it is cancelled
14+
15+
The breaking change is scoped only to the plugin
16+
`zone.js/plugins/task-tracking`. If you used `TaskTrackingZoneSpec` and
17+
checked the pending macroTasks e.g. using `(this.ngZone as any)._inner ._parent._properties.TaskTrackingZone.getTasksFor('macroTask')`, then
18+
its behavior slightly changed for periodic macrotasks. For example,
19+
previously the `setInterval` macrotask was no longer tracked after its
20+
callback was executed for the first time. Now it's tracked until
21+
the task is explicitly cancelled, e.g with `clearInterval(id)`.
22+
123
## [0.11.5](https://github.com/angular/angular/compare/zone.js-0.11.4...zone.js-0.11.5) (2022-03-03)
224

325
### Bug Fixes

packages/zone.js/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "zone.js",
3-
"version": "0.11.5",
3+
"version": "0.11.6",
44
"description": "Zones for JavaScript",
55
"main": "./bundles/zone.umd.js",
66
"module": "./fesm2015/zone.js",

0 commit comments

Comments
 (0)