-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
chore(deps): update all non-major dependencies #9881
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -10,19 +10,19 @@ | |||||
| "private": true, | ||||||
| "dependencies": { | ||||||
| "@angular/common": "^20.0.0", | ||||||
| "@angular/compiler": "^20.0.0", | ||||||
| "@angular/core": "^20.0.0", | ||||||
| "@angular/forms": "^20.0.0", | ||||||
| "@angular/platform-browser": "^20.0.0", | ||||||
| "@angular/compiler": "^20.3.14", | ||||||
| "@angular/core": "^20.3.14", | ||||||
| "@angular/forms": "^20.3.14", | ||||||
| "@angular/platform-browser": "^20.3.14", | ||||||
| "@tanstack/angular-query-experimental": "^5.90.15", | ||||||
| "rxjs": "^7.8.2", | ||||||
| "tslib": "^2.8.1", | ||||||
| "zone.js": "0.15.0" | ||||||
| "zone.js": "0.16.0" | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Revert zone.js to 0.15.0 — incompatible with Angular 20.3.14. Line 20 updates zone.js from 0.15.0 to 0.16.0, but earlier reviews of this PR established that Angular 20.3.x (including 20.3.14) requires zone.js ~0.15.x. Zone.js 0.16.0 is not officially supported by Angular 20 and causes installation/build failures. This is the same critical issue flagged for examples/angular/basic-persister and examples/angular/devtools-panel in this PR — it appears to be a systematic problem across all Angular examples receiving this dependency update. Apply this fix: - "zone.js": "0.16.0"
+ "zone.js": "0.15.0"📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| }, | ||||||
| "devDependencies": { | ||||||
| "@angular/build": "^20.0.0", | ||||||
| "@angular/cli": "^20.0.0", | ||||||
| "@angular/compiler-cli": "^20.0.0", | ||||||
| "@angular/build": "^20.3.12", | ||||||
| "@angular/cli": "^20.3.12", | ||||||
| "@angular/compiler-cli": "^20.3.14", | ||||||
| "typescript": "5.8.3" | ||||||
| } | ||||||
| } | ||||||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -10,18 +10,18 @@ | |||||
| }, | ||||||
| "dependencies": { | ||||||
| "@angular/common": "^20.0.0", | ||||||
| "@angular/compiler": "^20.0.0", | ||||||
| "@angular/core": "^20.0.0", | ||||||
| "@angular/platform-browser": "^20.0.0", | ||||||
| "@angular/compiler": "^20.3.14", | ||||||
| "@angular/core": "^20.3.14", | ||||||
| "@angular/platform-browser": "^20.3.14", | ||||||
| "@tanstack/angular-query-experimental": "^5.90.15", | ||||||
| "rxjs": "^7.8.2", | ||||||
| "tslib": "^2.8.1", | ||||||
| "zone.js": "0.15.0" | ||||||
| "zone.js": "0.16.0" | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Revert zone.js to 0.15.0 — incompatible with Angular 20.3.13 (same issue across all Angular examples). Zone.js 0.16.0 is incompatible with Angular 20.3.13 and will break change detection. This same critical issue appears in other Angular examples in this PR (basic-persister, router). Revert to 0.15.0. - "zone.js": "0.16.0"
+ "zone.js": "0.15.0"📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| }, | ||||||
| "devDependencies": { | ||||||
| "@angular/build": "^20.0.0", | ||||||
| "@angular/cli": "^20.0.0", | ||||||
| "@angular/compiler-cli": "^20.0.0", | ||||||
| "@angular/build": "^20.3.12", | ||||||
| "@angular/cli": "^20.3.12", | ||||||
| "@angular/compiler-cli": "^20.3.14", | ||||||
| "typescript": "5.8.3" | ||||||
| } | ||||||
| } | ||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,19 +10,19 @@ | |
| "private": true, | ||
| "dependencies": { | ||
| "@angular/common": "^20.0.0", | ||
| "@angular/compiler": "^20.0.0", | ||
| "@angular/core": "^20.0.0", | ||
| "@angular/platform-browser": "^20.0.0", | ||
| "@angular/router": "^20.0.0", | ||
| "@angular/compiler": "^20.3.14", | ||
| "@angular/core": "^20.3.14", | ||
| "@angular/platform-browser": "^20.3.14", | ||
| "@angular/router": "^20.3.14", | ||
| "@tanstack/angular-query-experimental": "^5.90.15", | ||
| "rxjs": "^7.8.2", | ||
| "tslib": "^2.8.1", | ||
| "zone.js": "0.15.0" | ||
| "zone.js": "0.16.0" | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. CRITICAL: zone.js 0.16.0 incompatibility with Angular 20.3.13 (flagged in previous review). This file was previously reviewed and flagged for incompatibility between zone.js 0.16.0 and Angular 20.3.13. The issue remains unresolved. Angular 20.3.13 requires zone.js 0.15.x; upgrading to 0.16.0 will break Angular's change detection and cause runtime/test failures. Revert to zone.js 0.15.x. - "zone.js": "0.16.0"
+ "zone.js": "~0.15.0"Also applies to: 20-20 🤖 Prompt for AI Agents |
||
| }, | ||
| "devDependencies": { | ||
| "@angular/build": "^20.0.0", | ||
| "@angular/cli": "^20.0.0", | ||
| "@angular/compiler-cli": "^20.0.0", | ||
| "@angular/build": "^20.3.12", | ||
| "@angular/cli": "^20.3.12", | ||
| "@angular/compiler-cli": "^20.3.14", | ||
| "typescript": "5.8.3" | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -10,18 +10,18 @@ | |||||
| "private": true, | ||||||
| "dependencies": { | ||||||
| "@angular/common": "^20.0.0", | ||||||
| "@angular/compiler": "^20.0.0", | ||||||
| "@angular/core": "^20.0.0", | ||||||
| "@angular/platform-browser": "^20.0.0", | ||||||
| "@angular/compiler": "^20.3.14", | ||||||
| "@angular/core": "^20.3.14", | ||||||
| "@angular/platform-browser": "^20.3.14", | ||||||
| "@tanstack/angular-query-experimental": "^5.90.15", | ||||||
| "rxjs": "^7.8.2", | ||||||
| "tslib": "^2.8.1", | ||||||
| "zone.js": "0.15.0" | ||||||
| "zone.js": "0.16.0" | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Align zone.js version specifier to allow patch updates. zone.js is pinned to exact version Apply this diff: - "zone.js": "0.16.0"
+ "zone.js": "~0.16.0"📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||
| }, | ||||||
| "devDependencies": { | ||||||
| "@angular/build": "^20.0.0", | ||||||
| "@angular/cli": "^20.0.0", | ||||||
| "@angular/compiler-cli": "^20.0.0", | ||||||
| "@angular/build": "^20.3.12", | ||||||
| "@angular/cli": "^20.3.12", | ||||||
| "@angular/compiler-cli": "^20.3.14", | ||||||
| "typescript": "5.8.3" | ||||||
| } | ||||||
| } | ||||||
Uh oh!
There was an error while loading. Please reload this page.