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

Commit 2a7dd7b

Browse files
committed
chore: release v0.8.1
1 parent ef39a44 commit 2a7dd7b

File tree

7 files changed

+994
-165
lines changed

7 files changed

+994
-165
lines changed

Diff for: CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
<a name="0.8.1"></a>
2+
## [0.8.1](https://github.com/angular/zone.js/compare/v0.8.0...0.8.1) (2017-03-13)
3+
4+
5+
### Bug Fixes
6+
7+
* **example:** Update counting.html ([#648](https://github.com/angular/zone.js/issues/648)) ([a63ae5f](https://github.com/angular/zone.js/commit/a63ae5f))
8+
* **XHR:** fix [#671](https://github.com/angular/zone.js/issues/671), patch XMLHttpRequestEventTarget prototype ([300dc36](https://github.com/angular/zone.js/commit/300dc36))
9+
10+
11+
### Features
12+
13+
* **error:** remove zone internal stack frames in error.stack ([#632](https://github.com/angular/zone.js/issues/632)) ([76fa891](https://github.com/angular/zone.js/commit/76fa891))
14+
* **task:** add task lifecycle doc and testcases to explain task state transition. ([#651](https://github.com/angular/zone.js/issues/651)) ([ef39a44](https://github.com/angular/zone.js/commit/ef39a44))
15+
16+
17+
118
<a name="0.8.0"></a>
219
# [0.8.0](https://github.com/angular/zone.js/compare/v0.7.8...0.8.0) (2017-03-10)
320

Diff for: dist/zone-mix.js

+325-53
Large diffs are not rendered by default.

Diff for: dist/zone-node.js

+320-53
Large diffs are not rendered by default.

Diff for: dist/zone.js

+325-53
Large diffs are not rendered by default.

Diff for: dist/zone.js.d.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -420,9 +420,9 @@ declare type HasTaskState = {
420420
*/
421421
declare type TaskType = 'microTask' | 'macroTask' | 'eventTask';
422422
/**
423-
* Task type: `notScheduled`, `scheduling`, `scheduled`, `running`, `canceling`.
423+
* Task type: `notScheduled`, `scheduling`, `scheduled`, `running`, `canceling`, 'unknown'.
424424
*/
425-
declare type TaskState = 'notScheduled' | 'scheduling' | 'scheduled' | 'running' | 'canceling';
425+
declare type TaskState = 'notScheduled' | 'scheduling' | 'scheduled' | 'running' | 'canceling' | 'unknown';
426426
/**
427427
*/
428428
interface TaskData {
@@ -462,7 +462,7 @@ interface Task {
462462
*/
463463
type: TaskType;
464464
/**
465-
* Task state: `notScheduled`, `scheduling`, `scheduled`, `running`, `canceling`.
465+
* Task state: `notScheduled`, `scheduling`, `scheduled`, `running`, `canceling`, `unknown`.
466466
*/
467467
state: TaskState;
468468
/**
@@ -500,7 +500,7 @@ interface Task {
500500
* @type {Zone} The zone which will be used to invoke the `callback`. The Zone is captured
501501
* at the time of Task creation.
502502
*/
503-
zone: Zone;
503+
readonly zone: Zone;
504504
/**
505505
* Number of times the task has been executed, or -1 if canceled.
506506
*/

Diff for: dist/zone.min.js

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

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "zone.js",
3-
"version": "0.8.0",
3+
"version": "0.8.1",
44
"description": "Zones for JavaScript",
55
"main": "dist/zone-node.js",
66
"browser": "dist/zone.js",

0 commit comments

Comments
 (0)