Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions apps/code-of-conduct/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"dependencies": {
"@angular/animations": "22.0.0-next.12",
"@angular/cdk": "22.0.0-next.8",
"@angular/common": "22.0.0-next.12",
"@angular/compiler": "22.0.0-next.12",
"@angular/core": "22.0.0-next.12",
"@angular/animations": "22.0.0-rc.0",
"@angular/cdk": "22.0.0-rc.0",
"@angular/common": "22.0.0-rc.0",
"@angular/compiler": "22.0.0-rc.0",
"@angular/core": "22.0.0-rc.0",
"@angular/fire": "21.0.0-rc.0",
"@angular/forms": "22.0.0-next.12",
"@angular/material": "22.0.0-next.8",
"@angular/platform-browser": "22.0.0-next.12",
"@angular/router": "22.0.0-next.12",
"@angular/forms": "22.0.0-rc.0",
"@angular/material": "22.0.0-rc.0",
"@angular/platform-browser": "22.0.0-rc.0",
"@angular/router": "22.0.0-rc.0",
"@octokit/rest": "",
"rxjs": "7.8.2",
"zone.js": "0.16.2"
Expand Down
20 changes: 10 additions & 10 deletions bazel/integration/tests/angular-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,20 @@
"private": true,
"packageManager": "pnpm@10.33.4",
"dependencies": {
"@angular/animations": "22.0.0-next.12",
"@angular/common": "22.0.0-next.12",
"@angular/compiler": "22.0.0-next.12",
"@angular/core": "22.0.0-next.12",
"@angular/forms": "22.0.0-next.12",
"@angular/platform-browser": "22.0.0-next.12",
"@angular/router": "22.0.0-next.12",
"@angular/animations": "22.0.0-rc.0",
"@angular/common": "22.0.0-rc.0",
"@angular/compiler": "22.0.0-rc.0",
"@angular/core": "22.0.0-rc.0",
"@angular/forms": "22.0.0-rc.0",
"@angular/platform-browser": "22.0.0-rc.0",
"@angular/router": "22.0.0-rc.0",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular/build": "22.0.0-next.8",
"@angular/cli": "22.0.0-next.8",
"@angular/compiler-cli": "22.0.0-next.12",
"@angular/build": "22.0.0-rc.0",
"@angular/cli": "22.0.0-rc.0",
Comment on lines +25 to +26
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Updating @angular/build and @angular/cli to 22.0.0-rc.0 while leaving other Angular dependencies (such as @angular/compiler-cli on line 27) at 22.0.0-next.12 creates a version mismatch. In the Angular ecosystem, it is highly recommended to keep all @angular/* packages synchronized to the same version to ensure compatibility and avoid unexpected build or runtime behavior, especially when moving from a 'next' to an 'rc' release.

"@angular/compiler-cli": "22.0.0-rc.0",
"@types/jasmine": "~6.0.0",
"@types/node": "24.12.2",
"chromedriver": "^148.0.0",
Expand Down
14 changes: 7 additions & 7 deletions bazel/rules/rules_angular/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@
"pnpm": "10.33.4"
},
"dependencies": {
"@angular/compiler-cli": "22.0.0-next.12",
"@angular/compiler-cli": "22.0.0-rc.0",
"typescript": "6.0.3"
},
"devDependencies": {
"@angular/build": "22.0.0-next.8",
"@angular/cli": "22.0.0-next.8",
"@angular/common": "22.0.0-next.12",
"@angular/compiler": "22.0.0-next.12",
"@angular/core": "22.0.0-next.12",
"@angular/platform-browser": "22.0.0-next.12",
"@angular/build": "22.0.0-rc.0",
"@angular/cli": "22.0.0-rc.0",
Comment on lines +32 to +33
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The update to 22.0.0-rc.0 for @angular/build and @angular/cli introduces an inconsistency with other Angular packages in this file (e.g., @angular/common, @angular/core, and @angular/compiler-cli) which remain at 22.0.0-next.12. To maintain stability and ensure that the build rules are tested against compatible versions of the framework, all Angular dependencies should be updated to the same release candidate version.

"@angular/common": "22.0.0-rc.0",
"@angular/compiler": "22.0.0-rc.0",
"@angular/core": "22.0.0-rc.0",
"@angular/platform-browser": "22.0.0-rc.0",
"@babel/core": "^7.28.5",
"@bazel/bazelisk": "1.28.1",
"@rollup/plugin-commonjs": "^29.0.0",
Expand Down
6 changes: 3 additions & 3 deletions bazel/spec-bundling/test/package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"dependencies": {
"@angular/compiler": "22.0.0-next.12",
"@angular/core": "22.0.0-next.12",
"@angular/platform-browser": "22.0.0-next.12",
"@angular/compiler": "22.0.0-rc.0",
"@angular/core": "22.0.0-rc.0",
"@angular/platform-browser": "22.0.0-rc.0",
"@types/jasmine": "6.0.0",
"@types/jsdom": "28.0.1",
"@types/node": "24.12.2",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
}
},
"dependencies": {
"@angular/compiler-cli": "22.0.0-next.12",
"@angular/compiler-cli": "22.0.0-rc.0",
"typescript": "6.0.3"
},
"devDependencies": {
Expand Down
Loading
Loading