Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 24, 2025

Bumps the angular group in /modules/web with 14 updates:

Package From To
@angular/animations 19.2.11 21.0.0
@angular/cdk 19.2.16 21.0.0
@angular/common 19.2.11 21.0.0
@angular/compiler 19.2.11 21.0.0
@angular/core 19.2.11 21.0.0
@angular/forms 19.2.11 21.0.0
@angular/localize 19.2.11 21.0.0
@angular/material 19.2.16 21.0.0
@angular/platform-browser 19.2.11 21.0.0
@angular/platform-browser-dynamic 19.2.11 21.0.0
@angular/router 19.2.11 21.0.0
@angular/build 19.2.17 21.0.0
@angular/cli 19.2.13 21.0.0
@angular/compiler-cli 19.2.11 21.0.0

Updates @angular/animations from 19.2.11 to 21.0.0

Release notes

Sourced from @​angular/animations's releases.

VSCode Extension: 21.0.0

  • fix(language-service): address potential memory leak during project creation (89095946cf)
  • fix(language-server): fix directory renaming on Windows (3f7111a9c3)

21.0.0

common

Commit Description
feat - c795960ada Add experimental support for the Navigation API (#63406)
feat - 9eac43cf46 Support of optional keys for the KeyValue pipe (#48814)
feat - a1868c9d13 update to cldr 47 (#64032)
fix - 196fa500a3 properly type ngComponentOutlet (#64561)
refactor - 7a4b225c57 improve typing of ngComponentOutletContent (#63674)
refactor - 25f593ce2a removengModuleFactory input of NgComponentOutlet (#62838)

compiler

Commit Description
fix - ecea909bcc don't choke on unbalanced parens in declaration block
fix - 04dd75ba94 support arbitrary nesting in :host-context()
fix - f54cc4f28a support commas in :host() argument
fix - 814b2713f5 support complex selectors in :nth-child()
fix - aad6ced0ef support one additional level of nesting in :host()

compiler-cli

Commit Description
feat - 563dbd998c Adds diagnostic for misconfigured @defer triggers (#64069)
feat - 0571b335b9 enable type checking of host bindings by default (#63654)
fix - 5b55200edf allow value to be set on radio fields
fix - ab98b2425f capture metadata for undecorated fields (#63957)
fix - be7110342b disallow compiling with the emitDeclarationOnly TS compiler option enabled (#61609)
fix - bd322ca410 do not flag custom control required inputs as missing when field is present
fix - 471da8a311 infer type of custom field controls
fix - 96cb0cffda infer types of signal forms set on native inputs
fix - 71ab11ccf0 make field detection logic more robust
fix - 1f389b8b97 missingStructuralDirective diagnostic produces false negatives (#64579)
fix - 7fd3db0423 remove internal syntax-related flags (#63787)
fix - c371251e4c report invalid bindings on form controls
fix - 01290ab275 use any when checking field interface conformance

core

Commit Description
feat - 809a4ed8c1 Add migration for zoneless by default. (#63042)
feat - 2a7a5de53f Allow passing application providers in bootstrapModule options (#64354)
feat - 28926ba92c introduce BootstrapContext for improved server bootstrapping (#63562)
feat - c2d376b85a make SimpleChanges generic (#64535)
feat - ad2376435b support IntersectionObserver options in viewport triggers (#64130)
feat - 539717f58a support regular expressions in templates (#63887)
fix - ab415f3d7f control not recognized when input has directive injecting ViewContainerRef (#64368)

... (truncated)

Changelog

Sourced from @​angular/animations's changelog.

21.0.0 (2025-11-19)

Blog post "Announcing Angular v21".

Breaking Changes

common

  • (test only) - TestBed now provides a fake PlatformLocation implementation that supports the Navigation API. This may break some tests, though we have not observed any failures internally. You can revert to the old default for TestBed by providing the MockPlatformLocation from @angular/common/testing in your providers: {provide: PlatformLocation, useClass: MockPlatformLocation}
  • ngComponentOutletContent is now of type Node[][] | undefined instead of any[][] | undefined.
  • NgModuleFactory has been removed, use NgModule instead.

compiler-cli

    • Previously hidden type issues in host bindings may show up in your builds. Either resolve the type issues or set "typeCheckHostBindings": false in the angularCompilerOptions section of your tsconfig.
  • The Angular compiler now produces an error when the the emitDeclarationOnly TS compiler option is enabled as this mode is not supported.

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

  • Using a combination of provideZoneChangeDetection while also removing ZoneJS polyfills will no longer result in the internal scheduler being disabled. All Angular applications now consistenly use the same scheduler, and those with the Zone change detection provider include additional automatic scheduling behaviors based on

... (truncated)

Commits
  • 3bed9f0 build: format md files
  • a4fe078 refactor(common): remove unused import (#64699)
  • 70332b0 fix(core): pass element removal property through in all locations (#64565)
  • 2b257b3 fix(animations): account for Element.animate exceptions (#64506)
  • dde5bad fix(core): prevent animations renderer from impacting animate.leave (#63921)
  • c357650 refactor(core): Update tests for zoneless by default (#63668)
  • 021ead5 refactor(animations): remove dependency on @angular/common (#63248)
  • 2fcafb6 build: rename defaults2.bzl to defaults.bzl (#63383)
  • ec8cd3e refactor(animations): optimize resolveTimeExpression (#62927)
  • fa8d8b8 build: migrate all npm packages to use new rules_js based npm_package rule (#...
  • Additional commits viewable in compare view

Updates @angular/cdk from 19.2.16 to 21.0.0

Release notes

Sourced from @​angular/cdk's releases.

21.0.0

aria

Commit Description
feat - a821a3ef0 grid: create the aria grid (#32092)
feat - f9d3cde14 menu: create the aria menu (#32080)
feat - a0b580027 toolbar: adds skip disabled toolbar example to dev-app (#32127)
feat - 5396c4347 toolbar: adds toolbar basic vertical example to dev-app (#32126)
feat - ba9f79be5 toolbar: adds toolbar-basic-horizontal-example to dev-app (#32106)
fix - ec6045b27 accordion: rename value to panelId for trigger and panel (#32295)
fix - 0b03c6e96 combobox: add missing apis (#32124)
fix - 25223a2f8 combobox: dialog popup support (#32279)
fix - a47ebeb96 combobox: disabled state (#32308)
fix - 127d3dba5 combobox: escape key behavior (#32364)
fix - c3279ca4b combobox: highlighting edge cases (#32136)
fix - 1232805db combobox: readonly behavior (#32169)
fix - 6c46f950d combobox: several small fixes (#32202)
fix - 8beb22f8c combobox: use click instead of pointerup (#32324)
fix - 92d933421 grid: fix navigation bugs and add grid behavior unit tests (#32140)
fix - e3babf3fc grid: rtl navigation (#32170)
fix - fe79e982c menu: add expansion delay (#32293)
fix - 3d1cafbdd menu: add selectable to inputs (#32131)
fix - 56631cb85 menu: deferred content import
fix - 95e648ad8 menu: disabled state (#32301)
fix - ce20dbe1a menu: lazy render trigger (#32203)
fix - 19095030a menu: public api cleanup (#32189)
fix - 4b5db1328 menu: rtl text direction (#32254)
fix - bac171d8b toolbar: allow developers to wrap widgets (#32341)
fix - d8acd69f5 tree: adds rtl keyboard functionality for tree (#32305)
fix - 86558d2aa tree: internal conformance check (#32337)
fix - 09e31e716 tree: only reset selected values if used in combobox (#32329)
fix - 05f936ae1 tree: tree item visibility issue (#32156)
fix - afe4d063d ui-patterns: internal conformance fixes (#32102)

cdk

Commit Description
feat - 82cd076bf overlay: Allow passing separate X and Y values for the viewportMargin (#29563)
fix - 30f6c3c45 a11y: remove deprecated factory functions
fix - b112568d1 overlay: add DI token to opt out of popovers (#32306)
fix - 0e4bf076b overlay: hide native backdrop
fix - 84f8f10ba overlay: make it easier to set default for overlay directive
fix - 84fc0d963 overlay: remove deprecated variables (#31898)
fix - a4dc30ce8 overlay: simplify matching the overlay to the trigger width
fix - 8d00344f2 overlay: simplify public API of overlay directive
fix - 6234d82e2 overlay: update golden file (#32367)
fix - 03c5d34db portal: remove deprecated directives (#32117)
fix - 5b45df30c table: ensure CdkTable updates view with OnPush and trackBy (#31451)
fix - 544438c86 testing: make setContenteditableValue required (#32058)

material

| Commit | Description |

... (truncated)

Changelog

Sourced from @​angular/cdk's changelog.

21.0.0 "damask-dachshund" (2025-11-19)

Breaking Changes

cdk

    • LIVE_ANNOUNCER_ELEMENT_TOKEN_FACTORY has been removed.
    • TREE_KEY_MANAGER_FACTORY has been removed.
    • TREE_KEY_MANAGER_FACTORY_PROVIDER has been removed.
    • $z-index-overlay-container has been removed. Use $overlay-container-z-index instead.
    • $z-index-overlay has been removed. Use $overlay-z-index instead.
    • $dark-backdrop-background has been removed. Use $overlay-backdrop-color instead.
    • $z-index-overlay-backdrop has been removed. Use $overlay-backdrop-z-index instead.
    • TemplatePortalDirective has been removed. Use CdkPortal instead.
    • PortalHostDirective has been removed. Use CdkPortalOutlet instead.
    • TestElement implementations need to provide a setContenteditableValue.

material

    • MAT_AUTOCOMPLETE_DEFAULT_OPTIONS_FACTORY has been removed.
    • MAT_AUTOCOMPLETE_SCROLL_STRATEGY_FACTORY has been removed.
    • MAT_AUTOCOMPLETE_SCROLL_STRATEGY_FACTORY_PROVIDER has been removed.
    • matBottomSheet animations symbol has been removed.
    • MAT_BUTTON_TOGGLE_GROUP_DEFAULT_OPTIONS_FACTORY has been removed.
    • MAT_FAB_DEFAULT_OPTIONS_FACTORY has been removed.
    • MAT_CHECKBOX_DEFAULT_OPTIONS_FACTORY has been removed.
    • AnimationCurves has been removed.
    • AnimationDurations has been removed.
    • NativeDateAdapter.useUtcForDisplay has been removed.
    • MAT_DATE_LOCAL_FACTORY has been removed.
    • MatCommonModule has been removed.
    • GranularSanityChecks has been removed.
    • MATERIAL_SANITY_CHECKS has been removed.
    • SanityChecks has been removed.
    • matDatepickerAnimations symbol has been removed.
    • MAT_DATEPICKER_SCROLL_STRATEGY_FACTORY has been removed.
    • MAT_DATEPICKER_SCROLL_STRATEGY_FACTORY_PROVIDER has been removed.
    • MAT_RANGE_DATE_SELECTION_MODEL_FACTORY has been removed.
    • MAT_RANGE_DATE_SELECTION_MODEL_PROVIDER has been removed.
    • MAT_SINGLE_DATE_SELECTION_MODEL_FACTORY has been removed.
    • MAT_SINGLE_DATE_SELECTION_MODEL_PROVIDER has been removed.
    • _defaultParams symbol has been removed.
    • matDialogAnimations symbol has been removed.
    • EXPANSION_PANEL_ANIMATION_TIMING symbol has been removed.
    • matExpansionAnimations symbol has been removed.
    • matFormFieldAnimations symbol has been removed.
    • ICON_REGISTRY_PROVIDER has been removed.
    • ICON_REGISTRY_PROVIDER_FACTORY has been removed.
    • MAT_ICON_LOCATION_FACTORY has been removed.
    • fadeInItems symbol has been removed.
    • transformMenu symbol has been removed.
    • matMenuAnimations symbol has been removed.
    • MAT_MENU_SCROLL_STRATEGY_FACTORY_PROVIDER has been removed.
    • MAT_PAGINATOR_INTL_PROVIDER has been removed.
    • MAT_PAGINATOR_INTL_PROVIDER_FACTORY has been removed.

... (truncated)

Commits
  • 5c82f69 release: cut the v21.0.0 release
  • c54e9eb build: bump to v21 final (#32378)
  • e7dd78a release: cut the v21.0.0-rc.3 release
  • 6234d82 fix(cdk/overlay): update golden file (#32367)
  • a1b6337 refactor(cdk/overlay): enhance popover insertion control with new inputs (#32...
  • 127d3db fix(aria/combobox): escape key behavior (#32364)
  • 41132d0 refactor(cdk/overlay): insert point-connected overlays in container (#32358)
  • b760d60 refactor(material/button): adjust icon query (#32355)
  • 610baa4 docs(aria/toolbar): expose selected values model (#32356)
  • bac171d fix(aria/toolbar): allow developers to wrap widgets (#32341)
  • Additional commits viewable in compare view

Updates @angular/common from 19.2.11 to 21.0.0

Release notes

Sourced from @​angular/common's releases.

VSCode Extension: 21.0.0

  • fix(language-service): address potential memory leak during project creation (89095946cf)
  • fix(language-server): fix directory renaming on Windows (3f7111a9c3)

21.0.0

common

Commit Description
feat - c795960ada Add experimental support for the Navigation API (#63406)
feat - 9eac43cf46 Support of optional keys for the KeyValue pipe (#48814)
feat - a1868c9d13 update to cldr 47 (#64032)
fix - 196fa500a3 properly type ngComponentOutlet (#64561)
refactor - 7a4b225c57 improve typing of ngComponentOutletContent (#63674)
refactor - 25f593ce2a removengModuleFactory input of NgComponentOutlet (#62838)

compiler

Commit Description
fix - ecea909bcc don't choke on unbalanced parens in declaration block
fix - 04dd75ba94 support arbitrary nesting in :host-context()
fix - f54cc4f28a support commas in :host() argument
fix - 814b2713f5 support complex selectors in :nth-child()
fix - aad6ced0ef support one additional level of nesting in :host()

compiler-cli

Commit Description
feat - 563dbd998c Adds diagnostic for misconfigured @defer triggers (#64069)
feat - 0571b335b9 enable type checking of host bindings by default (#63654)
fix - 5b55200edf allow value to be set on radio fields
fix - ab98b2425f capture metadata for undecorated fields (#63957)
fix - be7110342b disallow compiling with the emitDeclarationOnly TS compiler option enabled (#61609)
fix - bd322ca410 do not flag custom control required inputs as missing when field is present
fix - 471da8a311 infer type of custom field controls
fix - 96cb0cffda infer types of signal forms set on native inputs
fix - 71ab11ccf0 make field detection logic more robust
fix - 1f389b8b97 missingStructuralDirective diagnostic produces false negatives (#64579)
fix - 7fd3db0423 remove internal syntax-related flags (#63787)
fix - c371251e4c report invalid bindings on form controls
fix - 01290ab275 use any when checking field interface conformance

core

Commit Description
feat - 809a4ed8c1 Add migration for zoneless by default. (#63042)
feat - 2a7a5de53f Allow passing application providers in bootstrapModule options (#64354)
feat - 28926ba92c introduce BootstrapContext for improved server bootstrapping (#63562)
feat - c2d376b85a make SimpleChanges generic (#64535)
feat - ad2376435b support IntersectionObserver options in viewport triggers (#64130)
feat - 539717f58a support regular expressions in templates (#63887)
fix - ab415f3d7f control not recognized when input has directive injecting ViewContainerRef (#64368)

... (truncated)

Changelog

Sourced from @​angular/common's changelog.

21.0.0 (2025-11-19)

Blog post "Announcing Angular v21".

Breaking Changes

common

  • (test only) - TestBed now provides a fake PlatformLocation implementation that supports the Navigation API. This may break some tests, though we have not observed any failures internally. You can revert to the old default for TestBed by providing the MockPlatformLocation from @angular/common/testing in your providers: {provide: PlatformLocation, useClass: MockPlatformLocation}
  • ngComponentOutletContent is now of type Node[][] | undefined instead of any[][] | undefined.
  • NgModuleFactory has been removed, use NgModule instead.

compiler-cli

    • Previously hidden type issues in host bindings may show up in your builds. Either resolve the type issues or set "typeCheckHostBindings": false in the angularCompilerOptions section of your tsconfig.
  • The Angular compiler now produces an error when the the emitDeclarationOnly TS compiler option is enabled as this mode is not supported.

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

  • Using a combination of provideZoneChangeDetection while also removing ZoneJS polyfills will no longer result in the internal scheduler being disabled. All Angular applications now consistenly use the same scheduler, and those with the Zone change detection provider include additional automatic scheduling behaviors based on

... (truncated)

Commits
  • 00ffe91 refactor(common): removes unused NgModuleFactory config in NgComponentOutlet
  • 8765b66 docs: add reference to Built-in Pipes in multiple pipe files
  • ab98e71 fix(common): remove placeholder image listeners once view is removed
  • 8ab0847 refactor(core): mark VERSION as @__PURE__ for better tree-shaking
  • 650af71 refactor(http): migrate XSRF classes to use inject() function
  • 3bed9f0 build: format md files
  • a3c2fe8 Revert "refactor(common): Removes unused imports to clean up dependencies"
  • 6d3e0f1 refactor(common): Removes unused imports to clean up dependencies
  • 47578e0 refactor(common): remove redundant providedIn: 'root' from injection tokens
  • 6de14b1 refactor(http): simplifies destruction tracking using destroyed property
  • Additional commits viewable in compare view

Updates @angular/compiler from 19.2.11 to 21.0.0

Release notes

Sourced from @​angular/compiler's releases.

VSCode Extension: 21.0.0

  • fix(language-service): address potential memory leak during project creation (89095946cf)
  • fix(language-server): fix directory renaming on Windows (3f7111a9c3)

21.0.0

common

Commit Description
feat - c795960ada Add experimental support for the Navigation API (#63406)
feat - 9eac43cf46 Support of optional keys for the KeyValue pipe (#48814)
feat - a1868c9d13 update to cldr 47 (#64032)
fix - 196fa500a3 properly type ngComponentOutlet (#64561)
refactor - 7a4b225c57 improve typing of ngComponentOutletContent (#63674)
refactor - 25f593ce2a removengModuleFactory input of NgComponentOutlet (#62838)

compiler

Commit Description
fix - ecea909bcc don't choke on unbalanced parens in declaration block
fix - 04dd75ba94 support arbitrary nesting in :host-context()
fix - f54cc4f28a support commas in :host() argument
fix - 814b2713f5 support complex selectors in :nth-child()
fix - aad6ced0ef support one additional level of nesting in :host()

compiler-cli

Commit Description
feat - 563dbd998c Adds diagnostic for misconfigured @defer triggers (#64069)
feat - 0571b335b9 enable type checking of host bindings by default (#63654)
fix - 5b55200edf allow value to be set on radio fields
fix - ab98b2425f capture metadata for undecorated fields (#63957)
fix - be7110342b disallow compiling with the emitDeclarationOnly TS compiler option enabled (#61609)
fix - bd322ca410 do not flag custom control required inputs as missing when field is present
fix - 471da8a311 infer type of custom field controls
fix - 96cb0cffda infer types of signal forms set on native inputs
fix - 71ab11ccf0 make field detection logic more robust
fix - 1f389b8b97 missingStructuralDirective diagnostic produces false negatives (#64579)
fix - 7fd3db0423 remove internal syntax-related flags (#63787)
fix - c371251e4c report invalid bindings on form controls
fix - 01290ab275 use any when checking field interface conformance

core

Commit Description
feat - 809a4ed8c1 Add migration for zoneless by default. (#63042)
feat - 2a7a5de53f Allow passing application providers in bootstrapModule options (#64354)
feat - 28926ba92c introduce BootstrapContext for improved server bootstrapping (#63562)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file docs/none Denotes a PR that doesn't need documentation (changes). ok-to-test Indicates a non-member PR verified by an org member that is safe to test. release-note-none Denotes a PR that doesn't merit a release note. labels Nov 24, 2025
@kubermatic-bot kubermatic-bot added the dco-signoff: yes Denotes that all commits in the pull request have the valid DCO signoff message. label Nov 24, 2025
@kubermatic-bot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by:
Once this PR has been reviewed and has the lgtm label, please assign khizerrehan for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@kubermatic-bot
Copy link
Contributor

Hi @dependabot[bot]. Thanks for your PR.

I'm waiting for a kubermatic member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@kubermatic-bot kubermatic-bot added the size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files. label Nov 24, 2025
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/modules/web/angular-9af4ac31bf branch from 19ddec4 to 689a630 Compare December 1, 2025 20:33
Bumps the angular group in /modules/web with 14 updates:

| Package | From | To |
| --- | --- | --- |
| [@angular/animations](https://github.com/angular/angular/tree/HEAD/packages/animations) | `19.2.11` | `21.0.0` |
| [@angular/cdk](https://github.com/angular/components) | `19.2.16` | `21.0.0` |
| [@angular/common](https://github.com/angular/angular/tree/HEAD/packages/common) | `19.2.11` | `21.0.0` |
| [@angular/compiler](https://github.com/angular/angular/tree/HEAD/packages/compiler) | `19.2.11` | `21.0.0` |
| [@angular/core](https://github.com/angular/angular/tree/HEAD/packages/core) | `19.2.11` | `21.0.0` |
| [@angular/forms](https://github.com/angular/angular/tree/HEAD/packages/forms) | `19.2.11` | `21.0.0` |
| [@angular/localize](https://github.com/angular/angular) | `19.2.11` | `21.0.0` |
| [@angular/material](https://github.com/angular/components) | `19.2.16` | `21.0.0` |
| [@angular/platform-browser](https://github.com/angular/angular/tree/HEAD/packages/platform-browser) | `19.2.11` | `21.0.0` |
| [@angular/platform-browser-dynamic](https://github.com/angular/angular/tree/HEAD/packages/platform-browser-dynamic) | `19.2.11` | `21.0.0` |
| [@angular/router](https://github.com/angular/angular/tree/HEAD/packages/router) | `19.2.11` | `21.0.0` |
| [@angular/build](https://github.com/angular/angular-cli) | `19.2.17` | `21.0.0` |
| [@angular/cli](https://github.com/angular/angular-cli) | `19.2.13` | `21.0.0` |
| [@angular/compiler-cli](https://github.com/angular/angular/tree/HEAD/packages/compiler-cli) | `19.2.11` | `21.0.0` |


Updates `@angular/animations` from 19.2.11 to 21.0.0
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/21.0.0/packages/animations)

Updates `@angular/cdk` from 19.2.16 to 21.0.0
- [Release notes](https://github.com/angular/components/releases)
- [Changelog](https://github.com/angular/components/blob/main/CHANGELOG.md)
- [Commits](angular/components@19.2.16...21.0.0)

Updates `@angular/common` from 19.2.11 to 21.0.0
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/21.0.0/packages/common)

Updates `@angular/compiler` from 19.2.11 to 21.0.0
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/21.0.0/packages/compiler)

Updates `@angular/core` from 19.2.11 to 21.0.0
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/21.0.0/packages/core)

Updates `@angular/forms` from 19.2.11 to 21.0.0
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/21.0.0/packages/forms)

Updates `@angular/localize` from 19.2.11 to 21.0.0
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](angular/angular@19.2.11...21.0.0)

Updates `@angular/material` from 19.2.16 to 21.0.0
- [Release notes](https://github.com/angular/components/releases)
- [Changelog](https://github.com/angular/components/blob/main/CHANGELOG.md)
- [Commits](angular/components@19.2.16...21.0.0)

Updates `@angular/platform-browser` from 19.2.11 to 21.0.0
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/21.0.0/packages/platform-browser)

Updates `@angular/platform-browser-dynamic` from 19.2.11 to 21.0.0
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/21.0.0/packages/platform-browser-dynamic)

Updates `@angular/router` from 19.2.11 to 21.0.0
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/21.0.0/packages/router)

Updates `@angular/build` from 19.2.17 to 21.0.0
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Changelog](https://github.com/angular/angular-cli/blob/main/CHANGELOG.md)
- [Commits](angular/angular-cli@19.2.17...21.0.0)

Updates `@angular/cli` from 19.2.13 to 21.0.0
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Changelog](https://github.com/angular/angular-cli/blob/main/CHANGELOG.md)
- [Commits](angular/angular-cli@19.2.13...21.0.0)

Updates `@angular/compiler-cli` from 19.2.11 to 21.0.0
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/21.0.0/packages/compiler-cli)

---
updated-dependencies:
- dependency-name: "@angular/animations"
  dependency-version: 21.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: angular
- dependency-name: "@angular/cdk"
  dependency-version: 21.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: angular
- dependency-name: "@angular/common"
  dependency-version: 21.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: angular
- dependency-name: "@angular/compiler"
  dependency-version: 21.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: angular
- dependency-name: "@angular/core"
  dependency-version: 21.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: angular
- dependency-name: "@angular/forms"
  dependency-version: 21.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: angular
- dependency-name: "@angular/localize"
  dependency-version: 21.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: angular
- dependency-name: "@angular/material"
  dependency-version: 21.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: angular
- dependency-name: "@angular/platform-browser"
  dependency-version: 21.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: angular
- dependency-name: "@angular/platform-browser-dynamic"
  dependency-version: 21.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: angular
- dependency-name: "@angular/router"
  dependency-version: 21.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: angular
- dependency-name: "@angular/build"
  dependency-version: 21.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: angular
- dependency-name: "@angular/cli"
  dependency-version: 21.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: angular
- dependency-name: "@angular/compiler-cli"
  dependency-version: 21.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: angular
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/modules/web/angular-9af4ac31bf branch from 689a630 to 12d7f82 Compare December 8, 2025 14:01
@kubermatic-bot
Copy link
Contributor

@dependabot[bot]: The following tests failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:

Test name Commit Details Required Rerun command
pre-dashboard-web-unit 12d7f82 link true /test pre-dashboard-web-unit
pre-dashboard-web-integration-tests 12d7f82 link true /test pre-dashboard-web-integration-tests
pre-dashboard-web-integration-tests-ce 12d7f82 link true /test pre-dashboard-web-integration-tests-ce

Full PR test history

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here.

@KhizerRehan
Copy link
Contributor

/close
Will cater for v21 upgarde

@kubermatic-bot
Copy link
Contributor

@KhizerRehan: Closed this PR.

In response to this:

/close
Will cater for v21 upgarde

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 9, 2025

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/npm_and_yarn/modules/web/angular-9af4ac31bf branch December 9, 2025 06:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dco-signoff: yes Denotes that all commits in the pull request have the valid DCO signoff message. dependencies Pull requests that update a dependency file docs/none Denotes a PR that doesn't need documentation (changes). ok-to-test Indicates a non-member PR verified by an org member that is safe to test. release-note-none Denotes a PR that doesn't merit a release note. size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants