Skip to content

Bump the npm-dependencies-minor group across 1 directory with 24 updates#74

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-dependencies-minor-8c612aee8f
Closed

Bump the npm-dependencies-minor group across 1 directory with 24 updates#74
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/npm-dependencies-minor-8c612aee8f

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Dec 20, 2025

Copy link
Copy Markdown
Contributor

Bumps the npm-dependencies-minor group with 20 updates in the / directory:

Package From To
@angular/animations 21.0.3 21.0.6
@angular/cdk 21.0.2 21.0.5
@angular/common 21.0.3 21.0.6
@angular/compiler 21.0.3 21.0.6
@angular/core 21.0.3 21.0.6
@angular/forms 21.0.3 21.0.6
@angular/material 21.0.2 21.0.5
@angular/platform-browser 21.0.3 21.0.6
@angular/platform-browser-dynamic 21.0.3 21.0.6
@angular/router 21.0.3 21.0.6
@angular-eslint/builder 21.0.1 21.1.0
@angular-eslint/eslint-plugin 21.0.1 21.1.0
@angular-eslint/eslint-plugin-template 21.0.1 21.1.0
@angular-eslint/schematics 21.0.1 21.1.0
@angular/build 21.0.2 21.0.4
@angular/cli 21.0.2 21.0.4
@angular/compiler-cli 21.0.3 21.0.6
@typescript-eslint/eslint-plugin 8.48.1 8.50.0
cypress 15.7.1 15.8.1
eslint 9.39.1 9.39.2

Updates @angular/animations from 21.0.3 to 21.0.6

Release notes

Sourced from @​angular/animations's releases.

21.0.6

core

Commit Description
fix - 4c8fb3631d throw better errors for potential circular references
fix - 48492524ea use mutable ResponseInit type for RESPONSE_INIT token

forms

Commit Description
feat - 81772b420d pass field directive to class config
refactor - 729b96476b rename field to fieldTree in FieldContext and ValidationError

language-service

Commit Description
fix - e0694df3ec avoid interpolation highlighting inside @​let
fix - 5047be4bc1 Prevent language service from crashing on suggestion diagnostic errors

Breaking Changes

forms

  • The shape of SignalFormsConfig.classes has changed

    Previously each function in the classes map took a FieldState. Now it takes a Field directive.

    For example if you previously had:

    provideSignalFormsConfig({
      classes: {
        'my-valid': (state) => state.valid()
      }
    })
    

    You would need to update to:

    provideSignalFormsConfig({
      classes: {
        'my-valid': ({state}) => state().valid()
      }
    })
    

    (cherry picked from commit 348f149e8b06d6885f54bac4cf03a9481a8b19b7)

  • (cherry picked from commit ae0c59028a2f393ea5716bf222db2c38e7a3989f)

21.0.5

core

Commit Description
fix - 69d243abb74 avoid false-positive deprecation when using InjectionToken with factory only

forms

... (truncated)

Changelog

Sourced from @​angular/animations's changelog.

21.0.6 (2025-12-17)

Breaking Changes (affecting only experimental features)

forms

  • The shape of SignalFormsConfig.classes has changed

    Previously each function in the classes map took a FieldState. Now it takes a Field directive.

    For example if you previously had:

    provideSignalFormsConfig({
      classes: {
        'my-valid': (state) => state.valid()
      }
    })
    

    You would need to update to:

    provideSignalFormsConfig({
      classes: {
        'my-valid': ({state}) => state().valid()
      }
    })
    

    (cherry picked from commit 348f149e8b06d6885f54bac4cf03a9481a8b19b7)

  • (cherry picked from commit ae0c59028a2f393ea5716bf222db2c38e7a3989f)

core

Commit Type Description
4c8fb3631d fix throw better errors for potential circular references
48492524ea fix use mutable ResponseInit type for RESPONSE_INIT token

forms

Commit Type Description
81772b420d feat pass field directive to class config
729b96476b refactor rename field to fieldTree in FieldContext and ValidationError

language-service

