Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the frontend-angular group in /interfaces/IBF-dashboard with 21 updates:

Package From To
@angular/common 19.2.8 21.0.6
@angular/core 19.2.8 21.0.6
@angular/forms 19.2.8 21.0.6
@angular/platform-browser 19.2.8 21.0.6
@angular/platform-browser-dynamic 19.2.8 21.0.6
@angular/router 19.2.8 21.0.6
@angular/service-worker 19.2.8 21.0.6
@bluehalo/ngx-leaflet 19.0.0 21.0.0
@bluehalo/ngx-leaflet-markercluster 19.0.0 20.0.3
zone.js 0.15.0 0.16.0
@angular-devkit/build-angular 19.2.17 21.0.4
@angular-eslint/builder 19.5.0 21.1.0
@angular-eslint/eslint-plugin 19.5.0 21.1.0
@angular-eslint/eslint-plugin-template 19.5.0 21.1.0
@angular-eslint/schematics 19.5.0 21.1.0
@angular-eslint/template-parser 19.5.0 21.1.0
@angular/cli 19.2.8 21.0.4
@angular/compiler 19.2.8 21.0.6
@angular/compiler-cli 19.2.8 21.0.6
@angular/language-service 19.2.8 21.0.6
angular-eslint 19.5.0 21.1.0

Updates @angular/common from 19.2.8 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/core from 19.2.8 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 19.2.8 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 19.2.8 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 19.2.8 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 19.2.8 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/service-worker from 19.2.8 to 21.0.6

Release notes

