Skip to content

Commit

Permalink
chore: release v0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mhevery committed Mar 13, 2017
1 parent ef39a44 commit 2a7dd7b
Show file tree
Hide file tree
Showing 7 changed files with 994 additions and 165 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.8.1"></a>
## [0.8.1](https://github.com/angular/zone.js/compare/v0.8.0...0.8.1) (2017-03-13)


### Bug Fixes

* **example:** Update counting.html ([#648](https://github.com/angular/zone.js/issues/648)) ([a63ae5f](https://github.com/angular/zone.js/commit/a63ae5f))
* **XHR:** fix [#671](https://github.com/angular/zone.js/issues/671), patch XMLHttpRequestEventTarget prototype ([300dc36](https://github.com/angular/zone.js/commit/300dc36))


### Features

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



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

Expand Down
378 changes: 325 additions & 53 deletions dist/zone-mix.js

Large diffs are not rendered by default.

373 changes: 320 additions & 53 deletions dist/zone-node.js

Large diffs are not rendered by default.

378 changes: 325 additions & 53 deletions dist/zone.js

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions dist/zone.js.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -420,9 +420,9 @@ declare type HasTaskState = {
*/
declare type TaskType = 'microTask' | 'macroTask' | 'eventTask';
/**
* Task type: `notScheduled`, `scheduling`, `scheduled`, `running`, `canceling`.
* Task type: `notScheduled`, `scheduling`, `scheduled`, `running`, `canceling`, 'unknown'.
*/
declare type TaskState = 'notScheduled' | 'scheduling' | 'scheduled' | 'running' | 'canceling';
declare type TaskState = 'notScheduled' | 'scheduling' | 'scheduled' | 'running' | 'canceling' | 'unknown';
/**
*/
interface TaskData {
Expand Down Expand Up @@ -462,7 +462,7 @@ interface Task {
*/
type: TaskType;
/**
* Task state: `notScheduled`, `scheduling`, `scheduled`, `running`, `canceling`.
* Task state: `notScheduled`, `scheduling`, `scheduled`, `running`, `canceling`, `unknown`.
*/
state: TaskState;
/**
Expand Down Expand Up @@ -500,7 +500,7 @@ interface Task {
* @type {Zone} The zone which will be used to invoke the `callback`. The Zone is captured
* at the time of Task creation.
*/
zone: Zone;
readonly zone: Zone;
/**
* Number of times the task has been executed, or -1 if canceled.
*/
Expand Down
3 changes: 2 additions & 1 deletion dist/zone.min.js

Large diffs are not rendered by default.

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.0",
"version": "0.8.1",
"description": "Zones for JavaScript",
"main": "dist/zone-node.js",
"browser": "dist/zone.js",
Expand Down

0 comments on commit 2a7dd7b

Please sign in to comment.