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

Commit

Permalink
chore: release v0.8.11
Browse files Browse the repository at this point in the history
  • Loading branch information
mhevery committed May 19, 2017
1 parent 1919b36 commit b92b6e3
Show file tree
Hide file tree
Showing 12 changed files with 1,605 additions and 1,162 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
<a name="0.8.11"></a>
## [0.8.11](https://github.com/angular/zone.js/compare/v0.8.10...0.8.11) (2017-05-19)


### Bug Fixes

* **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))
* **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))
* **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))
* **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))
* **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))



<a name="0.8.10"></a>
## [0.8.10](https://github.com/angular/zone.js/compare/v0.8.9...0.8.10) (2017-05-03)

Expand Down
3 changes: 1 addition & 2 deletions dist/webapis-media-query.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,7 @@ Zone.__load_patch('mediaQuery', function (global, Zone, api) {
if (!global['MediaQueryList']) {
return;
}
var patchEventTargetMethods = Zone[Zone.__symbol__('patchEventTargetMethods')];
patchEventTargetMethods(_global['MediaQueryList'].prototype, 'addListener', 'removeListener', function (self, args) {
api.patchEventTargetMethods(_global['MediaQueryList'].prototype, 'addListener', 'removeListener', function (self, args) {
return {
useCapturing: false,
eventName: 'mediaQuery',
Expand Down
2 changes: 1 addition & 1 deletion dist/webapis-media-query.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions dist/webapis-notification.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ Zone.__load_patch('notification', function (global, Zone, api) {
if (!desc || !desc.configurable) {
return;
}
var patchOnProperties = Zone[Zone.__symbol__('patchOnProperties')];
patchOnProperties(Notification.prototype, null);
api.patchOnProperties(Notification.prototype, null);
});

})));
2 changes: 1 addition & 1 deletion dist/webapis-notification.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions dist/webapis-shadydom.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
* found in the LICENSE file at https://angular.io/license
*/
Zone.__load_patch('shadydom', function (global, Zone, api) {
var patchEventTargetMethods = Zone[Zone.__symbol__('patchEventTargetMethods')];
// https://github.com/angular/zone.js/issues/782
// in web components, shadydom will patch addEventListener/removeEventListener of
// Node.prototype and WindowPrototype, this will have conflict with zone.js
Expand All @@ -28,12 +27,12 @@ Zone.__load_patch('shadydom', function (global, Zone, api) {
if (windowPrototype && windowPrototype.hasOwnProperty('addEventListener')) {
windowPrototype[Zone.__symbol__('addEventListener')] = null;
windowPrototype[Zone.__symbol__('removeEventListener')] = null;
patchEventTargetMethods(windowPrototype);
api.patchEventTargetMethods(windowPrototype);
}
if (Node.prototype.hasOwnProperty('addEventListener')) {
Node.prototype[Zone.__symbol__('addEventListener')] = null;
Node.prototype[Zone.__symbol__('removeEventListener')] = null;
patchEventTargetMethods(Node.prototype);
api.patchEventTargetMethods(Node.prototype);
}
});

Expand Down
2 changes: 1 addition & 1 deletion dist/webapis-shadydom.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b92b6e3

Please sign in to comment.