Skip to content

Comments

build: update cross-repo angular dependencies (main)#32794

Merged
crisbeto merged 1 commit intoangular:mainfrom
angular-robot:ng-renovate/main-cross-repo-angular-dependencies
Feb 19, 2026
Merged

build: update cross-repo angular dependencies (main)#32794
crisbeto merged 1 commit intoangular:mainfrom
angular-robot:ng-renovate/main-cross-repo-angular-dependencies

Conversation

@angular-robot
Copy link
Contributor

@angular-robot angular-robot commented Feb 18, 2026

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@angular-devkit/build-angular 21.2.0-next.221.2.0-rc.0 age adoption passing confidence pnpm.catalog.default patch
@angular-devkit/core 21.2.0-next.221.2.0-rc.0 age adoption passing confidence pnpm.catalog.default patch
@angular-devkit/schematics 21.2.0-next.221.2.0-rc.0 age adoption passing confidence pnpm.catalog.default patch
@angular/build 21.2.0-next.221.2.0-rc.0 age adoption passing confidence pnpm.catalog.default patch
@angular/cli 21.2.0-next.221.2.0-rc.0 age adoption passing confidence pnpm.catalog.default patch
@angular/common (source) 21.2.0-next.321.2.0-rc.0 age adoption passing confidence pnpm.catalog.default patch
@angular/compiler (source) 21.2.0-next.321.2.0-rc.0 age adoption passing confidence pnpm.catalog.default patch
@angular/compiler-cli (source) 21.2.0-next.321.2.0-rc.0 age adoption passing confidence pnpm.catalog.default patch
@angular/core (source) 21.2.0-next.321.2.0-rc.0 age adoption passing confidence pnpm.catalog.default patch
@angular/forms (source) 21.2.0-next.321.2.0-rc.0 age adoption passing confidence pnpm.catalog.default patch
@angular/localize 21.2.0-next.321.2.0-rc.0 age adoption passing confidence pnpm.catalog.default patch
@angular/ng-dev 869bfda0125e8e devDependencies digest
@angular/platform-browser (source) 21.2.0-next.321.2.0-rc.0 age adoption passing confidence pnpm.catalog.default patch
@angular/platform-browser-dynamic (source) 21.2.0-next.321.2.0-rc.0 age adoption passing confidence pnpm.catalog.default patch
@angular/platform-server (source) 21.2.0-next.321.2.0-rc.0 age adoption passing confidence pnpm.catalog.default patch
@angular/router (source) 21.2.0-next.321.2.0-rc.0 age adoption passing confidence pnpm.catalog.default patch
@angular/ssr 21.2.0-next.221.2.0-rc.0 age adoption passing confidence pnpm.catalog.default patch
@schematics/angular 21.2.0-next.221.2.0-rc.0 age adoption passing confidence pnpm.catalog.default patch
angular/dev-infra 0edcf227c08ac2 action digest
devinfra 0edcf227c08ac2 git_override digest

🔡 If you wish to disable git hash updates, add ":disableDigestUpdates" to the extends array in your config.


Release Notes

angular/angular-cli (@​angular-devkit/build-angular)

v21.2.0-rc.0

Compare Source

angular/angular (@​angular/common)

v21.2.0-rc.0

Compare Source

