mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
committed by
Dylan Hunn
parent
cb3128d925
commit
d1d4adcba2
@@ -1,3 +1,20 @@
|
||||
# [0.15.0](https://github.com/angular/angular/compare/zone.js-0.14.10...zone.js-0.15.0) (2024-08-15)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **zone.js:** Add support for addition jest functions. ([#57280](https://github.com/angular/angular/issues/57280)) ([e1240c6](https://github.com/angular/angular/commit/e1240c6f5d9a3d68ccef7ffbf0a0646ad1164cd8)), closes [#57277](https://github.com/angular/angular/issues/57277)
|
||||
* **zone.js:** Update the default behavior of fakeAsync to flush after the test ([#57240](https://github.com/angular/angular/issues/57240)) ([70e8b40](https://github.com/angular/angular/commit/70e8b40750e894bc1439713cd508d8bd9fafb7a4))
|
||||
|
||||
|
||||
### BREAKING CHANGES
|
||||
|
||||
* **zone.js:** `fakeAsync` will now flush pending timers at the end of
|
||||
the given function by default. To opt-out of this, you can use `{flush:
|
||||
false}` in options parameter of `fakeAsync`
|
||||
|
||||
|
||||
|
||||
## [0.14.10](https://github.com/angular/angular/compare/zone.js-0.14.8...zone.js-0.14.10) (2024-08-05)
|
||||
|
||||
|
||||
|
||||
@@ -78,7 +78,7 @@ Releasing `zone.js` is a two step process.
|
||||
|
||||
```
|
||||
rm -rf node_modules && yarn install
|
||||
export PREVIOUS_ZONE_TAG=`git tag -l 'zone.js-0.14.*' | tail -n1`
|
||||
export PREVIOUS_ZONE_TAG=`git tag -l 'zone.js-0.15.*' | tail -n1`
|
||||
export VERSION=`(cd packages/zone.js; npm version patch --no-git-tag-version)`
|
||||
export VERSION=${VERSION#v}
|
||||
export TAG="zone.js-${VERSION}"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "zone.js",
|
||||
"version": "0.14.10",
|
||||
"version": "0.15.0",
|
||||
"description": "Zones for JavaScript",
|
||||
"main": "./bundles/zone.umd.js",
|
||||
"module": "./fesm2015/zone.js",
|
||||
|
||||
Reference in New Issue
Block a user