Skip to content
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

Bump the angular group in /webui with 13 updates #1335

Merged
merged 1 commit into from
Sep 10, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 9, 2024

Bumps the angular group in /webui with 13 updates:

Package From To
@angular/animations 18.2.2 18.2.3
@angular/cdk 18.2.2 18.2.3
@angular/common 18.2.2 18.2.3
@angular/compiler 18.2.2 18.2.3
@angular/core 18.2.2 18.2.3
@angular/forms 18.2.2 18.2.3
@angular/material 18.2.2 18.2.3
@angular/platform-browser 18.2.2 18.2.3
@angular/platform-browser-dynamic 18.2.2 18.2.3
@angular/router 18.2.2 18.2.3
@angular-devkit/build-angular 18.2.2 18.2.3
@angular/cli 18.2.2 18.2.3
@angular/compiler-cli 18.2.2 18.2.3

Updates @angular/animations from 18.2.2 to 18.2.3

Release notes

Sourced from @​angular/animations's releases.

v18.2.3

18.2.3 (2024-09-04)

http

Commit Description
fix - de68e049e4 Dynamicaly call the global fetch implementation (#57531)
Changelog

Sourced from @​angular/animations's changelog.

18.2.3 (2024-09-04)

http

Commit Type Description
de68e049e4 fix Dynamicaly call the global fetch implementation (#57531)

19.0.0-next.2 (2024-08-28)

Breaking Changes

core

  • Render default fallback with empty projectableNodes.

    When passing an empty array to projectableNodes in the createComponent API, the default fallback content of the ng-content will be rendered if present. To prevent rendering the default content, pass document.createTextNode('') as a projectableNode.

    For example:

    // The first ng-content will render the default fallback content if present
    createComponent(MyComponent. { projectableNodes: [[], [secondNode]] });
    // To prevent projecting the default fallback content:
    createComponent(MyComponent. { projectableNodes: [[document.createTextNode('')], [secondNode]] });

  • The timers that are used for zone coalescing and hybrid mode scheduling (which schedules an application state synchronization when changes happen outside the Angular zone) will now run in the zone above Angular rather than the root zone. This will mostly affect tests which use fakeAsync: these timers will now be visible to fakeAsync and can be affected by tick or flush.

elements

  • as part of switching away from custom CD behavior to the hybrid scheduler, timing of change detection around custom elements has changed subtly. These changes make elements more efficient, but can cause tests which encoded assumptions about how or when elements would be checked to require updating.

common

Commit Type Description
50f08e6c4bf feat automatically use sizes auto in NgOptimizedImage (#57479)

compiler-cli

Commit Type Description
4716c3b9660 perf reduce duplicate component style resolution (#57502)

core

Commit Type Description
a3cdbfe87f5 fix avoid leaking memory if component throws during creation (#57546)

... (truncated)

Commits

Updates @angular/cdk from 18.2.2 to 18.2.3

Release notes

Sourced from @​angular/cdk's releases.

v18.2.3

18.2.3 "parchment-deluge" (2024-09-04)

material

Commit Description
fix - 0f07b25d12 badge: resolve memory leak (#29676)
fix - fe3f30ff2f core: Allow system variables to be formatted for opacity (#29665)
fix - 5d93395442 core: Fix incorrect color role mappings (#29655)
fix - 4a79052ae0 tooltip: remove old IE workaround (#29674)
Changelog

Sourced from @​angular/cdk's changelog.

18.2.3 "parchment-deluge" (2024-09-04)

material

Commit Type Description
0f07b25d12 fix badge: resolve memory leak (#29676)
fe3f30ff2f fix core: Allow system variables to be formatted for opacity (#29665)
5d93395442 fix core: Fix incorrect color role mappings (#29655)
4a79052ae0 fix tooltip: remove old IE workaround (#29674)

19.0.0-next.2 "bronze-book" (2024-08-28)

Breaking Changes

cdk

    • The overlay stays are now loaded slightly later than before which can change their specificity. You may have to update any overlay style overrides.

material

    • The ripples styles are now loaded slightly later than before which can change their specificity. You may have to update any ripple style overrides.

multiple

    • MatButton.ripple is no longer available.
    • MatCheckbox.ripple is no longer available.
    • MatChip.ripple is no longer available.

material

Commit Type Description
64ed7ca715 feat core: add experimental theme demo (#29636)
fcb76d3ed1 fix core: add missing system variables (#29624)
855ed49482 fix core: avoid having to manually load ripple styles
d0e178b75e fix core: stop manually instantiating MatRipple directive (#29630)
3bf0e31f77 fix schematics: Add the missing neutral tones for the M3 color palettes (#29644)
64cf19ccdb perf tooltip: Avoid unneeded calls to clearTimeout (#29643)

cdk

Commit Type Description
2f1fe03ae9 fix drag-drop: error if ngDevMode is undefined (#29634)
df21d2b091 fix overlay: avoid having to manually load structural styles
ad18e6d74e fix text-field: avoid having to manually load text field styles
a6835ef6a7 fix tree: avoid breaking change in constructor (#29648)
8b34fb7e8d fix tree: capturing focus on load (#29641)

multiple

Commit Type Description
a9da72ed15 fix consolidate strong focus indicators (#29623)
485bd9923b fix stop exposing internal ripple implementation (#29622)

Commits

Updates @angular/common from 18.2.2 to 18.2.3

Release notes

Sourced from @​angular/common's releases.

v18.2.3

18.2.3 (2024-09-04)

http

Commit Description
fix - de68e049e4 Dynamicaly call the global fetch implementation (#57531)
Changelog

Sourced from @​angular/common's changelog.

18.2.3 (2024-09-04)

http

Commit Type Description
de68e049e4 fix Dynamicaly call the global fetch implementation (#57531)

19.0.0-next.2 (2024-08-28)

Breaking Changes

core

  • Render default fallback with empty projectableNodes.

    When passing an empty array to projectableNodes in the createComponent API, the default fallback content of the ng-content will be rendered if present. To prevent rendering the default content, pass document.createTextNode('') as a projectableNode.

    For example:

    // The first ng-content will render the default fallback content if present
    createComponent(MyComponent. { projectableNodes: [[], [secondNode]] });
    // To prevent projecting the default fallback content:
    createComponent(MyComponent. { projectableNodes: [[document.createTextNode('')], [secondNode]] });

  • The timers that are used for zone coalescing and hybrid mode scheduling (which schedules an application state synchronization when changes happen outside the Angular zone) will now run in the zone above Angular rather than the root zone. This will mostly affect tests which use fakeAsync: these timers will now be visible to fakeAsync and can be affected by tick or flush.

elements

  • as part of switching away from custom CD behavior to the hybrid scheduler, timing of change detection around custom elements has changed subtly. These changes make elements more efficient, but can cause tests which encoded assumptions about how or when elements would be checked to require updating.

common

Commit Type Description
50f08e6c4bf feat automatically use sizes auto in NgOptimizedImage (#57479)

compiler-cli

Commit Type Description
4716c3b9660 perf reduce duplicate component style resolution (#57502)

core

Commit Type Description
a3cdbfe87f5 fix avoid leaking memory if component throws during creation (#57546)

... (truncated)

Commits

Updates @angular/compiler from 18.2.2 to 18.2.3

Release notes

Sourced from @​angular/compiler's releases.

v18.2.3

18.2.3 (2024-09-04)

http

Commit Description
fix - de68e049e4 Dynamicaly call the global fetch implementation (#57531)
Changelog

Sourced from @​angular/compiler's changelog.

18.2.3 (2024-09-04)

http

Commit Type Description
de68e049e4 fix Dynamicaly call the global fetch implementation (#57531)

19.0.0-next.2 (2024-08-28)

Breaking Changes

core

  • Render default fallback with empty projectableNodes.

    When passing an empty array to projectableNodes in the createComponent API, the default fallback content of the ng-content will be rendered if present. To prevent rendering the default content, pass document.createTextNode('') as a projectableNode.

    For example:

    // The first ng-content will render the default fallback content if present
    createComponent(MyComponent. { projectableNodes: [[], [secondNode]] });
    // To prevent projecting the default fallback content:
    createComponent(MyComponent. { projectableNodes: [[document.createTextNode('')], [secondNode]] });

  • The timers that are used for zone coalescing and hybrid mode scheduling (which schedules an application state synchronization when changes happen outside the Angular zone) will now run in the zone above Angular rather than the root zone. This will mostly affect tests which use fakeAsync: these timers will now be visible to fakeAsync and can be affected by tick or flush.

elements

  • as part of switching away from custom CD behavior to the hybrid scheduler, timing of change detection around custom elements has changed subtly. These changes make elements more efficient, but can cause tests which encoded assumptions about how or when elements would be checked to require updating.

common

Commit Type Description
50f08e6c4bf feat automatically use sizes auto in NgOptimizedImage (#57479)

compiler-cli

Commit Type Description
4716c3b9660 perf reduce duplicate component style resolution (#57502)

core

Commit Type Description
a3cdbfe87f5 fix avoid leaking memory if component throws during creation (#57546)

... (truncated)

Commits

Updates @angular/core from 18.2.2 to 18.2.3

Release notes

Sourced from @​angular/core's releases.

v18.2.3

18.2.3 (2024-09-04)

http

Commit Description
fix - de68e049e4 Dynamicaly call the global fetch implementation (#57531)
Changelog

Sourced from @​angular/core's changelog.

18.2.3 (2024-09-04)

http

Commit Type Description
de68e049e4 fix Dynamicaly call the global fetch implementation (#57531)

19.0.0-next.2 (2024-08-28)

Breaking Changes

core

  • Render default fallback with empty projectableNodes.

    When passing an empty array to projectableNodes in the createComponent API, the default fallback content of the ng-content will be rendered if present. To prevent rendering the default content, pass document.createTextNode('') as a projectableNode.

    For example:

    // The first ng-content will render the default fallback content if present
    createComponent(MyComponent. { projectableNodes: [[], [secondNode]] });
    // To prevent projecting the default fallback content:
    createComponent(MyComponent. { projectableNodes: [[document.createTextNode('')], [secondNode]] });

  • The timers that are used for zone coalescing and hybrid mode scheduling (which schedules an application state synchronization when changes happen outside the Angular zone) will now run in the zone above Angular rather than the root zone. This will mostly affect tests which use fakeAsync: these timers will now be visible to fakeAsync and can be affected by tick or flush.

elements

  • as part of switching away from custom CD behavior to the hybrid scheduler, timing of change detection around custom elements has changed subtly. These changes make elements more efficient, but can cause tests which encoded assumptions about how or when elements would be checked to require updating.

common

Commit Type Description
50f08e6c4bf feat automatically use sizes auto in NgOptimizedImage (#57479)

compiler-cli

Commit Type Description
4716c3b9660 perf reduce duplicate component style resolution (#57502)

core

Commit Type Description
a3cdbfe87f5 fix avoid leaking memory if component throws during creation (#57546)

... (truncated)

Commits
  • 93bdbbc docs(docs-infra): Add dev-mode only mention for core/global (#57365)
  • d9c1004 refactor(migrations): ensure control flow analysis of signal input migration ...
  • bb29c8b refactor(migrations): cleanup TODOs in signal input migration (#57566)
  • 3b7162d docs: Add mention to ENVIRONMENT_INITIALIZER (#57464)
  • 3bc2867 docs(docs-infra): remove hash before link (#57351)
  • See full diff in compare view

Updates @angular/forms from 18.2.2 to 18.2.3

Release notes

Sourced from @​angular/forms's releases.

v18.2.3

18.2.3 (2024-09-04)

http

Commit Description
fix - de68e049e4 Dynamicaly call the global fetch implementation (#57531)
Changelog

Sourced from @​angular/forms's changelog.

18.2.3 (2024-09-04)

http

Commit Type Description
de68e049e4 fix Dynamicaly call the global fetch implementation (#57531)

19.0.0-next.2 (2024-08-28)

Breaking Changes

core

  • Render default fallback with empty projectableNodes.

    When passing an empty array to projectableNodes in the createComponent API, the default fallback content of the ng-content will be rendered if present. To prevent rendering the default content, pass document.createTextNode('') as a projectableNode.

    For example:

    // The first ng-content will render the default fallback content if present
    createComponent(MyComponent. { projectableNodes: [[], [secondNode]] });
    // To prevent projecting the default fallback content:
    createComponent(MyComponent. { projectableNodes: [[document.createTextNode('')], [secondNode]] });

  • The timers that are used for zone coalescing and hybrid mode scheduling (which schedules an application state synchronization when changes happen outside the Angular zone) will now run in the zone above Angular rather than the root zone. This will mostly affect tests which use fakeAsync: these timers will now be visible to fakeAsync and can be affected by tick or flush.

elements

  • as part of switching away from custom CD behavior to the hybrid scheduler, timing of change detection around custom elements has changed subtly. These changes make elements more efficient, but can cause tests which encoded assumptions about how or when elements would be checked to require updating.

common

Commit Type Description
50f08e6c4bf feat automatically use sizes auto in NgOptimizedImage (#57479)

compiler-cli

Commit Type Description
4716c3b9660 perf reduce duplicate component style resolution (#57502)

core

Commit Type Description
a3cdbfe87f5 fix avoid leaking memory if component throws during creation (#57546)

... (truncated)

Commits

Updates @angular/material from 18.2.2 to 18.2.3

Release notes

Sourced from @​angular/material's releases.

v18.2.3

18.2.3 "parchment-deluge" (2024-09-04)

material

Commit Description
fix - 0f07b25d12 badge: resolve memory leak (#29676)
fix - fe3f30ff2f core: Allow system variables to be formatted for opacity (#29665)
fix - 5d93395442 core: Fix incorrect color role mappings (#29655)
fix - 4a79052ae0 tooltip: remove old IE workaround (#29674)
Changelog

Sourced from @​angular/material's changelog.

18.2.3 "parchment-deluge" (2024-09-04)

material

Commit Type Description
0f07b25d12 fix badge: resolve memory leak (#29676)
fe3f30ff2f fix core: Allow system variables to be formatted for opacity (#29665)
5d93395442 fix core: Fix incorrect color role mappings (#29655)
4a79052ae0 fix tooltip: remove old IE workaround (#29674)

19.0.0-next.2 "bronze-book" (2024-08-28)

Breaking Changes

cdk

    • The overlay stays are now loaded slightly later than before which can change their specificity. You may have to update any overlay style overrides.

material

    • The ripples styles are now loaded slightly later than before which can change their specificity. You may have to update any ripple style overrides.

multiple

    • MatButton.ripple is no longer available.
    • MatCheckbox.ripple is no longer available.
    • MatChip.ripple is no longer available.

material

Commit Type Description
64ed7ca715 feat core: add experimental theme demo (#29636)
fcb76d3ed1 fix core: add missing system variables (#29624)
855ed49482 fix core: avoid having to manually load ripple styles
d0e178b75e fix core: stop manually instantiating MatRipple directive (#29630)
3bf0e31f77 fix schematics: Add the missing neutral tones for the M3 color palettes (#29644)
64cf19ccdb perf tooltip: Avoid unneeded calls to clearTimeout (#29643)

cdk

Commit Type Description
2f1fe03ae9 fix drag-drop: error if ngDevMode is undefined (#29634)
df21d2b091 fix overlay: avoid having to manually load structural styles
ad18e6d74e fix text-field: avoid having to manually load text field styles
a6835ef6a7 fix tree: avoid breaking change in constructor (#29648)
8b34fb7e8d fix tree: capturing focus on load (#29641)

multiple

Commit Type Description
a9da72ed15 fix consolidate strong focus indicators (#29623)
485bd9923b fix stop exposing internal ripple implementation (#29622)

Commits

Updates @angular/platform-browser from 18.2.2 to 18.2.3

Release notes

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

v18.2.3

18.2.3 (2024-09-04)

http

Commit Description
fix - de68e049e4 Dynamicaly call the global fetch implementation (#57531)
Changelog

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

18.2.3 (2024-09-04)

http

Commit Type Description
de68e049e4 fix Dynamicaly call the global fetch implementation (#57531)

19.0.0-next.2 (2024-08-28)

Breaking Changes

core

  • Render default fallback with empty projectableNodes.

    When passing an empty array to projectableNodes in the createComponent API, the default fallback content of the ng-content will be rendered if present. To prevent rendering the default content, pass document.createTextNode('') as a projectableNode.

    For example:

    // The first ng-content will render the default fallback content if present
    createComponent(MyComponent. { projectableNodes: [[], [secondNode]] });
    // To prevent projecting the default fallback content:
    createComponent(MyComponent. { projectableNodes: [[document.createTextNode('')], [secondNode]] });

  • The timers that are used for zone coalescing and hybrid mode scheduling (which schedules an application state synchronization when changes happen outside the Angular zone) will now run in the zone above Angular rather than the root zone. This will mostly affect tests which use fakeAsync: these timers will now be visible to fakeAsync and can be affected by tick or flush.

elements

  • as part of switching away from custom CD behavior to the hybrid scheduler, timing of change detection around custom elements has changed subtly. These changes make elements more efficient, but can cause tests which encoded assumptions about how or when elements would be checked to require updating.

common

Commit Type Description
50f08e6c4bf feat automatically use sizes auto in NgOptimizedImage (#57479)

compiler-cli

Commit Type Description
4716c3b9660 perf reduce duplicate component style resolution (#57502)

core

Commit Type Description
a3cdbfe87f5 fix avoid leaking memory if component throws during creation (#57546)

... (truncated)

Commits

Updates @angular/platform-browser-dynamic from 18.2.2 to 18.2.3

Release notes

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

v18.2.3

18.2.3 (2024-09-04)

http

Commit Description
fix - de68e049e4 Dynamicaly call the global fetch implementation (#57531)
Changelog

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

18.2.3 (2024-09-04)

http

Commit Type Description
de68e049e4 fix Dynamicaly call the global fetch implementation (#57531)

19.0.0-next.2 (2024-08-28)

Breaking Changes

core

  • Render default fallback with empty projectableNodes.

    When passing an empty array to projectableNodes in the createComponent API, the default fallback content of the ng-content will be rendered if present. To prevent rendering the default content, pass document.createTextNode('') as a projectableNode.

    For example:

    // The first ng-content will render the default fallback content if present
    createComponent(MyComponent. { projectableNodes: [[], [secondNode]] });
    // To prevent projecting the default fallback content:
    createComponent(MyComponent. { projectableNodes: [[document.createTextNode('')], [secondNode]] });

  • The timers that are used for zone coalescing and hybrid mode scheduling (which schedules an application state synchronization when changes happen outside the Angular zone) will now run in the zone above Angular rather than the root zone. This will mostly affect tests which use fakeAsync: these timers will now be visible to fakeAsync and can be affected by tick or flush.

elements

  • as part of switching away from custom CD behavior to the hybrid scheduler, timing of change detection around custom elements has changed subtly. These changes make elements more efficient, but can cause tests which encoded assumptions about how or when elements would be checked to require updating.

common

Commit Type Description
50f08e6c4bf feat automatically use sizes auto in NgOptimizedImage (#57479)

compiler-cli

Commit Type Description
4716c3b9660 perf reduce duplicate component style resolution (#57502)

core

Commit Type Description
a3cdbfe87f5 fix avoid leaking memory if component throws during creation (#57546)

... (truncated)

Commits

Updates @angular/router from 18.2.2 to 18.2.3

Release notes

Sourced from @​angular/router's releases.

v18.2.3

18.2.3 (2024-09-04)

http

Commit Description
fix - de68e049e4 Dynamicaly call the global fetch implementation (#57531)
Changelog

Sourced from @​angular/router's changelog.

18.2.3 (2024-09-04)

http

Commit Type Description
de68e049e4 fix Dynamicaly call the global fetch implementation (#57531)

19.0.0-next.2 (2024-08-28)

Breaking Changes

core

  • Render default fallback with empty projectableNodes.

    When passing an empty array to projectableNodes in the createComponent API, the default fallback content of the ng-content will be rendered if present. To prevent rendering the default content, pass document.createTextNode('') as a projectableNode.

    For example:

    // The first ng-content will render the default fallback content if present
    createComponent(MyComponent. { projectableNodes: [[], [secondNode]] });
    // To prevent projecting the default fallback content:
    createComponent(MyComponent. { projectableNodes: [[document.createTextNode('')], [secondNode]] });

  • The timers that are used for zone coalescing and hybrid mode scheduling (which schedules an application state synchronization when changes happen outside the Angular zone) will now run in the zone above Angular rather than the root zone. This will mostly affect tests which use fakeAsync: these timers will now be visible to fakeAsync and can be affected by tick or flush.

elements

  • as part of switching away from custom CD behavior to the hybrid scheduler, timing of change detection around custom elements has changed subtly. These changes make elements more efficient, but can cause tests which encoded assumptions about how or when elements would be checked to require updating.

common

Commit Type Description
50f08e6c4bf feat automatically use sizes auto in NgOptimizedImage (#57479)

compiler-cli

Commit Type Description
4716c3b9660 perf reduce duplicate component style resolution (#57502)

core

Commit Type Description
a3cdbfe87f5 fix avoid leaking memory if component throws during creation (#57546)

... (truncated)

Commits

Updates @angular-devkit/build-angular from 18.2.2 to 18.2.3

Release notes

Sourced from @​angular-devkit/build-angular's releases.

v18.2.3

18.2.3 (2024-09-04)

@​angular-devkit/build-angular

Commit Description
fix - 482076612 update webpack-dev-middleware to 7.4.2
Changelog

Sourced from @​angular-devkit/build-angular's changelog.

18.2.3 (2024-09-04)

@​angular-devkit/build-angular

Commit Type Description
482076612 fix update webpack-dev-middleware to 7.4.2

Commits
  • f4db482 release: cut the v18.2.3 release
  • 4820766 fix(@​angular-devkit/build-angular): update webpack-dev-middleware to 7.4.2
  • See full diff in compare view

Updates @angular/cli from 18.2.2 to 18.2.3

Release notes

Sourced from @​angular/cli's releases.

v18.2.3

18.2.3 (2024-09-04)

@​angular-devkit/build-angular

Commit Description
fix - 482076612 update webpack-dev-middleware to 7.4.2
Changelog

Sourced from @​angular/cli's changelog.

18.2.3 (2024-09-04)

@​angular-devkit/build-angular

Commit Type Description
482076612 fix update webpack-dev-middleware to 7.4.2

Commits
  • f4db482 release: cut the v18.2.3 release
  • 4820766 fix(@​angular-devkit/build-angular): update webpack-dev-middleware to 7.4.2
  • See full diff in compare view

Updates @angular/compiler-cli from 18.2.2 to 18.2.3

Release notes

Sourced from @​angular/compiler-cli's releases.

v18.2.3

18.2.3 (2024-09-04)

http

Commit Description

Bumps the angular group in /webui with 13 updates:

| Package | From | To |
| --- | --- | --- |
| [@angular/animations](https://github.com/angular/angular/tree/HEAD/packages/animations) | `18.2.2` | `18.2.3` |
| [@angular/cdk](https://github.com/angular/components) | `18.2.2` | `18.2.3` |
| [@angular/common](https://github.com/angular/angular/tree/HEAD/packages/common) | `18.2.2` | `18.2.3` |
| [@angular/compiler](https://github.com/angular/angular/tree/HEAD/packages/compiler) | `18.2.2` | `18.2.3` |
| [@angular/core](https://github.com/angular/angular/tree/HEAD/packages/core) | `18.2.2` | `18.2.3` |
| [@angular/forms](https://github.com/angular/angular/tree/HEAD/packages/forms) | `18.2.2` | `18.2.3` |
| [@angular/material](https://github.com/angular/components) | `18.2.2` | `18.2.3` |
| [@angular/platform-browser](https://github.com/angular/angular/tree/HEAD/packages/platform-browser) | `18.2.2` | `18.2.3` |
| [@angular/platform-browser-dynamic](https://github.com/angular/angular/tree/HEAD/packages/platform-browser-dynamic) | `18.2.2` | `18.2.3` |
| [@angular/router](https://github.com/angular/angular/tree/HEAD/packages/router) | `18.2.2` | `18.2.3` |
| [@angular-devkit/build-angular](https://github.com/angular/angular-cli) | `18.2.2` | `18.2.3` |
| [@angular/cli](https://github.com/angular/angular-cli) | `18.2.2` | `18.2.3` |
| [@angular/compiler-cli](https://github.com/angular/angular/tree/HEAD/packages/compiler-cli) | `18.2.2` | `18.2.3` |


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

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

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

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

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

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

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

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

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

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

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

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

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

---
updated-dependencies:
- dependency-name: "@angular/animations"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: angular
- dependency-name: "@angular/cdk"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: angular
- dependency-name: "@angular/common"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: angular
- dependency-name: "@angular/compiler"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: angular
- dependency-name: "@angular/core"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: angular
- dependency-name: "@angular/forms"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: angular
- dependency-name: "@angular/material"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: angular
- dependency-name: "@angular/platform-browser"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: angular
- dependency-name: "@angular/platform-browser-dynamic"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: angular
- dependency-name: "@angular/router"
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: angular
- dependency-name: "@angular-devkit/build-angular"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: angular
- dependency-name: "@angular/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: angular
- dependency-name: "@angular/compiler-cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: 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 Sep 9, 2024
@d10sfan d10sfan merged commit b1bafa3 into master Sep 10, 2024
1 check passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/webui/angular-d3f2d3cc28 branch September 10, 2024 12:23
This pull request was closed.
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