compiler
Commit Type Description
95b3f37d4a feat Exhaustive checks for switch blocks
core
Commit Type Description
81cabc1477 feat add support for TypeScript 6
0806ee3826 fix prevent animated element duplication with dynamic components in zoneless mode
forms
Commit Type Description
22afbb2f36 feat add parsing support to native inputs (#​66917)
30f0914754 feat support binding null to number input (#​66917)
27397b3f4f fix clear parse errors when model updates (#​66917)
63d8005703 fix preserve custom-control focus context in signal forms
567f292e8e fix support custom controls as host directives
d75046bc09 fix warn when showing hidden field state

  • If you want to rebase/retry this PR, check this box

@angular-robot angular-robot added action: merge The PR is ready for merge by the caretaker area: build & ci Related the build and CI infrastructure of the project target: automation This PR is targeted to only merge into the branch defined in Github [bot use only] labels Feb 18, 2026
@pullapprove pullapprove bot requested review from adolgachev and ok7sai February 18, 2026 16:22
@angular-robot angular-robot force-pushed the ng-renovate/main-cross-repo-angular-dependencies branch from 5cc5bb0 to 0923b1c Compare February 18, 2026 22:11
See associated pull request for more information.
@angular-robot angular-robot force-pushed the ng-renovate/main-cross-repo-angular-dependencies branch from 0923b1c to 758297c Compare February 18, 2026 22:46
@crisbeto crisbeto merged commit c623a79 into angular:main Feb 19, 2026
24 checks passed
@crisbeto
Copy link
Member

This PR was merged into the repository. The changes were merged into the following branches:

@angular-robot angular-robot deleted the ng-renovate/main-cross-repo-angular-dependencies branch February 19, 2026 13:31
jermowery added a commit to jermowery/components that referenced this pull request Feb 23, 2026
…nside the button

Add a new API, testing API, and docs for allowing progress indicators to be projected into a button and have them shown in an accessible manner

Fixes angular#13667

undo

Use more specific selector

refactor(cdk/overlay): add way to only handle specific events in overlay

We dispatch keyboard events to the different overlays depending on their attachment order and if they're listening for keyboard events. This works fine for the most part, but can lead to unexpected behavior where an overlay only cares about one type of event which ends up blocking the event from reaching other overlays.

These changes add an `eventPredicate` option that overlay can use to allow some events to pass through.

fix(material/tooltip): do not block events to other overlays

Fixes that the tooltip was blocking keyboard events to other overlays, even if it doesn't care about them.

Fixes angular#32760.

fix(multiple): change aria keyboard manager to only handle repeated events in correct places (angular#32728)

perf(aria/grid): performance when selecting in a large grid (angular#32766)

Fixes that the grid cell's host bindings were slowing down the page significantly during selection when placed in a large grid. The issue seems to come from the fact that there's a non-zero cost to the signal reads in the directive's host bindings which can add up.

These changes address the issue by batching the reads together in an effect.

Fixes angular#32759.

fix(material/radio): hide empty labels (angular#32754)

We have similar logic in the checkbox and slide toggle so these changes apply it to the radio button: hiding the label when it's empty so it doesn't affect the layout.

build: bump stackblitz template to 21.1 (angular#32752)

Updates the template for Stackblitz examples to the latest version of Angular.

docs: release notes for the v21.1.4 release

release: cut the v21.2.0-next.4 release

fix(aria/combobox): fix autocomplete examples and add comments explaining combobox selection behavior (angular#32714)

fix(material/select): disable position locking (angular#32772)

In angular#9789 we enabled locked positioning for `mat-select` due to the previous of laying out the panel. Then in angular#30628 we enabled flexible dimensions so it's able to shrink. This combination can cause the panel to shrink when the user scrolls it out of view.

These changes remove the locked positioning since it's not necessary anymore.

Fixes angular#32771.

build: update cross-repo angular dependencies (angular#32684)

See associated pull request for more information.

fix(google-maps): fix mismatch in clusterer types (angular#32778)

Fixes that the clusterer types seem to no longer match with the ones on npm, causing a type error.

Fixes angular#32696.

refactor(material/select): remove dependency on NgClass (angular#32776)

Drops the dependency on `NgClass` from the select component since we can achieve the same with class bindings.

fix(cdk/tree): no nodes focusable if data is replaced (angular#32781)

Fixes that none of the tree nodes were focusable if the data is swapped out after initialization.

Fixes angular#32779.

build: update bazel dependencies (angular#32689)

See associated pull request for more information.

build: update all github actions (angular#32722)

See associated pull request for more information.

build: lock file maintenance (angular#32737)

See associated pull request for more information.

build: update pnpm to v10.29.3 (angular#32755)

See associated pull request for more information.

build: update cross-repo angular dependencies (angular#32784)

See associated pull request for more information.

docs: release notes for the v21.1.5 release

release: cut the v21.2.0-next.5 release

release: bump the next branch to v21.3.0-next.0

docs: release notes for the v21.2.0-rc.0 release

build: update cross-repo angular dependencies (angular#32794)

See associated pull request for more information.

fix(aria/combobox): Adjust AutoComplete examples to properly announce no results text (angular#32786)

build: update pnpm to v10.30.0 (angular#32803)

See associated pull request for more information.

build: update cross-repo angular dependencies (angular#32801)

See associated pull request for more information.

build: update dependencies and resolve breaking change (angular#32799)

Takes over the dependency bump from angular#32690 and resolves a breaking change.

fix(material/core): expose strong focus indicator structural styles (angular#32808)

Exposes the structural styles for strong focus indicators so users can use them in their own components.

Fixes angular#32773.

build: set up schematics for v22 (angular#32806)

One of the pre-requisites to release the next version of v22 is to have schematics set up. These changes add them ahead of time so we don't run into any issues when we go to release.

fix(material/datepicker): drop dependency on NgClass (angular#32810)

Drops the dependency on `NgClass` from the datepicker in favor of a direct `class` binding.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

action: merge The PR is ready for merge by the caretaker area: build & ci Related the build and CI infrastructure of the project target: automation This PR is targeted to only merge into the branch defined in Github [bot use only]

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants