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.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mhevery committed Mar 15, 2017
1 parent f742394 commit 8f6ddf3
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 6 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
<a name="0.8.3"></a>
## [0.8.3](https://github.com/angular/zone.js/compare/v0.8.1...0.8.3) (2017-03-15)


### Bug Fixes

* **zone:** consistent access to __symbol__ to work with closure ([f742394](https://github.com/angular/zone.js/commit/f742394))


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

Expand Down
2 changes: 1 addition & 1 deletion dist/fake-async-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
this._scheduler = new Scheduler();
this._microtasks = [];
this._lastError = null;
this._uncaughtPromiseErrors = Promise[Zone['__symbol__']('uncaughtPromiseErrors')];
this._uncaughtPromiseErrors = Promise[Zone.__symbol__('uncaughtPromiseErrors')];
this.pendingPeriodicTimers = [];
this.pendingTimers = [];
this.properties = { 'FakeAsyncTestZoneSpec': this };
Expand Down
2 changes: 1 addition & 1 deletion dist/long-stack-trace-zone.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Zone['longStackTraceZoneSpec'] = {
if (!error) {
return undefined;
}
var task = error[Zone['__symbol__']('currentTask')];
var task = error[Zone.__symbol__('currentTask')];
var trace = task && task.data && task.data[creationTrace];
if (!trace) {
return error.stack;
Expand Down
2 changes: 1 addition & 1 deletion dist/webapis-media-query.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
if (!_global['MediaQueryList']) {
return;
}
var patchEventTargetMethods = Zone[Zone['__symbol__']('patchEventTargetMethods')];
var patchEventTargetMethods = Zone[Zone.__symbol__('patchEventTargetMethods')];
patchEventTargetMethods(_global['MediaQueryList'].prototype, 'addListener', 'removeListener', function (self, args) {
return {
useCapturing: false,
Expand Down
2 changes: 1 addition & 1 deletion dist/webapis-notification.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
if (!desc || !desc.configurable) {
return;
}
var patchOnProperties = Zone[Zone['__symbol__']('patchOnProperties')];
var patchOnProperties = Zone[Zone.__symbol__('patchOnProperties')];
patchOnProperties(Notification.prototype, null);
}
})(typeof window === 'object' && window || typeof self === 'object' && self || global);
Expand Down
2 changes: 1 addition & 1 deletion dist/zone-bluebird.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
* found in the LICENSE file at https://angular.io/license
*/
(function (_global) {
var __symbol__ = Zone['__symbol__'];
var __symbol__ = Zone.__symbol__;
// TODO: @JiaLiPassion, we can automatically patch bluebird
// if global.Promise = Bluebird, but sometimes in nodejs,
// global.Promise is not Bluebird, and Bluebird is just be
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "zone.js",
"version": "0.8.2",
"version": "0.8.3",
"description": "Zones for JavaScript",
"main": "dist/zone-node.js",
"browser": "dist/zone.js",
Expand Down

0 comments on commit 8f6ddf3

Please sign in to comment.