Sourced from @​angular/service-worker'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/service-worker'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
  • 288238a refactor(core): correct all typeof ngDevMode comparison patterns introduced...
  • 35dc3ec refactor(common): update examples to align with Angular best practices
  • e5b0a97 Revert "feat(service-worker): notify clients about version failures (#62718)"
  • c72efd6 docs: improve discoverability in service worker documentation
  • 3bed9f0 build: format md files
  • e63ea3f docs: update service worker documentation with additional references (#64353)
  • c50d659 refactor(core): protect InjectionToken usage of ngDevMode (#63875)
  • 8f59295 refactor(core): remove unnecessary deps arrays (#63823)
  • 1f4c5f7 refactor(bazel): reduce build deps (#63348)
  • 2fcafb6 build: rename defaults2.bzl to defaults.bzl (#63383)
  • Additional commits viewable in compare view

Updates @bluehalo/ngx-leaflet from 19.0.0 to 21.0.0

Changelog

Sourced from @​bluehalo/ngx-leaflet's changelog.

Changelog

21.0

Support for Angular.io 21.

One note for v21 - Angular moved to Zoneless detection by default (https://angular.dev/guide/zoneless). This has implications, particularly for this library. For example, events are emitted outside of the change detection zone. You may need to make some changes to your application if you rely on the events generated by the maps. See the migration guide for details (https://angular.dev/update-guide?v=20.0-21.0&l=1).

20.0

Support for Angular.io 20.

19.0

Support for Angular.io 19.

18.0

Support for Angular.io 18.

Also, we are deprecating the @​asymmetrik namespace. This will be the last version of this package we publish under that namespace. This and future versions will be under the @​bluehalo namespace. 🫗

17.0

Support for Angular.io 17. 🎉

16.0

Support for Angular.io 16.

15.0

Support for Angular.io 15. 🎉

14.0

Support for Angular.io 14. 🎉

13.0

Support for Angular.io 13. 🎉 We skipped a bunch of versions to get to the Ivy built, Angular-CLI based latest. This was a b...

Description has been truncated

Bumps the frontend-angular group in /interfaces/IBF-dashboard with 21 updates:

| Package | From | To |
| --- | --- | --- |
| [@angular/common](https://github.com/angular/angular/tree/HEAD/packages/common) | `19.2.8` | `21.0.6` |
| [@angular/core](https://github.com/angular/angular/tree/HEAD/packages/core) | `19.2.8` | `21.0.6` |
| [@angular/forms](https://github.com/angular/angular/tree/HEAD/packages/forms) | `19.2.8` | `21.0.6` |
| [@angular/platform-browser](https://github.com/angular/angular/tree/HEAD/packages/platform-browser) | `19.2.8` | `21.0.6` |
| [@angular/platform-browser-dynamic](https://github.com/angular/angular/tree/HEAD/packages/platform-browser-dynamic) | `19.2.8` | `21.0.6` |
| [@angular/router](https://github.com/angular/angular/tree/HEAD/packages/router) | `19.2.8` | `21.0.6` |
| [@angular/service-worker](https://github.com/angular/angular/tree/HEAD/packages/service-worker) | `19.2.8` | `21.0.6` |
| [@bluehalo/ngx-leaflet](https://github.com/bluehalo/ngx-leaflet) | `19.0.0` | `21.0.0` |
| [@bluehalo/ngx-leaflet-markercluster](https://github.com/bluehalo/ngx-leaflet-markercluster) | `19.0.0` | `20.0.3` |
| [zone.js](https://github.com/angular/angular/tree/HEAD/packages/zone.js) | `0.15.0` | `0.16.0` |
| [@angular-devkit/build-angular](https://github.com/angular/angular-cli) | `19.2.17` | `21.0.4` |
| [@angular-eslint/builder](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/builder) | `19.5.0` | `21.1.0` |
| [@angular-eslint/eslint-plugin](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/eslint-plugin) | `19.5.0` | `21.1.0` |
| [@angular-eslint/eslint-plugin-template](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/eslint-plugin-template) | `19.5.0` | `21.1.0` |
| [@angular-eslint/schematics](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/schematics) | `19.5.0` | `21.1.0` |
| [@angular-eslint/template-parser](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/template-parser) | `19.5.0` | `21.1.0` |
| [@angular/cli](https://github.com/angular/angular-cli) | `19.2.8` | `21.0.4` |
| [@angular/compiler](https://github.com/angular/angular/tree/HEAD/packages/compiler) | `19.2.8` | `21.0.6` |
| [@angular/compiler-cli](https://github.com/angular/angular/tree/HEAD/packages/compiler-cli) | `19.2.8` | `21.0.6` |
| [@angular/language-service](https://github.com/angular/angular/tree/HEAD/packages/language-service) | `19.2.8` | `21.0.6` |
| [angular-eslint](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/angular-eslint) | `19.5.0` | `21.1.0` |


Updates `@angular/common` from 19.2.8 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/core` from 19.2.8 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 19.2.8 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 19.2.8 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 19.2.8 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 19.2.8 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/service-worker` from 19.2.8 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/service-worker)

Updates `@bluehalo/ngx-leaflet` from 19.0.0 to 21.0.0
- [Changelog](https://github.com/bluehalo/ngx-leaflet/blob/master/CHANGES.md)
- [Commits](bluehalo/ngx-leaflet@19.0.0...21.0.0)

Updates `@bluehalo/ngx-leaflet-markercluster` from 19.0.0 to 20.0.3
- [Changelog](https://github.com/bluehalo/ngx-leaflet-markercluster/blob/master/CHANGES.md)
- [Commits](bluehalo/ngx-leaflet-markercluster@19.0.0...20.0.3)

Updates `zone.js` from 0.15.0 to 0.16.0
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/packages/zone.js/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/zone.js-0.16.0/packages/zone.js)

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

Updates `@angular-eslint/builder` from 19.5.0 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 19.5.0 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 19.5.0 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 19.5.0 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 19.5.0 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/cli` from 19.2.8 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@19.2.8...v21.0.4)

Updates `@angular/compiler` from 19.2.8 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/compiler-cli` from 19.2.8 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 `@angular/language-service` from 19.2.8 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/language-service)

Updates `angular-eslint` from 19.5.0 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/angular-eslint/CHANGELOG.md)
- [Commits](https://github.com/angular-eslint/angular-eslint/commits/v21.1.0/packages/angular-eslint)

---
updated-dependencies:
- dependency-name: "@angular/common"
  dependency-version: 21.0.6
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: frontend-angular
- dependency-name: "@angular/core"
  dependency-version: 21.0.6
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: frontend-angular
- dependency-name: "@angular/forms"
  dependency-version: 21.0.6
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: frontend-angular
- dependency-name: "@angular/platform-browser"
  dependency-version: 21.0.6
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: frontend-angular
- dependency-name: "@angular/platform-browser-dynamic"
  dependency-version: 21.0.6
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: frontend-angular
- dependency-name: "@angular/router"
  dependency-version: 21.0.6
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: frontend-angular
- dependency-name: "@angular/service-worker"
  dependency-version: 21.0.6
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: frontend-angular
- dependency-name: "@bluehalo/ngx-leaflet"
  dependency-version: 21.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: frontend-angular
- dependency-name: "@bluehalo/ngx-leaflet-markercluster"
  dependency-version: 20.0.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: frontend-angular
- dependency-name: zone.js
  dependency-version: 0.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: frontend-angular
- dependency-name: "@angular-devkit/build-angular"
  dependency-version: 21.0.4
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: frontend-angular
- dependency-name: "@angular-eslint/builder"
  dependency-version: 21.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: frontend-angular
- dependency-name: "@angular-eslint/eslint-plugin"
  dependency-version: 21.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: frontend-angular
- dependency-name: "@angular-eslint/eslint-plugin-template"
  dependency-version: 21.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: frontend-angular
- dependency-name: "@angular-eslint/schematics"
  dependency-version: 21.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: frontend-angular
- dependency-name: "@angular-eslint/template-parser"
  dependency-version: 21.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: frontend-angular
- dependency-name: "@angular/cli"
  dependency-version: 21.0.4
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: frontend-angular
- dependency-name: "@angular/compiler"
  dependency-version: 21.0.6
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: frontend-angular
- dependency-name: "@angular/compiler-cli"
  dependency-version: 21.0.6
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: frontend-angular
- dependency-name: "@angular/language-service"
  dependency-version: 21.0.6
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: frontend-angular
- dependency-name: angular-eslint
  dependency-version: 21.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: frontend-angular
...

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 22, 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.

1 participant