Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 22, 2025

Bumps @angular/common, @angular/platform-browser, @angular/platform-browser-dynamic, @angular/router and @angular/forms. These dependencies needed to be updated together.
Updates @angular/common from 18.2.13 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
  • 20474d3 fix(http): enable XSRF protection for same-origin absolute URLs
  • 3240d85 fix(http): prevent XSRF token leakage to protocol-relative URLs
  • 6de8926 refactor(core): add debug name to resource (#64172)
  • 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
  • Additional commits viewable in compare view

Updates @angular/platform-browser from 18.2.13 to 21.0.6

Release notes

Sourced from @​angular/platform-browser'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/platform-browser'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
  • 8d92f05 refactor(platform-browser): remove unused platformIsServer flag from renderer
  • 288238a refactor(core): correct all typeof ngDevMode comparison patterns introduced...
  • f550f4a docs: ExperimentalIsolatedShadowDom mentions
  • 6213cbf refactor(core): rename ExperimentalIsolatedShadowDom to IsolatedShadowDom
  • 8ab0847 refactor(core): mark VERSION as @__PURE__ for better tree-shaking
  • 593f902 refactor(platform-browser): remove unused Platform ID dependency from DomRend...
  • 3bed9f0 build: format md files
  • 33f8339 refactor(platform-browser): remove redundant providedIn: 'root' from inject...
  • a4fe078 refactor(common): remove unused import (#64699)
  • Additional commits viewable in compare view

Updates @angular/platform-browser-dynamic from 18.2.13 to 21.0.6

Release notes

Sourced from @​angular/platform-browser-dynamic'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/platform-browser-dynamic'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
  • 8ab0847 refactor(core): mark VERSION as @__PURE__ for better tree-shaking
  • 3bed9f0 build: format md files
  • c357650 refactor(core): Update tests for zoneless by default (#63668)
  • 2fcafb6 build: rename defaults2.bzl to defaults.bzl (#63383)
  • fa8d8b8 build: migrate all npm packages to use new rules_js based npm_package rule (#...
  • cbc258e build: remove ts_project_interop infrastructure (#62908)
  • 793ff35 build: move http_server and generate_api_docs into defaults2.bzl (#62878)
  • 8bf97d1 build: remove all usages of the interop_deps attr for ts_project and ng_proje...
  • 23d5877 build: migrate to new toolchain usage for api goldens (#62688)
  • b848590 build: migrate to use web test runner rules (#62292)
  • Additional commits viewable in compare view

Updates @angular/router from 18.2.13 to 21.0.6

Release notes

Sourced from @​angular/router'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/router'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
  • 288238a refactor(core): correct all typeof ngDevMode comparison patterns introduced...
  • 48b89f9 fix(router): handle errors from view transition finished promise
  • c2a8934 Revert "refactor(router): compress synchronous end to router navigation to si...
  • 7136273 refactor(router): compress synchronous end to router navigation to single ope...
  • efe4b72 docs: fix documentation link for currentNavigation method
  • a62162d docs: Update router docs to add references and components input fixed syntaxis
  • 9d6b869 docs(docs-infra): fix missing syntax highlighting
  • 35dc3ec refactor(common): update examples to align with Angular best practices
  • 9950165 docs: adds guide references to router APIs
  • Additional commits viewable in compare view

Updates @angular/forms from 18.2.13 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

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

@dependabot dependabot bot added dependencies One or more dependencies are being bumped javascript Pull requests that update Javascript code labels Dec 22, 2025
@dependabot dependabot bot requested a review from a team as a code owner December 22, 2025 08:52
@dependabot dependabot bot added dependencies One or more dependencies are being bumped javascript Pull requests that update Javascript code labels Dec 22, 2025
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/multi-c8c985e89b branch 3 times, most recently from 3db4814 to 0a2a8c3 Compare December 22, 2025 15:08
…r/platform-browser-dynamic, @angular/router and @angular/forms

Bumps [@angular/common](https://github.com/angular/angular/tree/HEAD/packages/common), [@angular/platform-browser](https://github.com/angular/angular/tree/HEAD/packages/platform-browser), [@angular/platform-browser-dynamic](https://github.com/angular/angular/tree/HEAD/packages/platform-browser-dynamic), [@angular/router](https://github.com/angular/angular/tree/HEAD/packages/router) and [@angular/forms](https://github.com/angular/angular/tree/HEAD/packages/forms). These dependencies needed to be updated together.

Updates `@angular/common` from 18.2.13 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/platform-browser` from 18.2.13 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 18.2.13 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 18.2.13 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/forms` from 18.2.13 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)

---
updated-dependencies:
- dependency-name: "@angular/common"
  dependency-version: 21.0.6
  dependency-type: direct:production
- dependency-name: "@angular/platform-browser"
  dependency-version: 21.0.6
  dependency-type: direct:production
- dependency-name: "@angular/platform-browser-dynamic"
  dependency-version: 21.0.6
  dependency-type: direct:production
- dependency-name: "@angular/router"
  dependency-version: 21.0.6
  dependency-type: direct:production
- dependency-name: "@angular/forms"
  dependency-version: 21.0.6
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/multi-c8c985e89b branch from 0a2a8c3 to 99761a7 Compare December 23, 2025 04:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies One or more dependencies are being bumped javascript Pull requests that update Javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant