-
Notifications
You must be signed in to change notification settings - Fork 66
build: update cross-repo angular dependencies to v22.0.0-next.8 #3608
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 |
|---|---|---|
|
|
@@ -11,20 +11,20 @@ | |
| "private": true, | ||
| "packageManager": "pnpm@10.33.0", | ||
| "dependencies": { | ||
| "@angular/animations": "22.0.0-next.7", | ||
| "@angular/common": "22.0.0-next.7", | ||
| "@angular/compiler": "22.0.0-next.7", | ||
| "@angular/core": "22.0.0-next.7", | ||
| "@angular/forms": "22.0.0-next.7", | ||
| "@angular/platform-browser": "22.0.0-next.7", | ||
| "@angular/router": "22.0.0-next.7", | ||
| "@angular/animations": "22.0.0-next.8", | ||
| "@angular/common": "22.0.0-next.8", | ||
| "@angular/compiler": "22.0.0-next.8", | ||
| "@angular/core": "22.0.0-next.8", | ||
| "@angular/forms": "22.0.0-next.8", | ||
| "@angular/platform-browser": "22.0.0-next.8", | ||
| "@angular/router": "22.0.0-next.8", | ||
| "rxjs": "~7.8.2", | ||
| "tslib": "^2.8.1" | ||
| }, | ||
| "devDependencies": { | ||
| "@angular/build": "22.0.0-next.5", | ||
| "@angular/cli": "22.0.0-next.5", | ||
| "@angular/compiler-cli": "22.0.0-next.7", | ||
| "@angular/compiler-cli": "22.0.0-next.8", | ||
|
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. The @angular/build and @angular/cli packages (lines 25-26) are currently at v22.0.0-next.5, which is inconsistent with the update of compiler-cli and framework packages to v22.0.0-next.8. It is recommended to keep the build tools in sync with the framework version during the 'next' release cycle to ensure compatibility with new compiler features and diagnostics. |
||
| "@types/jasmine": "~6.0.0", | ||
| "@types/node": "24.12.2", | ||
| "chromedriver": "^147.0.0", | ||
|
|
||
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
The update to Angular v22.0.0-next.8 for core packages appears incomplete as @angular/cdk and @angular/material (lines 4 and 10) are left at v22.0.0-next.4. These packages are typically released in sync with the framework. Mixing different 'next' versions can lead to compatibility issues or peer dependency warnings. Consider updating them to v22.0.0-next.8 to maintain consistency.