Skip to content

Update dependency zone.js to ~0.16.0#217

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/angular-monorepo
Open

Update dependency zone.js to ~0.16.0#217
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/angular-monorepo

Conversation

@renovate
Copy link
Copy Markdown

@renovate renovate Bot commented Dec 11, 2023

This PR contains the following updates:

Package Change Age Confidence
zone.js (source, changelog) ~0.11.8~0.16.0 age confidence

Release Notes

angular/angular (zone.js)

v0.16.1

Compare Source

v0.16.0

Compare Source

v0.15.1

Compare Source

v0.15.0

Compare Source

v0.14.10

Compare Source

v0.14.8

Compare Source

v0.14.7

Compare Source

v0.14.6

Compare Source

v0.14.5

Compare Source

v0.14.4

Compare Source

v0.14.3

Compare Source

v0.14.2

Compare Source

v0.14.1

Compare Source

v0.14.0

Compare Source

Bug Fixes
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 (2024-08-05)

Features
  • zone.js: Add 'flush' parameter option to fakeAsync to flush after the test (#​57137) (99d679d)

0.14.8 (2024-07-17)

Bug Fixes

0.14.7 (2024-06-06)

Bug Fixes

0.14.6 (2024-05-16)

Bug Fixes

0.14.5 (2024-04-30)

Bug Fixes

0.14.4 (2024-02-13)

Bug Fixes

0.14.3 (2023-12-19)

Bug Fixes
Features

0.14.2 (2023-11-03)

Bug Fixes
  • zone.js: disable wrapping unhandled promise error by default (6d7eb35)

14.0.1 (2023-10-25)

Bug Fixes

v0.13.3

Compare Source

Features
BREAKING CHANGES
  • zone.js: Deep and legacy dist/ imports like zone.js/bundles/zone-testing.js and zone.js/dist/zone are no longer allowed. zone-testing-bundle and zone-testing-node-bundle are also no longer part of the package.

The proper way to import zone.js and zone.js/testing is:

import 'zone.js';
import 'zone.js/testing';

0.13.3 (2023-09-12)

Bug Fixes

0.13.2 (2023-09-07)

Bug Fixes

v0.13.1 (2023-06-09)

Bug Fixes
Features
Reverts

v0.13.2

Compare Source

Features
BREAKING CHANGES
  • zone.js: Deep and legacy dist/ imports like zone.js/bundles/zone-testing.js and zone.js/dist/zone are no longer allowed. zone-testing-bundle and zone-testing-node-bundle are also no longer part of the package.

The proper way to import zone.js and zone.js/testing is:

import 'zone.js';
import 'zone.js/testing';

0.13.3 (2023-09-12)

Bug Fixes

0.13.2 (2023-09-07)

Bug Fixes

v0.13.1 (2023-06-09)

Bug Fixes
Features
Reverts

v0.13.1

Compare Source

Features
BREAKING CHANGES
  • zone.js: Deep and legacy dist/ imports like zone.js/bundles/zone-testing.js and zone.js/dist/zone are no longer allowed. zone-testing-bundle and zone-testing-node-bundle are also no longer part of the package.

The proper way to import zone.js and zone.js/testing is:

import 'zone.js';
import 'zone.js/testing';

0.13.3 (2023-09-12)

Bug Fixes

0.13.2 (2023-09-07)

Bug Fixes

v0.13.1 (2023-06-09)

Bug Fixes
Features
Reverts

v0.13.0

Compare Source

Features
BREAKING CHANGES
  • zone.js: Deep and legacy dist/ imports like zone.js/bundles/zone-testing.js and zone.js/dist/zone are no longer allowed. zone-testing-bundle and zone-testing-node-bundle are also no longer part of the package.

The proper way to import zone.js and zone.js/testing is:

import 'zone.js';
import 'zone.js/testing';

0.13.3 (2023-09-12)

Bug Fixes

0.13.2 (2023-09-07)

Bug Fixes

v0.13.1 (2023-06-09)

Bug Fixes
Features
Reverts

v0.12.0

Compare Source

Bug Fixes

0.11.8 (2022-08-08)

Features
  • zone.js: Update to the simpler Async Stack Tagging v2 API (#​46958) (f23232f)

0.11.7 (2022-07-20)

Bug Fixes
  • zone.js: do not invoke jasmine done callback multiple times with waitForAsync (4e77c7fbf38)
Features
  • zone.js: add AsyncStackTaggingZoneSpec implementation (#​46693) (848a009)
  • zone.js: include jasmine describe block name when raising unexpected task error (de86285)
  • zone.js: include zone name when sync-test zone reports tasks (72c2567)

0.11.6 (2022-06-02)

Bug Fixes
BREAKING CHANGES
  • zone.js: in TaskTrackingZoneSpec track a periodic task until it is cancelled

The breaking change is scoped only to the plugin
zone.js/plugins/task-tracking. If you used TaskTrackingZoneSpec and
checked the pending macroTasks e.g. using (this.ngZone as any)._inner ._parent._properties.TaskTrackingZone.getTasksFor('macroTask'), then
its behavior slightly changed for periodic macrotasks. For example,
previously the setInterval macrotask was no longer tracked after its
callback was executed for the first time. Now it's tracked until
the task is explicitly cancelled, e.g with clearInterval(id).

0.11.5 (2022-03-03)

Bug Fixes
Features

0.11.4 (2021-02-10)

Bug Fixes
Features

0.11.3 (2020-10-27)

Bug Fixes

0.11.2 (2020-09-19)

Bug Fixes
Features
Refactor
  • zone.js: refactor(zone.js): rename several internal apis in fake async zone spec (#​39127) (8a68669)
Build
  • zone.js: build(zone.js): zone.js should output esm format for fesm2015 bundles (#​39203) (822b838)
BREAKING CHANGES
  • zone.js: ZoneJS no longer swallows errors produced by Object.defineProperty calls.

Prior to this change, ZoneJS monkey patched Object.defineProperty and if there is an error
(such as the property is not configurable or not writable) the patched logic swallowed it
and only console.log was produced. This behavior used to hide real errors,
so the logic is now updated to trigger original errors (if any). One exception
where the patch remains in place is document.registerElement
(to allow smooth transition for code/polyfills that rely on old behavior in legacy browsers).
If your code relies on the old behavior (where errors were not thrown before),
you may need to update the logic to handle the errors that are no longer masked by ZoneJS patch.

0.11.1 (2020-08-19)

Bug Fixes

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
Copy link
Copy Markdown
Author

renovate Bot commented Dec 11, 2023

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: frontend/package-lock.json
npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR! 
npm ERR! While resolving: @agm/core@3.0.0-beta.0
npm ERR! Found: @angular/common@15.2.10
npm ERR! node_modules/@angular/common
npm ERR!   @angular/common@"^15.2.10" from the root project
npm ERR!   peer @angular/common@"^15.0.0 || ^16.0.0" from @angular/cdk@15.2.9
npm ERR!   node_modules/@angular/cdk
npm ERR!     @angular/cdk@"^15.2.9" from the root project
npm ERR!     peer @angular/cdk@"15.2.9" from @angular/material@15.2.9
npm ERR!     node_modules/@angular/material
npm ERR!       @angular/material@"^15.2.9" from the root project
npm ERR!       1 more (ngx-ui-tour-md-menu)
npm ERR!     1 more (ngx-ui-tour-md-menu)
npm ERR!   17 more (@angular/forms, @angular/material, ...)
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer @angular/common@"^9.1.0 || ^10.0.0" from @agm/core@3.0.0-beta.0
npm ERR! node_modules/@agm/core
npm ERR!   @agm/core@"^3.0.0-beta.0" from the root project
npm ERR!   peer @agm/core@"3.0.0-beta.0" from @agm/snazzy-info-window@3.0.0-beta.0
npm ERR!   node_modules/@agm/snazzy-info-window
npm ERR!     @agm/snazzy-info-window@"^3.0.0-beta.0" from the root project
npm ERR! 
npm ERR! Conflicting peer dependency: @angular/common@10.2.5
npm ERR! node_modules/@angular/common
npm ERR!   peer @angular/common@"^9.1.0 || ^10.0.0" from @agm/core@3.0.0-beta.0
npm ERR!   node_modules/@agm/core
npm ERR!     @agm/core@"^3.0.0-beta.0" from the root project
npm ERR!     peer @agm/core@"3.0.0-beta.0" from @agm/snazzy-info-window@3.0.0-beta.0
npm ERR!     node_modules/@agm/snazzy-info-window
npm ERR!       @agm/snazzy-info-window@"^3.0.0-beta.0" from the root project
npm ERR! 
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR! 
npm ERR! 
npm ERR! For a full report see:
npm ERR! /tmp/renovate/cache/others/npm/_logs/2023-12-11T17_05_58_446Z-eresolve-report.txt

npm ERR! A complete log of this run can be found in: /tmp/renovate/cache/others/npm/_logs/2023-12-11T17_05_58_446Z-debug-0.log

@renovate renovate Bot force-pushed the renovate/angular-monorepo branch from bc7abef to 0d238f5 Compare August 21, 2024 21:13
@renovate
Copy link
Copy Markdown
Author

renovate Bot commented Aug 21, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: frontend/package-lock.json
npm error code ERESOLVE
npm error ERESOLVE could not resolve
npm error
npm error While resolving: @agm/core@3.0.0-beta.0
npm error Found: @angular/common@15.2.10
npm error node_modules/@angular/common
npm error   @angular/common@"^15.2.10" from the root project
npm error   peer @angular/common@"^15.0.0 || ^16.0.0" from @angular/cdk@15.2.9
npm error   node_modules/@angular/cdk
npm error     @angular/cdk@"^15.2.9" from the root project
npm error     peer @angular/cdk@"15.2.9" from @angular/material@15.2.9
npm error     node_modules/@angular/material
npm error       @angular/material@"^15.2.9" from the root project
npm error       1 more (ngx-ui-tour-md-menu)
npm error     1 more (ngx-ui-tour-md-menu)
npm error   17 more (@angular/forms, @angular/material, ...)
npm error
npm error Could not resolve dependency:
npm error peer @angular/common@"^9.1.0 || ^10.0.0" from @agm/core@3.0.0-beta.0
npm error node_modules/@agm/core
npm error   @agm/core@"^3.0.0-beta.0" from the root project
npm error   peer @agm/core@"3.0.0-beta.0" from @agm/snazzy-info-window@3.0.0-beta.0
npm error   node_modules/@agm/snazzy-info-window
npm error     @agm/snazzy-info-window@"^3.0.0-beta.0" from the root project
npm error
npm error Conflicting peer dependency: @angular/common@10.2.5
npm error node_modules/@angular/common
npm error   peer @angular/common@"^9.1.0 || ^10.0.0" from @agm/core@3.0.0-beta.0
npm error   node_modules/@agm/core
npm error     @agm/core@"^3.0.0-beta.0" from the root project
npm error     peer @agm/core@"3.0.0-beta.0" from @agm/snazzy-info-window@3.0.0-beta.0
npm error     node_modules/@agm/snazzy-info-window
npm error       @agm/snazzy-info-window@"^3.0.0-beta.0" from the root project
npm error
npm error Fix the upstream dependency conflict, or retry
npm error this command with --force or --legacy-peer-deps
npm error to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /runner/cache/others/npm/_logs/2026-04-29T11_34_45_975Z-eresolve-report.txt
npm error A complete log of this run can be found in: /runner/cache/others/npm/_logs/2026-04-29T11_34_45_975Z-debug-0.log

@renovate renovate Bot changed the title fix(deps): update dependency zone.js to ~0.14.0 fix(deps): update dependency zone.js to ~0.15.0 Aug 21, 2024
@renovate renovate Bot changed the title fix(deps): update dependency zone.js to ~0.15.0 Update dependency zone.js to ~0.15.0 Dec 31, 2024
@renovate renovate Bot force-pushed the renovate/angular-monorepo branch from 0d238f5 to 73cefba Compare August 10, 2025 14:38
@renovate renovate Bot force-pushed the renovate/angular-monorepo branch from 73cefba to 3839165 Compare November 20, 2025 01:34
@renovate renovate Bot changed the title Update dependency zone.js to ~0.15.0 Update dependency zone.js to ~0.16.0 Nov 20, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants