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.7.6
Browse files Browse the repository at this point in the history
  • Loading branch information
mhevery committed Jan 17, 2017
1 parent 1401d60 commit 787b636
Show file tree
Hide file tree
Showing 10 changed files with 403 additions and 37 deletions.
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
<a name="0.7.6"></a>
## [0.7.6](https://github.com/angular/zone.js/compare/v0.7.4...0.7.6) (2017-01-17)


### Bug Fixes

* **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))
* **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)
* [#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))
* [#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))
* [#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))
* [#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))
* add missing test MutationObserver ([5c7bc01](https://github.com/angular/zone.js/commit/5c7bc01))
* Promise.toString() to look like native function ([f854ce0](https://github.com/angular/zone.js/commit/f854ce0))



<a name="0.7.5"></a>
## [0.7.5](https://github.com/angular/zone.js/compare/v0.7.4...0.7.5) (2017-01-12)

Expand Down
14 changes: 7 additions & 7 deletions dist/long-stack-trace-zone.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ Zone['longStackTraceZoneSpec'] = {
onHandleError: function (parentZoneDelegate, currentZone, targetZone, error) {
var parentTask = Zone.currentTask || error.task;
if (error instanceof Error && parentTask) {
var stackSetSucceded = null;
var stackSetSucceeded = null;
try {
var descriptor = Object.getOwnPropertyDescriptor(error, 'stack');
if (descriptor && descriptor.configurable) {
Expand All @@ -104,24 +104,24 @@ Zone['longStackTraceZoneSpec'] = {
}
};
Object.defineProperty(error, 'stack', descriptor);
stackSetSucceded = true;
stackSetSucceeded = true;
}
}
catch (e) {
}
var longStack = stackSetSucceded ?
var longStack = stackSetSucceeded ?
null :
renderLongStackTrace(parentTask.data && parentTask.data[creationTrace], error.stack);
if (!stackSetSucceded) {
if (!stackSetSucceeded) {
try {
stackSetSucceded = error.stack = longStack;
stackSetSucceeded = error.stack = longStack;
}
catch (e) {
}
}
if (!stackSetSucceded) {
if (!stackSetSucceeded) {
try {
stackSetSucceded = error.longStack = longStack;
stackSetSucceeded = error.longStack = longStack;
}
catch (e) {
}
Expand Down
7 changes: 7 additions & 0 deletions dist/mocha-patch.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@
(factory());
}(this, (function () { 'use strict';

/**
* @license
* Copyright Google Inc. All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file at https://angular.io/license
*/
(function (context) {
var Mocha = context.Mocha;
if (typeof Mocha === 'undefined') {
Expand Down
1 change: 1 addition & 0 deletions dist/web-api.js

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

2 changes: 1 addition & 1 deletion dist/webapis-notification.js

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

Loading

0 comments on commit 787b636

Please sign in to comment.