Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit b92b6e3

Browse files
committed
chore: release v0.8.11
1 parent 1919b36 commit b92b6e3

12 files changed

Lines changed: 1605 additions & 1162 deletions

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
<a name="0.8.11"></a>
2+
## [0.8.11](https://github.com/angular/zone.js/compare/v0.8.10...0.8.11) (2017-05-19)
3+
4+
5+
### Bug Fixes
6+
7+
* **closure:** patchOnProperty with exact eventNames as possible ([#768](https://github.com/angular/zone.js/issues/768)) ([582ff7b](https://github.com/angular/zone.js/commit/582ff7b))
8+
* **patch:** fix [#744](https://github.com/angular/zone.js/issues/744), add namespace to load patch name ([#774](https://github.com/angular/zone.js/issues/774)) ([89f990a](https://github.com/angular/zone.js/commit/89f990a))
9+
* **task:** fix [#778](https://github.com/angular/zone.js/issues/778), sometimes task will run after being canceled ([#780](https://github.com/angular/zone.js/issues/780)) ([b7238c8](https://github.com/angular/zone.js/commit/b7238c8))
10+
* **webcomponents:** fix [#782](https://github.com/angular/zone.js/issues/782), fix conflicts with shadydom of webcomponents ([#784](https://github.com/angular/zone.js/issues/784)) ([245f8e9](https://github.com/angular/zone.js/commit/245f8e9))
11+
* **webpack:** access `process` through `_global` so that WebPack does not accidently browserify ([#786](https://github.com/angular/zone.js/issues/786)) ([1919b36](https://github.com/angular/zone.js/commit/1919b36))
12+
13+
14+
115
<a name="0.8.10"></a>
216
## [0.8.10](https://github.com/angular/zone.js/compare/v0.8.9...0.8.10) (2017-05-03)
317

dist/webapis-media-query.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ Zone.__load_patch('mediaQuery', function (global, Zone, api) {
2222
if (!global['MediaQueryList']) {
2323
return;
2424
}
25-
var patchEventTargetMethods = Zone[Zone.__symbol__('patchEventTargetMethods')];
26-
patchEventTargetMethods(_global['MediaQueryList'].prototype, 'addListener', 'removeListener', function (self, args) {
25+
api.patchEventTargetMethods(_global['MediaQueryList'].prototype, 'addListener', 'removeListener', function (self, args) {
2726
return {
2827
useCapturing: false,
2928
eventName: 'mediaQuery',

dist/webapis-media-query.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/webapis-notification.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ Zone.__load_patch('notification', function (global, Zone, api) {
2727
if (!desc || !desc.configurable) {
2828
return;
2929
}
30-
var patchOnProperties = Zone[Zone.__symbol__('patchOnProperties')];
31-
patchOnProperties(Notification.prototype, null);
30+
api.patchOnProperties(Notification.prototype, null);
3231
});
3332

3433
})));

dist/webapis-notification.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/webapis-shadydom.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
* found in the LICENSE file at https://angular.io/license
2020
*/
2121
Zone.__load_patch('shadydom', function (global, Zone, api) {
22-
var patchEventTargetMethods = Zone[Zone.__symbol__('patchEventTargetMethods')];
2322
// https://github.com/angular/zone.js/issues/782
2423
// in web components, shadydom will patch addEventListener/removeEventListener of
2524
// Node.prototype and WindowPrototype, this will have conflict with zone.js
@@ -28,12 +27,12 @@ Zone.__load_patch('shadydom', function (global, Zone, api) {
2827
if (windowPrototype && windowPrototype.hasOwnProperty('addEventListener')) {
2928
windowPrototype[Zone.__symbol__('addEventListener')] = null;
3029
windowPrototype[Zone.__symbol__('removeEventListener')] = null;
31-
patchEventTargetMethods(windowPrototype);
30+
api.patchEventTargetMethods(windowPrototype);
3231
}
3332
if (Node.prototype.hasOwnProperty('addEventListener')) {
3433
Node.prototype[Zone.__symbol__('addEventListener')] = null;
3534
Node.prototype[Zone.__symbol__('removeEventListener')] = null;
36-
patchEventTargetMethods(Node.prototype);
35+
api.patchEventTargetMethods(Node.prototype);
3736
}
3837
});
3938

dist/webapis-shadydom.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)