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

Commit 787b636

Browse files
committed
chore: release v0.7.6
1 parent 1401d60 commit 787b636

10 files changed

+403
-37
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
<a name="0.7.6"></a>
2+
## [0.7.6](https://github.com/angular/zone.js/compare/v0.7.4...0.7.6) (2017-01-17)
3+
4+
5+
### Bug Fixes
6+
7+
* **doc:** typo in comment and reformat README.md ([#590](https://github.com/angular/zone.js/issues/590)) ([95ad315](https://github.com/angular/zone.js/commit/95ad315))
8+
* **ZoneAwareError:** Error should keep prototype chain and can be called without new ([82722c3](https://github.com/angular/zone.js/commit/82722c3)), closes [#546](https://github.com/angular/zone.js/issues/546) [#554](https://github.com/angular/zone.js/issues/554) [#555](https://github.com/angular/zone.js/issues/555)
9+
* [#536](https://github.com/angular/zone.js/issues/536), add notification api patch ([#599](https://github.com/angular/zone.js/issues/599)) ([83dfa97](https://github.com/angular/zone.js/commit/83dfa97))
10+
* [#593](https://github.com/angular/zone.js/issues/593), only call removeAttribute when have the method ([#594](https://github.com/angular/zone.js/issues/594)) ([1401d60](https://github.com/angular/zone.js/commit/1401d60))
11+
* [#595](https://github.com/angular/zone.js/issues/595), refactor ZoneAwareError property copy ([#597](https://github.com/angular/zone.js/issues/597)) ([f7330de](https://github.com/angular/zone.js/commit/f7330de))
12+
* [#604](https://github.com/angular/zone.js/issues/604), sometimes setInterval test spec will fail on Android 4.4 ([#605](https://github.com/angular/zone.js/issues/605)) ([e3cd1f4](https://github.com/angular/zone.js/commit/e3cd1f4))
13+
* add missing test MutationObserver ([5c7bc01](https://github.com/angular/zone.js/commit/5c7bc01))
14+
* Promise.toString() to look like native function ([f854ce0](https://github.com/angular/zone.js/commit/f854ce0))
15+
16+
17+
118
<a name="0.7.5"></a>
219
## [0.7.5](https://github.com/angular/zone.js/compare/v0.7.4...0.7.5) (2017-01-12)
320

dist/long-stack-trace-zone.js

+7-7
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ Zone['longStackTraceZoneSpec'] = {
9292
onHandleError: function (parentZoneDelegate, currentZone, targetZone, error) {
9393
var parentTask = Zone.currentTask || error.task;
9494
if (error instanceof Error && parentTask) {
95-
var stackSetSucceded = null;
95+
var stackSetSucceeded = null;
9696
try {
9797
var descriptor = Object.getOwnPropertyDescriptor(error, 'stack');
9898
if (descriptor && descriptor.configurable) {
@@ -104,24 +104,24 @@ Zone['longStackTraceZoneSpec'] = {
104104
}
105105
};
106106
Object.defineProperty(error, 'stack', descriptor);
107-
stackSetSucceded = true;
107+
stackSetSucceeded = true;
108108
}
109109
}
110110
catch (e) {
111111
}
112-
var longStack = stackSetSucceded ?
112+
var longStack = stackSetSucceeded ?
113113
null :
114114
renderLongStackTrace(parentTask.data && parentTask.data[creationTrace], error.stack);
115-
if (!stackSetSucceded) {
115+
if (!stackSetSucceeded) {
116116
try {
117-
stackSetSucceded = error.stack = longStack;
117+
stackSetSucceeded = error.stack = longStack;
118118
}
119119
catch (e) {
120120
}
121121
}
122-
if (!stackSetSucceded) {
122+
if (!stackSetSucceeded) {
123123
try {
124-
stackSetSucceded = error.longStack = longStack;
124+
stackSetSucceeded = error.longStack = longStack;
125125
}
126126
catch (e) {
127127
}

dist/mocha-patch.js

+7
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@
1111
(factory());
1212
}(this, (function () { 'use strict';
1313

14+
/**
15+
* @license
16+
* Copyright Google Inc. All Rights Reserved.
17+
*
18+
* Use of this source code is governed by an MIT-style license that can be
19+
* found in the LICENSE file at https://angular.io/license
20+
*/
1421
(function (context) {
1522
var Mocha = context.Mocha;
1623
if (typeof Mocha === 'undefined') {

dist/web-api.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/webapis-notification.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)