Skip to content
Merged
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.8",
"@angular/cdk": "22.0.0-next.5",
"@angular/common": "22.0.0-next.8",
"@angular/compiler": "22.0.0-next.8",
"@angular/core": "22.0.0-next.8",
"@angular/animations": "22.0.0-next.9",
"@angular/cdk": "22.0.0-next.6",
"@angular/common": "22.0.0-next.9",
"@angular/compiler": "22.0.0-next.9",
"@angular/core": "22.0.0-next.9",
"@angular/fire": "21.0.0-rc.0",
"@angular/forms": "22.0.0-next.8",
"@angular/material": "22.0.0-next.5",
"@angular/platform-browser": "22.0.0-next.8",
"@angular/router": "22.0.0-next.8",
"@angular/forms": "22.0.0-next.9",
"@angular/material": "22.0.0-next.6",
"@angular/platform-browser": "22.0.0-next.9",
"@angular/router": "22.0.0-next.9",
"@octokit/rest": "",
"rxjs": "7.8.2",
"zone.js": "0.16.1"
Expand Down
16 changes: 8 additions & 8 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.0",
"dependencies": {
"@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",
"@angular/animations": "22.0.0-next.9",
"@angular/common": "22.0.0-next.9",
"@angular/compiler": "22.0.0-next.9",
"@angular/core": "22.0.0-next.9",
"@angular/forms": "22.0.0-next.9",
"@angular/platform-browser": "22.0.0-next.9",
"@angular/router": "22.0.0-next.9",
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

critical

This update to @angular/router@22.0.0-next.9 introduces a significant breaking change regarding route parameter inheritance.

The default value for paramsInheritanceStrategy has been changed from 'emptyOnly' to 'always'. This means that child routes will now inherit parameters from all parent routes by default, which could alter your application's routing behavior unexpectedly.

To maintain the previous behavior, you must explicitly configure the strategy in your router setup:

RouterModule.forRoot(routes, {
  paramsInheritanceStrategy: 'emptyOnly'
})

It is crucial to review all router module configurations across the application to prevent potential issues.

"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular/build": "22.0.0-next.6",
"@angular/cli": "22.0.0-next.6",
"@angular/compiler-cli": "22.0.0-next.8",
"@angular/compiler-cli": "22.0.0-next.9",
"@types/jasmine": "~6.0.0",
"@types/node": "24.12.2",
"chromedriver": "^147.0.0",
Expand Down
144 changes: 72 additions & 72 deletions bazel/integration/tests/angular-cli/pnpm-lock.yaml

Large diffs are not rendered by default.

10 changes: 5 additions & 5 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.0"
},
"dependencies": {
"@angular/compiler-cli": "22.0.0-next.8",
"@angular/compiler-cli": "22.0.0-next.9",
"typescript": "6.0.2"
},
"devDependencies": {
"@angular/build": "22.0.0-next.6",
"@angular/cli": "22.0.0-next.6",
"@angular/common": "22.0.0-next.8",
"@angular/compiler": "22.0.0-next.8",
"@angular/core": "22.0.0-next.8",
"@angular/platform-browser": "22.0.0-next.8",
"@angular/common": "22.0.0-next.9",
"@angular/compiler": "22.0.0-next.9",
"@angular/core": "22.0.0-next.9",
"@angular/platform-browser": "22.0.0-next.9",
"@babel/core": "^7.28.5",
"@bazel/bazelisk": "1.28.1",
"@rollup/plugin-commonjs": "^29.0.0",
Expand Down
84 changes: 42 additions & 42 deletions bazel/rules/rules_angular/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.8",
"@angular/core": "22.0.0-next.8",
"@angular/platform-browser": "22.0.0-next.8",
"@angular/compiler": "22.0.0-next.9",
"@angular/core": "22.0.0-next.9",
"@angular/platform-browser": "22.0.0-next.9",
"@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.8",
"@angular/compiler-cli": "22.0.0-next.9",
"typescript": "6.0.2"
},
"devDependencies": {
Expand Down
Loading
Loading