-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Revert "chore(deps): update all non-major dependencies" #9715
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
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 @@ | |
"watch": "ng build --watch --configuration development" | ||
}, | ||
"dependencies": { | ||
"@angular/common": "^20.3.2", | ||
"@angular/compiler": "^20.3.2", | ||
"@angular/core": "^20.3.2", | ||
"@angular/forms": "^20.3.2", | ||
"@angular/platform-browser": "^20.3.2", | ||
"@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", | ||
"@tanstack/angular-query-experimental": "^5.90.2", | ||
"rxjs": "^7.8.2", | ||
"tslib": "^2.8.1", | ||
"zone.js": "0.15.1" | ||
"zone.js": "0.15.0" | ||
}, | ||
Comment on lines
+12
to
21
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 is incomplete—the Angular stack is still on the upgraded versions. This PR is supposed to undo #9712, but 🤖 Prompt for AI Agents
|
||
"devDependencies": { | ||
"@angular/build": "^20.3.3", | ||
"@angular/cli": "^20.3.3", | ||
"@angular/compiler-cli": "^20.3.2", | ||
"@angular/build": "^20.0.0", | ||
"@angular/cli": "^20.0.0", | ||
"@angular/compiler-cli": "^20.0.0", | ||
"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.
Keep
zone.js
at 0.15.1 to avoid regressing critical fixes.Dropping back to
0.15.0
re-introduces multiple bugs that Angular 20 depends on being fixed—most notably the leak where theabort
listener sticks around after a fetch settles and the incorrect detection of promise-like objects. Those fixes shipped in0.15.1
, so we should keep at least that patch level even while reverting the other dependencies.(app.unpkg.com)📝 Committable suggestion
🤖 Prompt for AI Agents