diff --git a/packages/zone.js/CHANGELOG.md b/packages/zone.js/CHANGELOG.md index 5a47e9655b..dbc9c9fbbc 100644 --- a/packages/zone.js/CHANGELOG.md +++ b/packages/zone.js/CHANGELOG.md @@ -1,3 +1,14 @@ + +# [0.10.1](https://github.com/angular/angular/compare/zone.js-0.10.0...zone.js-0.10.1) (2019-07-30) + + +### Bug Fixes + +* **zone.js:** don't rely on global node typings outside of node/ directory ([#31783](https://github.com/angular/angular/issues/31783)) ([5c9a896](https://github.com/angular/angular/commit/5c9a896)) +* **zone.js:** should expose some other internal intefaces ([#31866](https://github.com/angular/angular/issues/31866)) ([f5c605b](https://github.com/angular/angular/commit/f5c605b)) + + + # [0.10.0](https://github.com/angular/angular/compare/7b3bcc2...174770e) (2019-07-26) diff --git a/packages/zone.js/DEVELOPER.md b/packages/zone.js/DEVELOPER.md index e21b45ea90..253619605b 100644 --- a/packages/zone.js/DEVELOPER.md +++ b/packages/zone.js/DEVELOPER.md @@ -90,6 +90,7 @@ $ git tag $TAG - create a PR to update `changelog` of zone.js ``` +$ export PREVIOUS_ZONE_TAG= $ yarn gulp changelog:zonejs ``` diff --git a/tools/gulp-tasks/changelog-zonejs.js b/tools/gulp-tasks/changelog-zonejs.js index 7799f65ba1..8a8d7e1174 100644 --- a/tools/gulp-tasks/changelog-zonejs.js +++ b/tools/gulp-tasks/changelog-zonejs.js @@ -7,17 +7,16 @@ */ module.exports = (gulp) => () => { - const tag = process.env.ZONE_TAG; + const tag = process.env.TAG; + const ptag = process.env.PREVIOUS_ZONE_TAG; const conventionalChangelog = require('gulp-conventional-changelog'); return gulp.src('packages/zone.js/CHANGELOG.md') - .pipe(conventionalChangelog( - {preset: 'angular'}, { - currentTag: tag, - }, - { - // Ignore commits that have a different scope than `zone.js`. - extendedRegexp: true, - grep: '^[^(]+\\(zone\\.js\\)', - })) + .pipe(conventionalChangelog({preset: 'angular'}, {}, { + // Ignore commits that have a different scope than `zone.js`. + extendedRegexp: true, + grep: '^[^(]+\\(zone\\.js\\)', + from: ptag, + to: tag, + })) .pipe(gulp.dest('./packages/zone.js/')); };