Commit Type Description
e0694df3ec fix avoid interpolation highlighting inside @​let
5047be4bc1 fix Prevent language service from crashing on suggestion diagnostic errors

21.1.0-next.3 (2025-12-11)

... (truncated)

Commits

Updates @angular/cdk from 21.0.2 to 21.0.5

Release notes

Sourced from @​angular/cdk's releases.

21.0.5

No release notes provided.

21.0.4

material

Commit Description
fix - 57e831975e form-field: outline being thrown off by Tailwind (#32513)
fix - 454bf96089 schematics: combine style resets (#32496)
fix - d3139205c0 slide-toggle: Fix a11y issues by hiding label when it has no content. (#32480)
fix - a3dfa754c9 tooltip: remove explicit usePopover (#32528)

cdk

Commit Description
fix - 4d2a7169ee testing: Skip task tracking if zone patches aren't present (#32544)

aria

Commit Description
fix - fb2726c7e0 tabs: disabled tab selection

multiple

Commit Description
fix - ecfe310e8a type issues when importing Aria directives (#32561)
fix - 1620cabb51 use focus-visible for focus indicator (#32514)

21.0.3

material

Commit Description
fix - 151322f3b3 core: default secondary color for focus indicator (#32491)
fix - b1287cf9a6 datepicker: value reset when invalid value is entered using signal forms (#32485)
fix - f4af3981b6 table: fixed layout not working (#32494)

cdk

Commit Description
fix - fd2213c5e7 menu: allow user to pass selector for transform origin (#32462)
fix - 09ec44973f overlay: error when attempting to attach disposed overlay (#32489)
Changelog

Sourced from @​angular/cdk's changelog.

21.0.5 "plastic-deer" (2025-12-18)

21.1.0-next.3 "lego scooter" (2025-12-17)

aria

Commit Type Description
ebb1c176f2 fix tabs: disabled tab selection

cdk

Commit Type Description
dd40f25a03 fix testing: Skip task tracking if zone patches aren't present (#32544)

material

Commit Type Description
0669de57f2 fix form-field: outline being thrown off by Tailwind (#32513)
a364de5d01 fix schematics: combine style resets (#32496)
204788b945 fix slide-toggle: Fix a11y issues by hiding label when it has no content. (#32480)
cdcae54a47 fix tooltip: remove explicit usePopover (#32528)

multiple

Commit Type Description
e63c5648e8 fix type issues when importing Aria directives (#32561)
d4e104ab7f fix use focus-visible for focus indicator (#32514)

21.1.0-next.2 "plastic-monkey" (2025-12-10)

cdk

Commit Type Description
439d1f92a8 feat table: add virtual scrolling support
67f213a351 fix a11y: add @angular/platform-browser to peer dependencies (#32471)
789274f423 fix menu: allow user to pass selector for transform origin (#32462)
52720a3688 fix overlay: error when attempting to attach disposed overlay (#32489)

material

Commit Type Description
ed7e1dab2f fix core: default secondary color for focus indicator (#32491)
29a8a2fddc fix datepicker: value reset when invalid value is entered using signal forms (#32485)
1fab386620 fix table: fixed layout not working (#32494)

21.0.3 "plastic-moose" (2025-12-10)

cdk

... (truncated)

Commits
  • 8ff6ffc release: cut the v21.0.5 release
  • 2f35755 release: cut the v21.0.4 release
  • c929692 build: migrate Bazel ignore rules from .bazelignore to REPO.bazel (#32562)
  • a3380e9 build: update cross-repo angular dependencies (#32547)
  • 4d2a716 fix(cdk/testing): Skip task tracking if zone patches aren't present (#32544)
  • ecfe310 fix(multiple): type issues when importing Aria directives (#32561)
  • d313920 fix(material/slide-toggle): Fix a11y issues by hiding label when it has no co...
  • 92260e6 docs(aria/tree): improve disabled ui (#32548)
  • e45fb73 refactor: cleanup remaining signal primitive usages (#32549)
  • 687789e build: set up public-api files for aria (#32535)
  • Additional commits viewable in compare view

Updates @angular/common from 21.0.3 to 21.0.6

Release notes

Sourced from @​angular/common's releases.

21.0.6

core

Commit Description
fix - 4c8fb3631d throw better errors for potential circular references
fix - 48492524ea use mutable ResponseInit type for RESPONSE_INIT token

forms

Commit Description
feat - 81772b420d pass field directive to class config
refactor - 729b96476b rename field to fieldTree in FieldContext and ValidationError

language-service

Commit Description
fix - e0694df3ec avoid interpolation highlighting inside @​let
fix - 5047be4bc1 Prevent language service from crashing on suggestion diagnostic errors

Breaking Changes

forms

  • The shape of SignalFormsConfig.classes has changed

    Previously each function in the classes map took a FieldState. Now it takes a Field directive.

    For example if you previously had:

    provideSignalFormsConfig({
      classes: {
        'my-valid': (state) => state.valid()
      }
    })
    

    You would need to update to:

    provideSignalFormsConfig({
      classes: {
        'my-valid': ({state}) => state().valid()
      }
    })
    

    (cherry picked from commit 348f149e8b06d6885f54bac4cf03a9481a8b19b7)

  • (cherry picked from commit ae0c59028a2f393ea5716bf222db2c38e7a3989f)

21.0.5

core

Commit Description
fix - 69d243abb74 avoid false-positive deprecation when using InjectionToken with factory only

forms

... (truncated)

Changelog

Sourced from @​angular/common's changelog.

21.0.6 (2025-12-17)

Breaking Changes (affecting only experimental features)

forms

  • The shape of SignalFormsConfig.classes has changed

    Previously each function in the classes map took a FieldState. Now it takes a Field directive.

    For example if you previously had:

    provideSignalFormsConfig({
      classes: {
        'my-valid': (state) => state.valid()
      }
    })
    

    You would need to update to:

    provideSignalFormsConfig({
      classes: {
        'my-valid': ({state}) => state().valid()
      }
    })
    

    (cherry picked from commit 348f149e8b06d6885f54bac4cf03a9481a8b19b7)

  • (cherry picked from commit ae0c59028a2f393ea5716bf222db2c38e7a3989f)

core

Commit Type Description
4c8fb3631d fix throw better errors for potential circular references
48492524ea fix use mutable ResponseInit type for RESPONSE_INIT token

forms

Commit Type Description
81772b420d feat pass field directive to class config
729b96476b refactor rename field to fieldTree in FieldContext and ValidationError

language-service

Commit Type Description
e0694df3ec fix avoid interpolation highlighting inside @​let
5047be4bc1 fix Prevent language service from crashing on suggestion diagnostic errors

21.1.0-next.3 (2025-12-11)

... (truncated)

Commits
  • feed89e ci: reformat files
  • 6d9d2b8 refactor(common): remove redundant providedIn: 'root' from injection tokens
  • 288238a refactor(core): correct all typeof ngDevMode comparison patterns introduced...
  • 56418b1 docs: add documentation for HTTP_TRANSFER_CACHE_ORIGIN_MAP
  • See full diff in compare view

Updates @angular/compiler from 21.0.3 to 21.0.6

Release notes

Sourced from @​angular/compiler's releases.

21.0.6

core

Commit Description
fix - 4c8fb3631d throw better errors for potential circular references
fix - 48492524ea use mutable ResponseInit type for RESPONSE_INIT token

forms

Commit Description
feat - 81772b420d pass field directive to class config
refactor - 729b96476b rename field to fieldTree in FieldContext and ValidationError

language-service

Commit Description
fix - e0694df3ec avoid interpolation highlighting inside @​let
fix - 5047be4bc1 Prevent language service from crashing on suggestion diagnostic errors

Breaking Changes

forms

  • The shape of SignalFormsConfig.classes has changed

    Previously each function in the classes map took a FieldState. Now it takes a Field directive.

    For example if you previously had:

    provideSignalFormsConfig({
      classes: {
        'my-valid': (state) => state.valid()
      }
    })
    

    You would need to update to:

    provideSignalFormsConfig({
      classes: {
        'my-valid': ({state}) => state().valid()
      }
    })
    

    (cherry picked from commit 348f149e8b06d6885f54bac4cf03a9481a8b19b7)

  • (cherry picked from commit ae0c59028a2f393ea5716bf222db2c38e7a3989f)

21.0.5

core

Commit Description
fix - 69d243abb74 avoid false-positive deprecation when using InjectionToken with factory only

forms

... (truncated)

Changelog

Sourced from @​angular/compiler's changelog.

21.0.6 (2025-12-17)

Breaking Changes (affecting only experimental features)

forms

  • The shape of SignalFormsConfig.classes has changed

    Previously each function in the classes map took a FieldState. Now it takes a Field directive.

    For example if you previously had:

    provideSignalFormsConfig({
      classes: {
        'my-valid': (state) => state.valid()
      }
    })
    

    You would need to update to:

    provideSignalFormsConfig({
      classes: {
        'my-valid': ({state}) => state().valid()
      }
    })
    

    (cherry picked from commit 348f149e8b06d6885f54bac4cf03a9481a8b19b7)

  • (cherry picked from commit ae0c59028a2f393ea5716bf222db2c38e7a3989f)

core

Commit Type Description
4c8fb3631d fix throw better errors for potential circular references
48492524ea fix use mutable ResponseInit type for RESPONSE_INIT token

forms

Commit Type Description
81772b420d feat pass field directive to class config
729b96476b refactor rename field to fieldTree in FieldContext and ValidationError

language-service

Commit Type Description
e0694df3ec fix avoid interpolation highlighting inside @​let
5047be4bc1 fix Prevent language service from crashing on suggestion diagnostic errors

21.1.0-next.3 (2025-12-11)

... (truncated)

Commits
  • feed89e ci: reformat files
  • 31b9090 refactor(compiler): remove unnecessary sanitization for safe attributes
  • 534b1b5 Revert "refactor(compiler): remove unnecessary sanitization for safe attributes"
  • b8cb6cd refactor(compiler): remove unnecessary sanitization for safe attributes
  • f901cc9 perf(compiler): chain query creation instructions
  • See full diff in compare view

Updates @angular/core from 21.0.3 to 21.0.6

Release notes

Sourced from @​angular/core's releases.

21.0.6

core

Commit Description
fix - 4c8fb3631d throw better errors for potential circular references
fix - 48492524ea use mutable ResponseInit type for RESPONSE_INIT token

forms

Commit Description
feat - 81772b420d pass field directive to class config
refactor - 729b96476b rename field to fieldTree in FieldContext and ValidationError

language-service

Commit Description
fix - e0694df3ec avoid interpolation highlighting inside @​let
fix - 5047be4bc1 Prevent language service from crashing on suggestion diagnostic errors

Breaking Changes

forms

  • The shape of SignalFormsConfig.classes has changed

    Previously each function in the classes map took a FieldState. Now it takes a Field directive.

    For example if you previously had:

    provideSignalFormsConfig({
      classes: {
        'my-valid': (state) => state.valid()
      }
    })
    

    You would need to update to:

    provideSignalFormsConfig({
      classes: {
        'my-valid': ({state}) => state().valid()
      }
    })
    

    (cherry picked from commit 348f149e8b06d6885f54bac4cf03a9481a8b19b7)

  • (cherry picked from commit ae0c59028a2f393ea5716bf222db2c38e7a3989f)

21.0.5

core

Commit Description
fix - 69d243abb74 avoid false-positive deprecation when using InjectionToken with factory only

forms

... (truncated)

Changelog

Sourced from @​angular/core's changelog.

21.0.6 (2025-12-17)

Breaking Changes (affecting only experimental features)

forms

  • The shape of SignalFormsConfig.classes has changed

    Previously each function in the classes map took a FieldState. Now it takes a Field directive.

    For example if you previously had:

    provideSignalFormsConfig({
      classes: {
        'my-valid': (state) => state.valid()
      }
    })
    

    You would need to update to:

    provideSignalFormsConfig({
      classes: {
        'my-valid': ({state}) => state().valid()
      }
    })
    

    (cherry picked from commit 348f149e8b06d6885f54bac4cf03a9481a8b19b7)

  • (cherry picked from commit ae0c59028a2f393ea5716bf222db2c38e7a3989f)

core

Commit Type Description
4c8fb3631d fix throw better errors for potential circular references
48492524ea fix use mutable ResponseInit type for RESPONSE_INIT token

forms

Commit Type Description
81772b420d feat pass field directive to class config
729b96476b refactor rename field to fieldTree in FieldContext and ValidationError

language-service

Commit Type Description
e0694df3ec fix avoid interpolation highlighting inside @​let
5047be4bc1 fix Prevent language service from crashing on suggestion diagnostic errors

21.1.0-next.3 (2025-12-11)

... (truncated)

Commits
  • 4849252 fix(core): use mutable ResponseInit type for RESPONSE_INIT token
  • a4d2de8 Revert "fix(core): explicitly cast signal node value to String"
  • 0eb623c fix(core): explicitly cast signal node value to String
  • dc0aae9 docs: add section about reactive contexts
  • feed89e ci: reformat files
  • 0a5fd6b refactor(core): conditionally include debug names based on ngDevMode
  • 31b9090 refactor(compiler): remove unnecessary sanitization for safe attributes
  • 69b089a docs: Adds documentation for the NG0919 error
  • 534b1b5 Revert "refactor(compiler): remove unnecessary sanitization for safe attributes"
  • 4c8fb36 fix(core): throw better errors for potential circular references
  • Additional commits viewable in compare view

Updates @angular/forms from 21.0.3 to 21.0.6

Release notes

Sourced from @​angular/forms's releases.

21.0.6

core

Commit Description
fix - 4c8fb3631d throw better errors for potential circular references
fix - 48492524ea use mutable ResponseInit type for RESPONSE_INIT token

forms

Commit Description
feat - 81772b420d pass field directive to class config
refactor - 729b96476b rename field to fieldTree in FieldContext and ValidationError

language-service

Commit Description
fix - e0694df3ec avoid interpolation highlighting inside @​let
fix - 5047be4bc1 Prevent language service from crashing on suggestion diagnostic errors

Breaking Changes

forms

  • The shape of SignalFormsConfig.classes has changed

    Previously each function in the classes map took a FieldState. Now it takes a Field directive.

    For example if you previously had:

    provideSignalFormsConfig({
      classes: {
        'my-valid': (state) => state.valid()
      }
    })
    

    You would need to update to:

    provideSignalFormsConfig({
      classes: {
        'my-valid': ({state}) => state().valid()
      }
    })
    

    (cherry picked from commit 348f149e8b06d6885f54bac4cf03a9481a8b19b7)

  • (cherry picked from commit ae0c59028a2f393ea5716bf222db2c38e7a3989f)

21.0.5

core

Commit Description
fix - 69d243abb74 avoid false-positive deprecation when using InjectionToken with factory only

forms

... (truncated)

Changelog

Sourced from @​angular/forms's changelog.

21.0.6 (2025-12-17)

Breaking Changes (affecting only experimental features)

forms

  • The shape of SignalFormsConfig.classes has changed

    Previously each function in the classes map took a FieldState. Now it takes a Field directive.

    For example if you previously had:

    provideSignalFormsConfig({
      classes: {
        'my-valid': (state) => state.valid()
      }
    })
    

    You would need to update to:

    provideSignalFormsConfig({
      classes: {
        'my-valid': ({state}) => state().valid()
      }
    })
    

    (cherry picked from commit 348f149e8b06d6885f54bac4cf03a9481a8b19b7)

  • (cherry picked from commit ae0c59028a2f393ea5716bf222db2c38e7a3989f)

core

Commit Type Description
4c8fb3631d fix throw better errors for potential circular references
48492524ea fix use mutable ResponseInit type for RESPONSE_INIT token

forms

Commit Type Description
81772b420d feat pass field directive to class config
729b96476b refactor rename field to fieldTree in FieldContext and ValidationError

language-service

Commit Type Description
e0694df3ec fix avoid interpolation highlighting inside @​let
5047be4bc1 fix Prevent language service from crashing on suggestion diagnostic errors

21.1.0-next.3 (2025-12-11)

... (truncated)

Commits
  • feed89e ci: reformat files
  • 729b964 refactor(forms): rename field to fieldTree in FieldContext and ValidationError
  • 5afb1eb docs(forms): improve JSDoc for Signal Forms Schema types
  • 3151c05 refactor(forms): add signal forms to the type tests
  • 45e967b refactor(forms): convert Signal Forms errors to use RuntimeError
  • 81772b4 feat(forms): pass field directive to class config
  • 4fd2b72 fix(forms): fix signal forms type error
  • cbb1017 fix(forms): allow resetting with empty string
  • 6d74755 fix(forms): Reuse key in parent in compat structure
  • f254ff4 feat(forms): expose element on signal forms Field directive
  • Additional commits viewable in compare view

Updates @angular/material from 21.0.2 to 21.0.5

Release notes

Sourced from @​angular/material's releases.

21.0.5

No release notes provided.

21.0.4

material

Commit Description
fix - 57e831975e form-field: outline being thrown off by Tailwind (#32513)
fix - 454bf96089 schematics: combine style resets (#32496)
fix - d3139205c0 slide-toggle: Fix a11y issues by hiding label when it has no content. (#32480)
fix - a3dfa754c9 tooltip: remove explicit usePopover (#32528)

cdk

Commit Description
fix - 4d2a7169ee testing: Skip task tracking if zone patches aren't present (#32544)

aria

Commit Description
fix - fb2726c7e0 tabs: disabled tab selection

multiple

Commit Description
fix - ecfe310e8a type issues when importing Aria directives (#32561)
fix - 1620cabb51 use focus-visible for focus indicator (#32514)

21.0.3

material

Commit Description
fix - 151322f3b3 core: default secondary color for focus indicator (#32491)
fix - b1287cf9a6 datepicker: value reset when invalid value is entered using signal forms (#32485)
fix - f4af3981b6 table: fixed layout not working (#32494)

cdk

Commit Description
fix - fd2213c5e7 menu: allow user to pass selector for transform origin (#32462)
fix - 09ec44973f overlay: error when attempting to attach disposed overlay (#32489)
Changelog

Sourced from @​angular/material's changelog.

21.0.5 "plastic-deer" (2025-12-18)

21.1.0-next.3 "lego scooter" (2025-12-17)

aria

Commit Type Description
ebb1c176f2 fix tabs: disabled tab selection

cdk

Commit Type Description
dd40f25a03 fix testing: Skip task tracking if zone patches aren't present (#32544)

material

Commit Type Description
0669de57f2 fix form-field: outline being thrown off by Tailwind (#32513)
a364de5d01 fix schematics: combine style resets (#32496)
204788b945 fix slide-toggle: Fix a11y issues by hiding label when it has no content. (#32480)
cdcae54a47 fix tooltip: remove explicit usePopover (#32528)

multiple

Commit Type Description
e63c5648e8 fix type issues when importing Aria directives (#32561)
d4e104ab7f fix use focus-visible for focus indicator (#32514)

21.1.0-next.2 "plastic-monkey" (2025-12-10)

cdk

Commit Type Description
439d1f92a8 feat table: add virtual scrolling support
67f213a351 fix a11y: add @angular/platform-browser to peer dependencies (#32471)
789274f423 fix menu: allow user to pass selector for transform origin (#32462)
52720a3688 fix overlay: error when attempting to attach disposed overlay (#32489)

material

Commit Type Description
ed7e1dab2f fix core: default secondary color for focus indicator (

Bumps the npm-dependencies-minor group with 20 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@angular/animations](https://github.com/angular/angular/tree/HEAD/packages/animations) | `21.0.3` | `21.0.6` |
| [@angular/cdk](https://github.com/angular/components) | `21.0.2` | `21.0.5` |
| [@angular/common](https://github.com/angular/angular/tree/HEAD/packages/common) | `21.0.3` | `21.0.6` |
| [@angular/compiler](https://github.com/angular/angular/tree/HEAD/packages/compiler) | `21.0.3` | `21.0.6` |
| [@angular/core](https://github.com/angular/angular/tree/HEAD/packages/core) | `21.0.3` | `21.0.6` |
| [@angular/forms](https://github.com/angular/angular/tree/HEAD/packages/forms) | `21.0.3` | `21.0.6` |
| [@angular/material](https://github.com/angular/components) | `21.0.2` | `21.0.5` |
| [@angular/platform-browser](https://github.com/angular/angular/tree/HEAD/packages/platform-browser) | `21.0.3` | `21.0.6` |
| [@angular/platform-browser-dynamic](https://github.com/angular/angular/tree/HEAD/packages/platform-browser-dynamic) | `21.0.3` | `21.0.6` |
| [@angular/router](https://github.com/angular/angular/tree/HEAD/packages/router) | `21.0.3` | `21.0.6` |
| [@angular-eslint/builder](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/builder) | `21.0.1` | `21.1.0` |
| [@angular-eslint/eslint-plugin](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/eslint-plugin) | `21.0.1` | `21.1.0` |
| [@angular-eslint/eslint-plugin-template](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/eslint-plugin-template) | `21.0.1` | `21.1.0` |
| [@angular-eslint/schematics](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/schematics) | `21.0.1` | `21.1.0` |
| [@angular/build](https://github.com/angular/angular-cli) | `21.0.2` | `21.0.4` |
| [@angular/cli](https://github.com/angular/angular-cli) | `21.0.2` | `21.0.4` |
| [@angular/compiler-cli](https://github.com/angular/angular/tree/HEAD/packages/compiler-cli) | `21.0.3` | `21.0.6` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `8.48.1` | `8.50.0` |
| [cypress](https://github.com/cypress-io/cypress) | `15.7.1` | `15.8.1` |
| [eslint](https://github.com/eslint/eslint) | `9.39.1` | `9.39.2` |



Updates `@angular/animations` from 21.0.3 to 21.0.6
- [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/v21.0.6/packages/animations)

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

Updates `@angular/common` from 21.0.3 to 21.0.6
- [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/v21.0.6/packages/common)

Updates `@angular/compiler` from 21.0.3 to 21.0.6
- [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/v21.0.6/packages/compiler)

Updates `@angular/core` from 21.0.3 to 21.0.6
- [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/v21.0.6/packages/core)

Updates `@angular/forms` from 21.0.3 to 21.0.6
- [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/v21.0.6/packages/forms)

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

Updates `@angular/platform-browser` from 21.0.3 to 21.0.6
- [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/v21.0.6/packages/platform-browser)

Updates `@angular/platform-browser-dynamic` from 21.0.3 to 21.0.6
- [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/v21.0.6/packages/platform-browser-dynamic)

Updates `@angular/router` from 21.0.3 to 21.0.6
- [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/v21.0.6/packages/router)

Updates `@angular-eslint/builder` from 21.0.1 to 21.1.0
- [Release notes](https://github.com/angular-eslint/angular-eslint/releases)
- [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/builder/CHANGELOG.md)
- [Commits](https://github.com/angular-eslint/angular-eslint/commits/v21.1.0/packages/builder)

Updates `@angular-eslint/eslint-plugin` from 21.0.1 to 21.1.0
- [Release notes](https://github.com/angular-eslint/angular-eslint/releases)
- [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/angular-eslint/angular-eslint/commits/v21.1.0/packages/eslint-plugin)

Updates `@angular-eslint/eslint-plugin-template` from 21.0.1 to 21.1.0
- [Release notes](https://github.com/angular-eslint/angular-eslint/releases)
- [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/eslint-plugin-template/CHANGELOG.md)
- [Commits](https://github.com/angular-eslint/angular-eslint/commits/v21.1.0/packages/eslint-plugin-template)

Updates `@angular-eslint/schematics` from 21.0.1 to 21.1.0
- [Release notes](https://github.com/angular-eslint/angular-eslint/releases)
- [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/schematics/CHANGELOG.md)
- [Commits](https://github.com/angular-eslint/angular-eslint/commits/v21.1.0/packages/schematics)

Updates `@angular-eslint/template-parser` from 21.0.1 to 21.1.0
- [Release notes](https://github.com/angular-eslint/angular-eslint/releases)
- [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/template-parser/CHANGELOG.md)
- [Commits](https://github.com/angular-eslint/angular-eslint/commits/v21.1.0/packages/template-parser)

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

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

Updates `@angular/compiler-cli` from 21.0.3 to 21.0.6
- [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/v21.0.6/packages/compiler-cli)

Updates `@typescript-eslint/eslint-plugin` from 8.48.1 to 8.50.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.50.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 8.48.1 to 8.50.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.50.0/packages/parser)

Updates `@typescript-eslint/types` from 8.48.1 to 8.50.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/types/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.50.0/packages/types)

Updates `@typescript-eslint/utils` from 8.48.1 to 8.50.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/utils/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.50.0/packages/utils)

Updates `cypress` from 15.7.1 to 15.8.1
- [Release notes](https://github.com/cypress-io/cypress/releases)
- [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
- [Commits](cypress-io/cypress@v15.7.1...v15.8.1)

Updates `eslint` from 9.39.1 to 9.39.2
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v9.39.1...v9.39.2)

---
updated-dependencies:
- dependency-name: "@angular/animations"
  dependency-version: 21.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies-minor
- dependency-name: "@angular/cdk"
  dependency-version: 21.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies-minor
- dependency-name: "@angular/common"
  dependency-version: 21.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies-minor
- dependency-name: "@angular/compiler"
  dependency-version: 21.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies-minor
- dependency-name: "@angular/core"
  dependency-version: 21.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies-minor
- dependency-name: "@angular/forms"
  dependency-version: 21.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies-minor
- dependency-name: "@angular/material"
  dependency-version: 21.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies-minor
- dependency-name: "@angular/platform-browser"
  dependency-version: 21.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies-minor
- dependency-name: "@angular/platform-browser-dynamic"
  dependency-version: 21.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies-minor
- dependency-name: "@angular/router"
  dependency-version: 21.0.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies-minor
- dependency-name: "@angular-eslint/builder"
  dependency-version: 21.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies-minor
- dependency-name: "@angular-eslint/eslint-plugin"
  dependency-version: 21.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies-minor
- dependency-name: "@angular-eslint/eslint-plugin-template"
  dependency-version: 21.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies-minor
- dependency-name: "@angular-eslint/schematics"
  dependency-version: 21.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies-minor
- dependency-name: "@angular-eslint/template-parser"
  dependency-version: 21.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies-minor
- dependency-name: "@angular/build"
  dependency-version: 21.0.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies-minor
- dependency-name: "@angular/cli"
  dependency-version: 21.0.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies-minor
- dependency-name: "@angular/compiler-cli"
  dependency-version: 21.0.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies-minor
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-version: 8.50.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies-minor
- dependency-name: "@typescript-eslint/parser"
  dependency-version: 8.50.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies-minor
- dependency-name: "@typescript-eslint/types"
  dependency-version: 8.50.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies-minor
- dependency-name: "@typescript-eslint/utils"
  dependency-version: 8.50.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies-minor
- dependency-name: cypress
  dependency-version: 15.8.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies-minor
- dependency-name: eslint
  dependency-version: 9.39.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm-dependencies-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Dec 20, 2025
@dependabot dependabot Bot requested a review from RHSplinter as a code owner December 20, 2025 13:08
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Dec 20, 2025
@dependabot @github

dependabot Bot commented on behalf of github Dec 24, 2025

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Dec 24, 2025
@dependabot dependabot Bot deleted the dependabot/npm_and_yarn/npm-dependencies-minor-8c612aee8f branch December 24, 2025 10:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants