Skip to content

Conversation

@dependabot
Copy link

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

Bumps @angular/common, @angular/fire, @angular/forms, @angular/platform-browser, @angular/platform-browser-dynamic, @angular/platform-server, @angular/router, @angular/ssr, ngx-markdown and @angular-devkit/build-angular. These dependencies needed to be updated together.
Updates @angular/common from 18.2.1 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/fire from 18.0.1 to 20.0.1

Release notes

Sourced from @​angular/fire's releases.

20.0.1

What's Changed

New Contributors

Full Changelog: angular/angularfire@20.0.0...20.0.1

20.0.0

What's Changed

  • Peer on Angular v20
  • Peer on firebase-tools v14

Full Changelog: angular/angularfire@19.2.0...20.0.0

20.0.0-rc.0

What's Changed

  • Peer on Angular v20
  • Peer on firebase-tools v14

Full Changelog: angular/angularfire@19.2.0...20.0.0-rc.0

19.2.0

What's Changed

New Contributors

Full Changelog: angular/angularfire@19.1.0...19.2.0

19.1.0

What's Changed

New Contributors

Full Changelog: angular/angularfire@19.0.0...19.1.0

19.0.0

What's Changed

  • Single sample application—demonstrating the modular SDK in a Zoneless SSR application with code-splitting on @defer
  • Now logging zone warnings about instability when using AngularFire outside of an injection context
  • Added docs on application instability
  • Bumped Angular, Firebase, and other dependencies
  • Now bundling CLI dependencies

Added

... (truncated)

Commits

Updates @angular/forms from 18.2.1 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/platform-browser from 18.2.1 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.1 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/platform-server from 18.2.1 to 21.0.6

Release notes

Sourced from @​angular/platform-server'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-server'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
  • 53f752e build: update repository to use node 22.21.1 in bazel
  • 908b5a4 refactor: replace getDocument() with inject(DOCUMENT)
  • 8ab0847 refactor(core): mark VERSION as @__PURE__ for better tree-shaking
  • 3bed9f0 build: format md files
  • 1b5e2c8 refactor(platform-server): remove redundant providedIn: 'root' from injecti...
  • 062a696 refactor(platform-server): use URL constructor for robust parsing (#64494)
  • dd2f53b refactor(core): warning when hydration trigger is used without hydration b...
  • ad23764 feat(core): support IntersectionObserver options in viewport triggers (#64130)
  • f5b50ec refactor: clean up explicit standalone flags from tests (#63963)
  • Additional commits viewable in compare view

Updates @angular/router from 18.2.1 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/ssr from 18.2.21 to 21.0.4

Release notes

Sourced from @​angular/ssr's releases.

21.0.4

@​schematics/angular

Commit Description
fix - b671245b9 improve VS Code background compilation start/end detection
fix - 85a28dec7 remove inlineSources from library tsconfig template

@​angular/build

Commit Description
fix - deb4fff61 add browser condition to resolver for vitest
fix - 570ce8d3e allow non-prefixed requests when using SSR and base href
fix - 4dd3c1a32 conditionally manage Vitest UI option
fix - 4b8b7caec ensure tests run when compilation error is resolved
fix - bef4fcecb remove LmdbCacheStore export from private API

@​angular/ssr

Commit Description
fix - bb54747da add leading slash to well-known non-Angular URLs
fix - 0cfe2e749 propagate status code to redirect
fix - eadadb848 skip SSR processing for well-known non-Angular URLs like favicon.ico

21.0.3

@​angular-devkit/build-angular

Commit Description
fix - 5d85f416f conditionally provide Zone.js change detection in the built-in test main file

@​angular/build

Commit Description
fix - 778b4cffc Add custom middleware for to present an Angular-tailored message
fix - 9b02ab2ee Ensure disposal of close-javascript-transformer
fix - 0fc7d576e ensure locale base href retains leading slash (#32040)
fix - b141670a2 inject testing polyfills in Karma unit-test executor
fix - 88c18ce68 support NODE_EXTRA_CA_CERTS in SSR SSL plugin

21.0.2

@​angular/cli

Commit Description
fix - f1a7116cd update @modelcontextprotocol/sdk to v1.24.0

@​angular-devkit/schematics

Commit Description
fix - dc6d9469eDescription has been truncated

…gular/platform-browser, @angular/platform-browser-dynamic, @angular/platform-server, @angular/router, @angular/ssr, ngx-markdown and @angular-devkit/build-angular

Bumps [@angular/common](https://github.com/angular/angular/tree/HEAD/packages/common), [@angular/fire](https://github.com/angular/angularfire), [@angular/forms](https://github.com/angular/angular/tree/HEAD/packages/forms), [@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/platform-server](https://github.com/angular/angular/tree/HEAD/packages/platform-server), [@angular/router](https://github.com/angular/angular/tree/HEAD/packages/router), [@angular/ssr](https://github.com/angular/angular-cli), [ngx-markdown](https://github.com/jfcere/ngx-markdown) and [@angular-devkit/build-angular](https://github.com/angular/angular-cli). These dependencies needed to be updated together.

Updates `@angular/common` from 18.2.1 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/fire` from 18.0.1 to 20.0.1
- [Release notes](https://github.com/angular/angularfire/releases)
- [Commits](angular/angularfire@18.0.1...20.0.1)

Updates `@angular/forms` from 18.2.1 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/platform-browser` from 18.2.1 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.1 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/platform-server` from 18.2.1 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-server)

Updates `@angular/router` from 18.2.1 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/ssr` from 18.2.21 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@18.2.21...v21.0.4)

Updates `ngx-markdown` from 18.0.0 to 21.0.1
- [Release notes](https://github.com/jfcere/ngx-markdown/releases)
- [Commits](jfcere/ngx-markdown@v18.0.0...v21.0.1)

Updates `@angular-devkit/build-angular` from 18.2.1 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@18.2.1...v21.0.4)

---
updated-dependencies:
- dependency-name: "@angular/common"
  dependency-version: 21.0.6
  dependency-type: direct:production
- dependency-name: "@angular/fire"
  dependency-version: 20.0.1
  dependency-type: direct:production
- dependency-name: "@angular/forms"
  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/platform-server"
  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/ssr"
  dependency-version: 21.0.4
  dependency-type: direct:production
- dependency-name: ngx-markdown
  dependency-version: 21.0.1
  dependency-type: direct:production
- dependency-name: "@angular-devkit/build-angular"
  dependency-version: 21.0.4
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Dec 23, 2025
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