Ipetrov/bump angular version 22.1 new - #17487
Open
ivanvpetrov wants to merge 3 commits into
Open
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the repo’s Angular toolchain dependencies to Angular 22.1.x as part of routine framework version maintenance.
Changes:
- Bumped
@angular/*runtime dependencies from^22.0.0to^22.1.x. - Bumped Angular build/CLI and Angular ESLint-related dev dependencies to
^22.1.x.
Suppressed comments (1)
package.json:106
- In devDependencies, the Angular toolchain is also split across patch versions (CLI/build/schematics at ^22.1.3, but compiler-cli/language-service at ^22.1.0). It’s safer to keep these aligned to the same patch to avoid peer/compat warnings during builds.
"@angular/build": "^22.1.3",
"@angular/cli": "^22.1.3",
"@angular/compiler-cli": "^22.1.0",
"@angular/language-service": "^22.1.0",
| @@ -64,17 +64,17 @@ | |||
| }, | |||
| "private": true, | |||
| "dependencies": { | |||
Comment on lines
+67
to
+77
| "@angular/animations": "^22.1.0", | ||
| "@angular/common": "^22.1.0", | ||
| "@angular/compiler": "^22.1.0", | ||
| "@angular/core": "^22.1.0", | ||
| "@angular/elements": "^22.1.0", | ||
| "@angular/forms": "^22.1.0", | ||
| "@angular/platform-browser": "^22.1.0", | ||
| "@angular/platform-browser-dynamic": "^22.1.0", | ||
| "@angular/platform-server": "^22.1.0", | ||
| "@angular/router": "^22.1.0", | ||
| "@angular/ssr": "^22.1.3", |
Contributor
There was a problem hiding this comment.
Pull request overview
Copilot reviewed 1 out of 2 changed files in this pull request and generated no new comments.
Suppressed comments (3)
package.json:77
- The Angular package versions are inconsistent within the same dependency block (most are ^22.1.0 while
@angular/ssris ^22.1.3). Since this repo already requires 22.1.3, consider aligning all @angular/* dependencies to the same patch baseline to avoid accidental mixed installs (especially with legacy peer-deps) and to make the minimum supported patch explicit.
"@angular/platform-browser": "^22.1.0",
"@angular/platform-browser-dynamic": "^22.1.0",
"@angular/platform-server": "^22.1.0",
"@angular/router": "^22.1.0",
"@angular/ssr": "^22.1.3",
package.json:177
- The overrides for igniteui-angular-* force Angular packages to ^22.1.0, while other Angular tooling in this file already targets ^22.1.3. Consider aligning these overrides to the same patch baseline so nested dependency resolution doesn’t unexpectedly pull an older patch than the workspace tooling.
"@angular/core": "^22.1.0",
"@angular/common": "^22.1.0",
"@angular/compiler": "^22.1.0"
package.json:106
- In devDependencies,
@angular/cliand@angular/buildare set to ^22.1.3 while compiler-cli and language-service remain at ^22.1.0. It’s safer/clearer to keep all Angular tooling packages on the same patch baseline to prevent peer-dependency drift.
This issue also appears on line 175 of the same file.
"@angular/build": "^22.1.3",
"@angular/cli": "^22.1.3",
"@angular/compiler-cli": "^22.1.0",
"@angular/language-service": "^22.1.0",
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Bump angular version from 22.0 to 22.1
ng update @angular/cli
ng update @angular/core
ng update @angular-eslint/schematics
Motivation / Context
Type of Change (check all that apply):
Component(s) / Area(s) Affected:
How Has This Been Tested?
Test Configuration:
Screenshots / Recordings
Checklist:
feature/README.MDupdates for the feature docsREADME.MDCHANGELOG.MDupdates for newly added functionalityng updatemigrations for the breaking changes (migrations guidelines)