Skip to content

chore(deps): bump the angular-all-deps group across 1 directory with 13 updates #353

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: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 9, 2025

Bumps the angular-all-deps group with 13 updates in the /test/angular directory:

Package From To
@angular/animations 19.2.7 19.2.10
@angular/common 19.2.7 19.2.10
@angular/compiler 19.2.7 19.2.10
@angular/core 19.2.7 19.2.10
@angular/forms 19.2.7 19.2.10
@angular/platform-browser 19.2.7 19.2.10
@angular/platform-browser-dynamic 19.2.7 19.2.10
@angular/router 19.2.7 19.2.10
@angular-devkit/build-angular 19.2.8 19.2.11
@angular/cli 19.2.8 19.2.11
@angular/compiler-cli 19.2.7 19.2.10
@types/jasmine 5.1.7 5.1.8
jasmine-core 5.6.0 5.7.1

Updates @angular/animations from 19.2.7 to 19.2.10

Release notes

Sourced from @​angular/animations's releases.

19.2.10

common

Commit Description
fix - 89056a0356 cleanup updateLatestValue if view is destroyed before promise resolves (#61064)

core

Commit Description
fix - 4623b61448 missing useExisting providers throwing for optional calls (#61152)
fix - 400dbc5b89 properly handle app stabilization with defer blocks (#61056)

platform-server

Commit Description
fix - a6f0d5bc20 less aggressive ngServerMode cleanup (#61106)

19.2.9

core

Commit Description
fix - 946b844e0d async EventEmitter error should not prevent stability (#61028)
fix - dbb87026ca call DestroyRef on destroy callback if view is destroyed [patch] (#61061)
fix - 2e140a136a prevent stash listener conflicts [patch] (#61063)

19.2.8

forms

Commit Description
fix - ea4a211216 make NgForm emit FormSubmittedEvent and FormResetEvent (#60887)
Changelog

Sourced from @​angular/animations's changelog.

19.2.10 (2025-05-07)

common

Commit Type Description
89056a0356 fix cleanup updateLatestValue if view is destroyed before promise resolves (#61064)

core

Commit Type Description
4623b61448 fix missing useExisting providers throwing for optional calls (#61152)
400dbc5b89 fix properly handle app stabilization with defer blocks (#61056)

platform-server

Commit Type Description
a6f0d5bc20 fix less aggressive ngServerMode cleanup (#61106)

20.0.0-next.9 (2025-04-30)

Breaking Changes

core

  • 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
  • afterRender was renamed to afterEveryRender.

  • This commit deprecates ng-reflect-* attributes and updates the runtime to stop producing them by default. Please refactor application and test code to avoid relying on ng-reflect-* attributes.

    To enable a more seamless upgrade to v20, we've added the provideNgReflectAttributes() function (can be imported from the @angular/core package), which enables the mode in which Angular would be producing those attribites (in dev mode only). You can add the provideNgReflectAttributes() function to the list of providers within the bootstrap call.

common

Commit Type Description
b7d3f3dbfc feat Allow passing ScrollOptions to ViewportScroller (#61002)
fc4a56d5c5 fix rename httpResource function in factory (#60022)

compiler-cli

Commit Type Description
c889382a20 feat detect missing structural directive imports (#59443)

core

Commit Type Description
d5fd7349fb feat introduce TestBed.tick() (#60993)
e711f99d81 feat move provideExperimentalCheckNoChangesForDebug to provideCheckNoChangesConfig (#60906)
d8fbb909ce feat rename afterRender to afterEveryRender and stabilize (#60999)
8d82a39a60 fix async EventEmitter error should not prevent stability (#61028)
624be2ef0c fix prevent stash listener conflicts (#59635)

... (truncated)

Commits

Updates @angular/common from 19.2.7 to 19.2.10

Release notes

Sourced from @​angular/common's releases.

19.2.10

common

Commit Description
fix - 89056a0356 cleanup updateLatestValue if view is destroyed before promise resolves (#61064)

core

Commit Description
fix - 4623b61448 missing useExisting providers throwing for optional calls (#61152)
fix - 400dbc5b89 properly handle app stabilization with defer blocks (#61056)

platform-server

Commit Description
fix - a6f0d5bc20 less aggressive ngServerMode cleanup (#61106)

19.2.9

core

Commit Description
fix - 946b844e0d async EventEmitter error should not prevent stability (#61028)
fix - dbb87026ca call DestroyRef on destroy callback if view is destroyed [patch] (#61061)
fix - 2e140a136a prevent stash listener conflicts [patch] (#61063)

19.2.8

forms

Commit Description
fix - ea4a211216 make NgForm emit FormSubmittedEvent and FormResetEvent (#60887)
Changelog

Sourced from @​angular/common's changelog.

19.2.10 (2025-05-07)

common

Commit Type Description
89056a0356 fix cleanup updateLatestValue if view is destroyed before promise resolves (#61064)

core

Commit Type Description
4623b61448 fix missing useExisting providers throwing for optional calls (#61152)
400dbc5b89 fix properly handle app stabilization with defer blocks (#61056)

platform-server

Commit Type Description
a6f0d5bc20 fix less aggressive ngServerMode cleanup (#61106)

20.0.0-next.9 (2025-04-30)

Breaking Changes

core

  • 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
  • afterRender was renamed to afterEveryRender.

  • This commit deprecates ng-reflect-* attributes and updates the runtime to stop producing them by default. Please refactor application and test code to avoid relying on ng-reflect-* attributes.

    To enable a more seamless upgrade to v20, we've added the provideNgReflectAttributes() function (can be imported from the @angular/core package), which enables the mode in which Angular would be producing those attribites (in dev mode only). You can add the provideNgReflectAttributes() function to the list of providers within the bootstrap call.

common

Commit Type Description
b7d3f3dbfc feat Allow passing ScrollOptions to ViewportScroller (#61002)
fc4a56d5c5 fix rename httpResource function in factory (#60022)

compiler-cli

Commit Type Description
c889382a20 feat detect missing structural directive imports (#59443)

core

Commit Type Description
d5fd7349fb feat introduce TestBed.tick() (#60993)
e711f99d81 feat move provideExperimentalCheckNoChangesForDebug to provideCheckNoChangesConfig (#60906)
d8fbb909ce feat rename afterRender to afterEveryRender and stabilize (#60999)
8d82a39a60 fix async EventEmitter error should not prevent stability (#61028)
624be2ef0c fix prevent stash listener conflicts (#59635)

... (truncated)

Commits
  • 89056a0 fix(common): cleanup updateLatestValue if view is destroyed before promise ...
  • 5b77f93 refactor(common): drop platform checks in HttpXsrfCookieExtractor (#59810)
  • 9c4591c refactor(core): Update FakeNavigation to extract some Angular quirks (#60961)
  • See full diff in compare view

Updates @angular/compiler from 19.2.7 to 19.2.10

Release notes

Sourced from @​angular/compiler's releases.

19.2.10

common

Commit Description
fix - 89056a0356 cleanup updateLatestValue if view is destroyed before promise resolves (#61064)

core

Commit Description
fix - 4623b61448 missing useExisting providers throwing for optional calls (#61152)
fix - 400dbc5b89 properly handle app stabilization with defer blocks (#61056)

platform-server

Commit Description
fix - a6f0d5bc20 less aggressive ngServerMode cleanup (#61106)

19.2.9

core

Commit Description
fix - 946b844e0d async EventEmitter error should not prevent stability (#61028)
fix - dbb87026ca call DestroyRef on destroy callback if view is destroyed [patch] (#61061)
fix - 2e140a136a prevent stash listener conflicts [patch] (#61063)

19.2.8

forms

Commit Description
fix - ea4a211216 make NgForm emit FormSubmittedEvent and FormResetEvent (#60887)
Changelog

Sourced from @​angular/compiler's changelog.

19.2.10 (2025-05-07)

common

Commit Type Description
89056a0356 fix cleanup updateLatestValue if view is destroyed before promise resolves (#61064)

core

Commit Type Description
4623b61448 fix missing useExisting providers throwing for optional calls (#61152)
400dbc5b89 fix properly handle app stabilization with defer blocks (#61056)

platform-server

Commit Type Description
a6f0d5bc20 fix less aggressive ngServerMode cleanup (#61106)

20.0.0-next.9 (2025-04-30)

Breaking Changes

core

  • 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
  • afterRender was renamed to afterEveryRender.

  • This commit deprecates ng-reflect-* attributes and updates the runtime to stop producing them by default. Please refactor application and test code to avoid relying on ng-reflect-* attributes.

    To enable a more seamless upgrade to v20, we've added the provideNgReflectAttributes() function (can be imported from the @angular/core package), which enables the mode in which Angular would be producing those attribites (in dev mode only). You can add the provideNgReflectAttributes() function to the list of providers within the bootstrap call.

common

Commit Type Description
b7d3f3dbfc feat Allow passing ScrollOptions to ViewportScroller (#61002)
fc4a56d5c5 fix rename httpResource function in factory (#60022)

compiler-cli

Commit Type Description
c889382a20 feat detect missing structural directive imports (#59443)

core

Commit Type Description
d5fd7349fb feat introduce TestBed.tick() (#60993)
e711f99d81 feat move provideExperimentalCheckNoChangesForDebug to provideCheckNoChangesConfig (#60906)
d8fbb909ce feat rename afterRender to afterEveryRender and stabilize (#60999)
8d82a39a60 fix async EventEmitter error should not prevent stability (#61028)
624be2ef0c fix prevent stash listener conflicts (#59635)

... (truncated)

Commits

Updates @angular/core from 19.2.7 to 19.2.10

Release notes

Sourced from @​angular/core's releases.

19.2.10

common

Commit Description
fix - 89056a0356 cleanup updateLatestValue if view is destroyed before promise resolves (#61064)

core

Commit Description
fix - 4623b61448 missing useExisting providers throwing for optional calls (#61152)
fix - 400dbc5b89 properly handle app stabilization with defer blocks (#61056)

platform-server

Commit Description
fix - a6f0d5bc20 less aggressive ngServerMode cleanup (#61106)

19.2.9

core

Commit Description
fix - 946b844e0d async EventEmitter error should not prevent stability (#61028)
fix - dbb87026ca call DestroyRef on destroy callback if view is destroyed [patch] (#61061)
fix - 2e140a136a prevent stash listener conflicts [patch] (#61063)

19.2.8

forms

Commit Description
fix - ea4a211216 make NgForm emit FormSubmittedEvent and FormResetEvent (#60887)
Changelog

Sourced from @​angular/core's changelog.

19.2.10 (2025-05-07)

common

Commit Type Description
89056a0356 fix cleanup updateLatestValue if view is destroyed before promise resolves (#61064)

core

Commit Type Description
4623b61448 fix missing useExisting providers throwing for optional calls (#61152)
400dbc5b89 fix properly handle app stabilization with defer blocks (#61056)

platform-server

Commit Type Description
a6f0d5bc20 fix less aggressive ngServerMode cleanup (#61106)

20.0.0-next.9 (2025-04-30)

Breaking Changes

core

  • 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
  • afterRender was renamed to afterEveryRender.

  • This commit deprecates ng-reflect-* attributes and updates the runtime to stop producing them by default. Please refactor application and test code to avoid relying on ng-reflect-* attributes.

    To enable a more seamless upgrade to v20, we've added the provideNgReflectAttributes() function (can be imported from the @angular/core package), which enables the mode in which Angular would be producing those attribites (in dev mode only). You can add the provideNgReflectAttributes() function to the list of providers within the bootstrap call.

common

Commit Type Description
b7d3f3dbfc feat Allow passing ScrollOptions to ViewportScroller (#61002)
fc4a56d5c5 fix rename httpResource function in factory (#60022)

compiler-cli

Commit Type Description
c889382a20 feat detect missing structural directive imports (#59443)

core

Commit Type Description
d5fd7349fb feat introduce TestBed.tick() (#60993)
e711f99d81 feat move provideExperimentalCheckNoChangesForDebug to provideCheckNoChangesConfig (#60906)
d8fbb909ce feat rename afterRender to afterEveryRender and stabilize (#60999)
8d82a39a60 fix async EventEmitter error should not prevent stability (#61028)
624be2ef0c fix prevent stash listener conflicts (#59635)

... (truncated)

Commits
  • 4623b61 fix(core): missing useExisting providers throwing for optional calls (#61152)
  • 9685469 docs: ViewContainerRef.createComponent jsdoc update (#61097)
  • 8c6e101 docs: ViewContainerRef.createComponent jsdoc update to reflect actual behavio...
  • 075145e refactor(core): tree-shake PROPAGATION_STOPPED_SYMBOL (#61004)
  • 400dbc5 fix(core): properly handle app stabilization with defer blocks (#61056)
  • 2e140a1 fix(core): prevent stash listener conflicts [patch] (#61063)
  • dbb8702 fix(core): call DestroyRef on destroy callback if view is destroyed [patch] (...
  • 5905090 refactor(core): remove unused APP_EFFECT_SCHEDULER in effect code (#59679)
  • a554208 build: Run browsers tests without platform-browser-dynamic (#60937) (#61060)
  • 0ee1a6e docs: add link label & paragraph for correct display (#60708)
  • Additional commits viewable in compare view

Updates @angular/forms from 19.2.7 to 19.2.10

Release notes

Sourced from @​angular/forms's releases.

19.2.10

common

Commit Description
fix - 89056a0356 cleanup updateLatestValue if view is destroyed before promise resolves (#61064)

core

Commit Description
fix - 4623b61448 missing useExisting providers throwing for optional calls (#61152)
fix - 400dbc5b89 properly handle app stabilization with defer blocks (#61056)

platform-server

Commit Description
fix - a6f0d5bc20 less aggressive ngServerMode cleanup (#61106)

19.2.9

core

Commit Description
fix - 946b844e0d async EventEmitter error should not prevent stability (#61028)
fix - dbb87026ca call DestroyRef on destroy callback if view is destroyed [patch] (#61061)
fix - 2e140a136a prevent stash listener conflicts [patch] (#61063)

19.2.8

forms

Commit Description
fix - ea4a211216 make NgForm emit FormSubmittedEvent and FormResetEvent (#60887)
Changelog

Sourced from @​angular/forms's changelog.

19.2.10 (2025-05-07)

common

Commit Type Description
89056a0356 fix cleanup updateLatestValue if view is destroyed before promise resolves (#61064)

core

Commit Type Description
4623b61448 fix missing useExisting providers throwing for optional calls (#61152)
400dbc5b89 fix properly handle app stabilization with defer blocks (#61056)

platform-server

Commit Type Description
a6f0d5bc20 fix less aggressive ngServerMode cleanup (#61106)

20.0.0-next.9 (2025-04-30)

Breaking Changes

core

  • 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
  • afterRender was renamed to afterEveryRender.

  • This commit deprecates ng-reflect-* attributes and updates the runtime to stop producing them by default. Please refactor application and test code to avoid relying on ng-reflect-* attributes.

    To enable a more seamless upgrade to v20, we've added the provideNgReflectAttributes() function (can be imported from the @angular/core package), which enables the mode in which Angular would be producing those attribites (in dev mode only). You can add the provideNgReflectAttributes() function to the list of providers within the bootstrap call.

common

Commit Type Description
b7d3f3dbfc feat Allow passing ScrollOptions to ViewportScroller (#61002)
fc4a56d5c5 fix rename httpResource function in factory (#60022)

compiler-cli

Commit Type Description
c889382a20 feat detect missing structural directive imports (#59443)

core

Commit Type Description
d5fd7349fb feat introduce TestBed.tick() (#60993)
e711f99d81 feat move provideExperimentalCheckNoChangesForDebug to provideCheckNoChangesConfig (#60906)
d8fbb909ce feat rename afterRender to afterEveryRender and stabilize (#60999)
8d82a39a60 fix async EventEmitter error should not prevent stability (#61028)
624be2ef0c fix prevent stash listener conflicts (#59635)

... (truncated)

Commits

Updates @angular/platform-browser from 19.2.7 to 19.2.10

Release notes

Sourced from @​angular/platform-browser's releases.

19.2.10

common

Commit Description
fix - 89056a0356 cleanup updateLatestValue if view is destroyed before promise resolves (#61064)

core

Commit Description
fix - 4623b61448 missing useExisting providers throwing for optional calls (#61152)
fix - 400dbc5b89 properly handle app stabilization with defer blocks (#61056)

platform-server

Commit Description
fix - a6f0d5bc20 less aggressive ngServerMode cleanup (#61106)

19.2.9

core

Commit Description
fix - 946b844e0d async EventEmitter error should not prevent stability (#61028)
fix - dbb87026ca call DestroyRef on destroy callback if view is destroyed [patch] (#61061)
fix - 2e140a136a prevent stash listener conflicts [patch] (#61063)

19.2.8

forms

Commit Description
fix - ea4a211216 make NgForm emit FormSubmittedEvent and FormResetEvent (#60887)
Changelog

Sourced from @​angular/platform-browser's changelog.

19.2.10 (2025-05-07)

common

Commit Type Description
89056a0356 fix cleanup updateLatestValue if view is destroyed before promise resolves (#61064)

core

Commit Type Description
4623b61448 fix missing useExisting providers throwing for optional calls (#61152)
400dbc5b89 fix properly handle app stabilization with defer blocks (#61056)

platform-server

Commit Type Description
a6f0d5bc20 fix less aggressive ngServerMode cleanup (#61106)

20.0.0-next.9 (2025-04-30)

Breaking Changes

core

  • 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
  • afterRender was renamed to afterEveryRender.

  • This commit deprecates ng-reflect-* attributes and updates the runtime to stop producing them by default. Please refactor application and test code to avoid relying on ng-reflect-* attributes.

    To enable a more seamless upgrade to v20, we've added the provideNgReflectAttributes() function (can be imported from the @angular/core package), which enables the mode in which Angular would be producing those attribites (in dev mode only). You can add the provideNgReflectAttributes() function to the list of providers within the bootstrap call.

common

Commit Type Description
b7d3f3dbfc feat Allow passing ScrollOptions to ViewportScroller (#61002)
fc4a56d5c5 fix rename httpResource function in factory (#60022)

compiler-cli

Commit Type Description
c889382a20 feat detect missing structural directive imports (#59443)

core

Commit Type Description
d5fd7349fb feat introduce TestBed.tick() (#60993)
e711f99d81 feat move provideExperimentalCheckNoChangesForDebug to provideCheckNoChangesConfig (#60906)
d8fbb909ce feat rename afterRender to afterEveryRender and stabilize (Description has been truncated

@dependabot dependabot bot requested a review from louismaximepiton May 9, 2025 04:54
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label May 9, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github May 9, 2025

The reviewers field in the dependabot.yml file will be removed soon. Please use the code owners file to specify reviewers for Dependabot PRs. For more information, see this blog post.

Copy link

netlify bot commented May 9, 2025

Deploy Preview for iotmapcomponent ready!

Name Link
🔨 Latest commit 161239f
🔍 Latest deploy log https://app.netlify.com/projects/iotmapcomponent/deploys/6826bc4d59efa400086db932
😎 Deploy Preview https://deploy-preview-353--iotmapcomponent.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

…13 updates

Bumps the angular-all-deps group with 13 updates in the /test/angular directory:

| Package | From | To |
| --- | --- | --- |
| [@angular/animations](https://github.com/angular/angular/tree/HEAD/packages/animations) | `19.2.7` | `19.2.10` |
| [@angular/common](https://github.com/angular/angular/tree/HEAD/packages/common) | `19.2.7` | `19.2.10` |
| [@angular/compiler](https://github.com/angular/angular/tree/HEAD/packages/compiler) | `19.2.7` | `19.2.10` |
| [@angular/core](https://github.com/angular/angular/tree/HEAD/packages/core) | `19.2.7` | `19.2.10` |
| [@angular/forms](https://github.com/angular/angular/tree/HEAD/packages/forms) | `19.2.7` | `19.2.10` |
| [@angular/platform-browser](https://github.com/angular/angular/tree/HEAD/packages/platform-browser) | `19.2.7` | `19.2.10` |
| [@angular/platform-browser-dynamic](https://github.com/angular/angular/tree/HEAD/packages/platform-browser-dynamic) | `19.2.7` | `19.2.10` |
| [@angular/router](https://github.com/angular/angular/tree/HEAD/packages/router) | `19.2.7` | `19.2.10` |
| [@angular-devkit/build-angular](https://github.com/angular/angular-cli) | `19.2.8` | `19.2.11` |
| [@angular/cli](https://github.com/angular/angular-cli) | `19.2.8` | `19.2.11` |
| [@angular/compiler-cli](https://github.com/angular/angular/tree/HEAD/packages/compiler-cli) | `19.2.7` | `19.2.10` |
| [@types/jasmine](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jasmine) | `5.1.7` | `5.1.8` |
| [jasmine-core](https://github.com/jasmine/jasmine) | `5.6.0` | `5.7.1` |



Updates `@angular/animations` from 19.2.7 to 19.2.10
- [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/19.2.10/packages/animations)

Updates `@angular/common` from 19.2.7 to 19.2.10
- [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/19.2.10/packages/common)

Updates `@angular/compiler` from 19.2.7 to 19.2.10
- [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/19.2.10/packages/compiler)

Updates `@angular/core` from 19.2.7 to 19.2.10
- [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/19.2.10/packages/core)

Updates `@angular/forms` from 19.2.7 to 19.2.10
- [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/19.2.10/packages/forms)

Updates `@angular/platform-browser` from 19.2.7 to 19.2.10
- [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/19.2.10/packages/platform-browser)

Updates `@angular/platform-browser-dynamic` from 19.2.7 to 19.2.10
- [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/19.2.10/packages/platform-browser-dynamic)

Updates `@angular/router` from 19.2.7 to 19.2.10
- [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/19.2.10/packages/router)

Updates `@angular-devkit/build-angular` from 19.2.8 to 19.2.11
- [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...19.2.11)

Updates `@angular/cli` from 19.2.8 to 19.2.11
- [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...19.2.11)

Updates `@angular/compiler-cli` from 19.2.7 to 19.2.10
- [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/19.2.10/packages/compiler-cli)

Updates `@types/jasmine` from 5.1.7 to 5.1.8
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jasmine)

Updates `jasmine-core` from 5.6.0 to 5.7.1
- [Release notes](https://github.com/jasmine/jasmine/releases)
- [Changelog](https://github.com/jasmine/jasmine/blob/main/RELEASE.md)
- [Commits](jasmine/jasmine@v5.6.0...v5.7.1)

---
updated-dependencies:
- dependency-name: "@angular/animations"
  dependency-version: 19.2.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: angular-all-deps
- dependency-name: "@angular/common"
  dependency-version: 19.2.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: angular-all-deps
- dependency-name: "@angular/compiler"
  dependency-version: 19.2.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: angular-all-deps
- dependency-name: "@angular/core"
  dependency-version: 19.2.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: angular-all-deps
- dependency-name: "@angular/forms"
  dependency-version: 19.2.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: angular-all-deps
- dependency-name: "@angular/platform-browser"
  dependency-version: 19.2.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: angular-all-deps
- dependency-name: "@angular/platform-browser-dynamic"
  dependency-version: 19.2.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: angular-all-deps
- dependency-name: "@angular/router"
  dependency-version: 19.2.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: angular-all-deps
- dependency-name: "@angular-devkit/build-angular"
  dependency-version: 19.2.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: angular-all-deps
- dependency-name: "@angular/cli"
  dependency-version: 19.2.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: angular-all-deps
- dependency-name: "@angular/compiler-cli"
  dependency-version: 19.2.10
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: angular-all-deps
- dependency-name: "@types/jasmine"
  dependency-version: 5.1.8
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: angular-all-deps
- dependency-name: jasmine-core
  dependency-version: 5.7.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: angular-all-deps
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/test/angular/angular-all-deps-3888474423 branch from ba1fab9 to 161239f Compare May 16, 2025 04:17
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants