-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
chore(deps): update all non-major dependencies #9784
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 | ||||
|---|---|---|---|---|---|---|
|
|
@@ -9,20 +9,20 @@ | |||||
| }, | ||||||
| "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/common": "^20.3.9", | ||||||
| "@angular/compiler": "^20.3.9", | ||||||
| "@angular/core": "^20.3.9", | ||||||
| "@angular/platform-browser": "^20.3.9", | ||||||
| "@angular/router": "^20.3.9", | ||||||
| "@tanstack/angular-query-experimental": "^5.90.8", | ||||||
| "rxjs": "^7.8.2", | ||||||
| "tslib": "^2.8.1", | ||||||
| "zone.js": "0.15.0" | ||||||
| "zone.js": "0.15.1" | ||||||
|
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.15.1 incompatible with Angular 20.3.7. Angular 20.3.7 requires zone.js ~0.14.x per peer dependency constraints. Version 0.15.1 falls outside this range and will fail during npm install with peer dependency resolution errors. Apply this diff to fix: - "zone.js": "0.15.1"
+ "zone.js": "^0.14.2"📝 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.8", | ||||||
| "@angular/cli": "^20.3.8", | ||||||
| "@angular/compiler-cli": "^20.3.9", | ||||||
| "typescript": "5.8.3" | ||||||
| } | ||||||
| } | ||||||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🔴 CRITICAL: zone.js 0.15.1 incompatible with Angular 20.3.7.
Angular 20.3.7 requires zone.js ~0.14.x per peer dependency constraints. Version 0.15.1 (line 19) is incompatible and will fail
pnpm installwith peer dependency resolution errors.This issue has been flagged in prior reviews but remains unresolved across all Angular examples in this PR.
Apply this diff to fix:
Ensure the same correction is applied consistently to all Angular example package.json files in this PR.
Also applies to: 12-15
🤖 Prompt for AI Agents