Skip to content

chore(deps): Bump the dependencies-angular group across 1 directory with 12 updates #1319

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 2, 2025

Bumps the dependencies-angular group with 12 updates in the /springwolf-ui directory:

Package From To
@angular/animations 19.2.12 20.0.0
@angular/cdk 19.2.17 20.0.1
@angular/common 19.2.12 20.0.0
@angular/compiler 19.2.12 20.0.0
@angular/core 19.2.12 20.0.0
@angular/material 19.2.17 20.0.1
@angular/platform-browser 19.2.12 20.0.0
@angular/platform-browser-dynamic 19.2.12 20.0.0
@angular/router 19.2.12 20.0.0
@angular/build 19.2.13 20.0.0
@angular/cli 19.2.13 20.0.0
@angular/compiler-cli 19.2.12 20.0.0

Updates @angular/animations from 19.2.12 to 20.0.0

Release notes

Sourced from @​angular/animations's releases.

20.0.0

Blog post: https://blog.angular.dev/announcing-angular-v20-b5c9c06cf301

common

Commit Description
feat - 2e5362a469 accept undefined inputs in NgTemplateOutlet (#61404)
feat - b7d3f3dbfc Allow passing ScrollOptions to ViewportScroller (#61002)
feat - 74cceba587 throw error for suspicious date patterns (#59798)
fix - 255c79e048 cleanup updateLatestValue if view is destroyed before promise resolves (#58041)
fix - 739cadae62 Handle errors in async pipe subscriptions (#60057)
fix - cbbea70fa3 issue a warning instead of an error when NgOptimizedImage exceeds the preload limit (#60879)
fix - fc4a56d5c5 rename httpResource function in factory (#60022)
fix - 785a1110e6 resolve host binding type issues (#60481)

compiler

Commit Description
feat - 7a971766dc add extended diagnostic for uninvoked track function on @for blocks (#60495)
feat - f2d5cf7edd support exponentiation operator in templates (#59894)
feat - 51b8ff23ce support tagged template literals in expressions (#59947)
feat - 1b8e7ab9fe support the in keyword in Binary expression (#58432)
feat - 0361c2d81f support void operator in templates (#59894)
fix - 8b990a31c3 error if rawText isn't estimated correctly (#60529)
fix - 4fe489f1b4 exponentiation should be right-to-left associative (#60101)
fix - ef1fd137a9 incorrect spans for template literals (#60323)
fix - e0d378d20e incorrectly handling let declarations inside i18n (#60512)
fix - b70ad3c4e6 proper handling of typeof, void in RecursiveAstVisitor (#60101)
fix - e25e6c95a2 remove TypeScript from linker (#61635)
perf - 768239a89c reduce allocations for let declarations only used in the same view (#60512)

compiler-cli

Commit Description
feat - bec1610da2 add extended diagnostic for invalid nullish coalescing (#60279)
feat - c889382a20 detect missing structural directive imports (#59443)
feat - 1971e57a45 support type checking of host bindings (#60267)
fix - 9ec9c7e1b8 avoid fatal diagnostics for invalid module schemas (#61220)
fix - a1cacc5b17 avoid fatal diagnostics for missing template files (#58673)
fix - 1e6faad479 correctly parse event name in HostListener (#60561)
fix - ffb19e64f1 preserve required parens for nullish coalescing (#60060)
fix - 7c9b4892e9 preserve required parens in exponentiation expressions (#60101)
fix - 7e03af898e set correct target when type checking events (#60561)
fix - 2d51a203dc wrong event name for host listener decorators (#60460)

core

Commit Description
feat - 22d3f0562c add hook for producer creation side effects (#60333)
feat - fe57332fc5 add input binding support to dynamically-created components (#60137)
feat - 65adb3024d Add provider which reports unhandled errors on window to ErrorHandler (#60704)
feat - b154fb3911 add support for two-way bindings on dynamically-created components (#60342)
feat - 82aa2c1a52 add the ability to apply directives to dynamically-created components (#60137)

... (truncated)

Changelog

Sourced from @​angular/animations's changelog.

20.0.0 (2025-05-28)

Blog post: https://blog.angular.dev/announcing-angular-v20-b5c9c06cf301

Breaking Changes

common

  • Using the Y formatter (week-numbering year) without also including w (week number) is now detected as suspicious date pattern, as y is typically intended.
  • AsyncPipe now directly catches unhandled errors in subscriptions and promises and reports them to the application's ErrorHandler. For Zone-based applications, these errors would have been caught by ZoneJS and reported to ErrorHandler so the result is generally the same. The change to the exact mechanism for reporting can result in differences in test environments that will require test updates.

compiler

  • 'in' in an expression now refers to the operator

  • void in an expression now refers to the operator

    Previously an expression in the template like {{void}} referred to a property on the component class. After this change it now refers to the void operator, which would make the above example invalid. If you have existing expressions that need to refer to a property named void, change the expression to use this.void instead: {{this.void}}.

core

  • TypeScript versions less than 5.8 are no longer supported.

  • the TestBed.flushEffects() was removed - use the TestBed.tick() instead.

  • provideExperimentalCheckNoChangesForDebug has several breaking changes:

    • It is renamed to provideCheckNoChangesConfig
    • The behavior applies to all checkNoChanges runs
    • The useNgZoneOnStable option is removed. This wasn't found to be generally more useful than interval
  • provideExperimentalZonelessChangeDetection is renamed to provideZonelessChangeDetection as it is now "Developer Preview" rather than "Experimental".

    • InjectFlags has been removed.
    • inject no longer accepts InjectFlags.
    • Injector.get no longer accepts InjectFlags.
    • EnvironmentInjector.get no longer accepts InjectFlags.
    • TestBed.get no longer accepts InjectFlags.
    • TestBed.inject no longer accepts InjectFlags.
    • TestBed.get has been removed. Use TestBed.inject instead.
  • afterRender was renamed to afterEveryRender.

    • Angular no longer supports Node.js v18.
    • Node.js versions 22.0 to 22.10 are also no longer supported.

    Before upgrading to Angular v20, ensure the Node.js version is at least 20.11.1. For the full list of supported versions, visit: https://angular.dev/reference/versions

  • PendingTasks.run no longer returns the result of the

... (truncated)

Commits
  • 30e0812 fix(core): update min Node.js support to 20.19, 22.12, and 24.0 (#61500)
  • 3433021 build: move private testing helpers outside platform-browser/testing (#61476)
  • 6f74458 build: migrate animations to use rules_js based toolchain (#61479)
  • bc830ce refactor(animations): mark non-default new expressions as pure (#61452)
  • 051d90a build: remove irrelevant madge circular deps tests (#61197)
  • 4b365c7 docs: fix non-working link (#61131)
  • 9793693 refactor: add Node.js 24 as supported version (#61142)
  • 8f803aa build: Run browsers tests without platform-browser-dynamic (#60937) (#61060)
  • 867f389 Revert "build: Run browsers tests without platform-browser-dynamic (#60937)...
  • b896ca8 build: Run browsers tests without platform-browser-dynamic (#60937)
  • Additional commits viewable in compare view

Updates @angular/cdk from 19.2.17 to 20.0.1

Release notes

Sourced from @​angular/cdk's releases.

20.0.1

material

Commit Description
fix - ecd17ad75 button: add token for icon button shape (#31223)
fix - 20fa71807 schematics: filter paths when renaming tokens (#31249)

20.0.0

cdk

Commit Description
feat - 06821d85a dialog: add closePredicate option
feat - cf619601a drag-drop: introduce resetToBoundary (#30436)
fix - 77c8534ff accordion: resolve changed after checked error
fix - 1167d0638 collections: breaking changes for v20
fix - 79e887219 dialog: breaking changes for v20
fix - a2ab84da1 dialog: provide proper shaped Directionality (#30898)
fix - b3e516f2d drag-drop: breaking changes for v20
fix - 69eedd75f drag-drop: incorrect type DragConstrainPosition (#30510)
fix - f9973ee23 overlay: use MutationObserver to detach overlay (#30703)
fix - 11599f808 portal: remove deprecated symbols (#30584)
fix - 87501e866 schematics: support project index file discovery for object-form and default (#30967)
fix - 8078efc21 table: breaking changes for v20
fix - 0f48b04dd table: move out unused style scheduler (#30963)
fix - 6ffe9c748 table: remove private symbols from public API (#30956)
perf - 08f4acfef overlay: add tree-shakeable alternatives for overlay APIs (#30904)

material

Commit Description
feat - fb81ab4f2 button: add support for tonal button (#30638)
feat - e79f60558 button: allow appearance to be set dynamically
feat - 663585a1c card: support filled variant (#29868)
feat - 82f0fa6fa core: handle prefers-reduced-motion automatically (#30796)
feat - 3daa36030 core: introduce custom token for controlling animations (#30749)
feat - 764a1ccd1 dialog: add closePredicate option
fix - 097f49d90 autocomplete: allow overlay backdrop by setting hasBackdrop option (#30631)
fix - 7d360ac77 button-toggle: changed after checked error when updating tabindex (#31172)
fix - 2c7199c02 button: align harness with new terminology
fix - 6a5943d8b button: combine MatButton and MatAnchor (#30492)
fix - 3aecb3521 button: tonal touch target token transgression (#30688)
fix - 77d6b69e7 checkbox: breaking changes for v20
fix - 907815dc5 checkbox: hardcode token renames (#30752)
fix - f01ac6e9c checkbox: resolve change after checked error
fix - aba4c4437 chips: chip input not showing placeholder (#30664)
fix - 33795a1a1 chips: implement disabledInteractive in chip input (#30665)
fix - 92bcc67c2 core: include density tokens in system theme (#30845)
fix - 5bc01c398 datepicker: resolve change after checked errors
fix - 227e83d24 dialog: breaking changes for v20
fix - a5aade2df form-field: preserve aria-describedby set externally across all form controls (#30699)
fix - ec538b598 form-field: use ResizeObserver for label offset calculation (#30702)

... (truncated)

Changelog

Sourced from @​angular/cdk's changelog.

20.0.1 "sulfur-sandpaper" (2025-05-28)

material

Commit Type Description
ecd17ad75 fix button: add token for icon button shape (#31223)
20fa71807 fix schematics: filter paths when renaming tokens (#31249)

20.0.0 "calcium-carrot" (2025-05-28)

Breaking Changes

cdk

    • SelectionModel.clear now returns a boolean.
    • SelectionModel.deselect now returns a boolean.
    • SelectionModel.select now returns a boolean.
    • SelectionModel.setSelection now returns a boolean.
    • SelectionModel.toggle now returns a boolean.
    • DIALOG_SCROLL_STRATEGY_PROVIDER has been removed.
    • DIALOG_SCROLL_STRATEGY_PROVIDER_FACTORY has been removed.
    • DragDropRegistry is no longer generic.
    • DragDropRegistry.scroll has been removed. Use the scrolled method instead.
    • DomPortalHost has been removed. Use DomPortalOutlet instead.
    • PortalInjector has been removed. Use Injector.create instead.
    • PortalHost has been removed. Use PortalOutlet instead.
    • BasePortalHost has been removed. Use BasePortalOutlet instead.
    • Constructor symbol has been removed.
    • CanStickCtor symbol has been removed.
    • mixinHasStickyInput has been removed. Implement the CanStick interface instead.
    • CanStick has been removed.
    • CDK_TABLE_TEMPLATE has been removed.
    • StickyDirection has been removed.
    • StickyStyler has been removed.

material

    • ButtonVariant which is returned by MatButtonHarness.getVariant no longer includes the appearance of the button. Use MatButtonHarness.getAppearance instead.
  • tabindex values set as [attr.tabindex] set on a Material button might not work as expected. Use tabindex for static values, or [tabindex]/[tabIndex] for dynamic ones.
    • MAT_CHECKBOX_REQUIRED_VALIDATOR has been removed.
    • MAT_CHECKBOX_VALUE_ACCESSOR has been removed.
    • MatCheckboxRequiredValidator has been removed.
    • _MatCheckboxRequiredValidatorModule has been removed.
    • MAT_DIALOG_SCROLL_STRATEGY_PROVIDER has been removed.
    • MAT_DIALOG_SCROLL_STRATEGY_PROVIDER_FACTORY has been removed.
    • matSelectAnimations.transformPanelWrap has been removed.
    • MAT_SLIDE_TOGGLE_REQUIRED_VALIDATOR has been removed.
    • MAT_SLIDE_TOGGLE_VALUE_ACCESSOR has been removed.
    • MatSlideToggleRequiredValidator has been removed.
    • _MatSlideToggleRequiredValidatorModule has been removed.

multiple

    • DialogConfig.componentFactoryResolver has been removed.
    • The constructor of DomPortalOutlet has changed.

... (truncated)

Commits
  • e0a85a0 release: cut the v20.0.1 release
  • 20fa718 fix(material/schematics): filter paths when renaming tokens (#31249)
  • ecd17ad fix(material/button): add token for icon button shape (#31223)
  • 033028b release: cut the v20.0.0 release
  • babf577 Revert "release: cut the v20.0.0 release" (#31244)
  • 063b7e9 release: cut the v20.0.0 release
  • 7150ac7 build: update to Angular v20 final (#31241) (#31242)
  • fe66110 docs: update contributing guidelines to reference TypeScript style guide (#31...
  • 875d85c build: enforce that all components are standalone during CI
  • 3627d12 test(multiple): switch remaining tests to standalone
  • Additional commits viewable in compare view

Updates @angular/common from 19.2.12 to 20.0.0

Release notes

Sourced from @​angular/common's releases.

20.0.0

Blog post: https://blog.angular.dev/announcing-angular-v20-b5c9c06cf301

common

Commit Description
feat - 2e5362a469 accept undefined inputs in NgTemplateOutlet (#61404)
feat - b7d3f3dbfc Allow passing ScrollOptions to ViewportScroller (#61002)
feat - 74cceba587 throw error for suspicious date patterns (#59798)
fix - 255c79e048 cleanup updateLatestValue if view is destroyed before promise resolves (#58041)
fix - 739cadae62 Handle errors in async pipe subscriptions (#60057)
fix - cbbea70fa3 issue a warning instead of an error when NgOptimizedImage exceeds the preload limit (#60879)
fix - fc4a56d5c5 rename httpResource function in factory (#60022)
fix - 785a1110e6 resolve host binding type issues (#60481)

compiler

Commit Description
feat - 7a971766dc add extended diagnostic for uninvoked track function on @for blocks (#60495)
feat - f2d5cf7edd support exponentiation operator in templates (#59894)
feat - 51b8ff23ce support tagged template literals in expressions (#59947)
feat - 1b8e7ab9fe support the in keyword in Binary expression (#58432)
feat - 0361c2d81f support void operator in templates (#59894)
fix - 8b990a31c3 error if rawText isn't estimated correctly (#60529)
fix - 4fe489f1b4 exponentiation should be right-to-left associative (#60101)
fix - ef1fd137a9 incorrect spans for template literals (#60323)
fix - e0d378d20e incorrectly handling let declarations inside i18n (#60512)
fix - b70ad3c4e6 proper handling of typeof, void in RecursiveAstVisitor (#60101)
fix - e25e6c95a2 remove TypeScript from linker (#61635)
perf - 768239a89c reduce allocations for let declarations only used in the same view (#60512)

compiler-cli

Commit Description
feat - bec1610da2 add extended diagnostic for invalid nullish coalescing (#60279)
feat - c889382a20 detect missing structural directive imports (#59443)
feat - 1971e57a45 support type checking of host bindings (#60267)
fix - 9ec9c7e1b8 avoid fatal diagnostics for invalid module schemas (#61220)
fix - a1cacc5b17 avoid fatal diagnostics for missing template files (#58673)
fix - 1e6faad479 correctly parse event name in HostListener (#60561)
fix - ffb19e64f1 preserve required parens for nullish coalescing (#60060)
fix - 7c9b4892e9 preserve required parens in exponentiation expressions (#60101)
fix - 7e03af898e set correct target when type checking events (#60561)
fix - 2d51a203dc wrong event name for host listener decorators (#60460)

core

Commit Description
feat - 22d3f0562c add hook for producer creation side effects (#60333)
feat - fe57332fc5 add input binding support to dynamically-created components (#60137)
feat - 65adb3024d Add provider which reports unhandled errors on window to ErrorHandler (#60704)
feat - b154fb3911 add support for two-way bindings on dynamically-created components (#60342)
feat - 82aa2c1a52 add the ability to apply directives to dynamically-created components (#60137)

... (truncated)

Changelog

Sourced from @​angular/common's changelog.

20.0.0 (2025-05-28)

Blog post: https://blog.angular.dev/announcing-angular-v20-b5c9c06cf301

Breaking Changes

common

  • Using the Y formatter (week-numbering year) without also including w (week number) is now detected as suspicious date pattern, as y is typically intended.
  • AsyncPipe now directly catches unhandled errors in subscriptions and promises and reports them to the application's ErrorHandler. For Zone-based applications, these errors would have been caught by ZoneJS and reported to ErrorHandler so the result is generally the same. The change to the exact mechanism for reporting can result in differences in test environments that will require test updates.

compiler

  • 'in' in an expression now refers to the operator

  • void in an expression now refers to the operator

    Previously an expression in the template like {{void}} referred to a property on the component class. After this change it now refers to the void operator, which would make the above example invalid. If you have existing expressions that need to refer to a property named void, change the expression to use this.void instead: {{this.void}}.

core

  • TypeScript versions less than 5.8 are no longer supported.

  • the TestBed.flushEffects() was removed - use the TestBed.tick() instead.

  • provideExperimentalCheckNoChangesForDebug has several breaking changes:

    • It is renamed to provideCheckNoChangesConfig
    • The behavior applies to all checkNoChanges runs
    • The useNgZoneOnStable option is removed. This wasn't found to be generally more useful than interval
  • provideExperimentalZonelessChangeDetection is renamed to provideZonelessChangeDetection as it is now "Developer Preview" rather than "Experimental".

    • InjectFlags has been removed.
    • inject no longer accepts InjectFlags.
    • Injector.get no longer accepts InjectFlags.
    • EnvironmentInjector.get no longer accepts InjectFlags.
    • TestBed.get no longer accepts InjectFlags.
    • TestBed.inject no longer accepts InjectFlags.
    • TestBed.get has been removed. Use TestBed.inject instead.
  • afterRender was renamed to afterEveryRender.

    • Angular no longer supports Node.js v18.
    • Node.js versions 22.0 to 22.10 are also no longer supported.

    Before upgrading to Angular v20, ensure the Node.js version is at least 20.11.1. For the full list of supported versions, visit: https://angular.dev/reference/versions

  • PendingTasks.run no longer returns the result of the

... (truncated)

Commits
  • 308404e build: update common's locales to use rules_js (#61629)
  • 2e5362a feat(common): accept undefined inputs in NgTemplateOutlet (#61404)
  • aa7190d fix(common): avoid injecting ApplicationRef in FetchBackend (#61649)
  • a89f1cf fix(core): narrow error type for resources API (#61441)
  • d62379b fix(core): move reload method from Resource to WritableResource (#61441)
  • 7efb338 fix(core): cleanup rxResource abort listener (#58306)
  • af7881a fix(common): cancel reader when app is destroyed (#61528)
  • abdade9 refactor(common): drop httpResource error message (#61570)
  • 88c70eb refactor(platform-browser): replace platform-browser-dynamic with `platfor...
  • 15e16aa refactor(core): drop injection context assertion in production (#61564)
  • Additional commits viewable in compare view

Updates @angular/compiler from 19.2.12 to 20.0.0

Release notes

Sourced from @​angular/compiler's releases.

20.0.0

Blog post: https://blog.angular.dev/announcing-angular-v20-b5c9c06cf301

common

Commit Description
feat - 2e5362a469 accept undefined inputs in NgTemplateOutlet (#61404)
feat - b7d3f3dbfc Allow passing ScrollOptions to ViewportScroller (#61002)
feat - 74cceba587 throw error for suspicious date patterns (#59798)
fix - 255c79e048 cleanup updateLatestValue if view is destroyed before promise resolves (#58041)
fix - 739cadae62 Handle errors in async pipe subscriptions (#60057)
fix - cbbea70fa3 issue a warning instead of an error when NgOptimizedImage exceeds the preload limit (#60879)
fix - fc4a56d5c5 rename httpResource fun...

Description has been truncated

…ith 12 updates

Bumps the dependencies-angular group with 12 updates in the /springwolf-ui directory:

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



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

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

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

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

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

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

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

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

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

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

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

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

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jun 2, 2025
Copy link

netlify bot commented Jun 2, 2025

Deploy Preview for springwolf-ui failed.

Name Link
🔨 Latest commit 6205cb5
🔍 Latest deploy log https://app.netlify.com/projects/springwolf-ui/deploys/683e283e55df1e00085b7707

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