Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the angular group in /turing-ui with 15 updates:

Package From To
@angular/animations 20.3.0 20.3.1
@angular/cdk 20.2.3 20.2.4
@angular/common 20.3.0 20.3.1
@angular/compiler 20.3.0 20.3.1
@angular/core 20.3.0 20.3.1
@angular/forms 20.3.0 20.3.1
@angular/localize 20.3.0 20.3.1
@angular/platform-browser 20.3.0 20.3.1
@angular/platform-browser-dynamic 20.3.0 20.3.1
@angular/router 20.3.0 20.3.1
@angular/build 20.3.1 20.3.2
@angular/cli 20.3.1 20.3.2
@angular/compiler-cli 20.3.0 20.3.1
@angular/language-service 20.3.0 20.3.1
@types/node 24.4.0 24.5.2

Updates @angular/animations from 20.3.0 to 20.3.1

Release notes

Sourced from @​angular/animations's releases.

20.3.1

compiler

Commit Description
fix - 7fb5a8087e Add support for aria-invalid (#63748)

compiler-cli

Commit Description
fix - 8843707919 only bind inputs that are part of microsyntax to a structural directive (#52453)
fix - 38c9921ff3 signal not invoked diagnostic not raised when input has same name in template (#63754)

core

Commit Description
fix - 802dbcc2a0 prevent animation events from being cleaned up on destroy (#63414)
fix - 3ec8a5c753 Prevent leave animations on a move operation (#63745)

migrations

Commit Description
fix - 6e54bdfdcb fix route-lazy-loading migration (#63818)
Changelog

Sourced from @​angular/animations's changelog.

20.3.1 (2025-09-17)

compiler

Commit Type Description
7fb5a8087e fix Add support for aria-invalid (#63748)

compiler-cli

Commit Type Description
8843707919 fix only bind inputs that are part of microsyntax to a structural directive (#52453)
38c9921ff3 fix signal not invoked diagnostic not raised when input has same name in template (#63754)

core

Commit Type Description
802dbcc2a0 fix prevent animation events from being cleaned up on destroy (#63414)
3ec8a5c753 fix Prevent leave animations on a move operation (#63745)

migrations

Commit Type Description
6e54bdfdcb fix fix route-lazy-loading migration (#63818)

18.2.14 (2025-09-10)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

    (cherry picked from commit 8bf80c9d2314b4f2bcf3df83ae01552a6fc49834)

core

Commit Type Description
9d1fb33f5e fix introduce BootstrapContext for improved server bootstrapping (#63640)

... (truncated)

Commits

Updates @angular/cdk from 20.2.3 to 20.2.4

Release notes

Sourced from @​angular/cdk's releases.

20.2.4

material

Commit Description
fix - e7a0c19d0 tabs: attach content inside the zone (#31868)
Changelog

Sourced from @​angular/cdk's changelog.

20.2.4 "v20.2.4 release" (2025-09-17)

material

Commit Type Description
e7a0c19d0 fix tabs: attach content inside the zone (#31868)

21.0.0-next.3 "red-envelope" (2025-09-11)

Breaking Changes

material

    • MatCommonModule has been removed.
    • GranularSanityChecks has been removed.
    • MATERIAL_SANITY_CHECKS has been removed.
    • SanityChecks has been removed.

cdk-experimental

Commit Type Description
f137183858 fix accordion: removes inert attribute from accordion trigger (#31817)

material

Commit Type Description
931ac3c1c7 fix chips: Adjust trailing icon opacity based on chip state (#31828)
c832533062 fix core: remove MatCommonModule (#31813)
878700d10a fix progress-bar: avoid CSP issues due to buffer dots (#31818)
5a1a0ba4e6 fix select: ensure proper highlighting on selection (#31789)
e0a35c52d5 fix slider: incorrect indicator transform origin in M3 (#31834)

cdk

Commit Type Description
54f641e330 fix drag-drop: allow axis lock to be reset (#31829)

Commits

Updates @angular/common from 20.3.0 to 20.3.1

Release notes

Sourced from @​angular/common's releases.

20.3.1

compiler

Commit Description
fix - 7fb5a8087e Add support for aria-invalid (#63748)

compiler-cli

Commit Description
fix - 8843707919 only bind inputs that are part of microsyntax to a structural directive (#52453)
fix - 38c9921ff3 signal not invoked diagnostic not raised when input has same name in template (#63754)

core

Commit Description
fix - 802dbcc2a0 prevent animation events from being cleaned up on destroy (#63414)
fix - 3ec8a5c753 Prevent leave animations on a move operation (#63745)

migrations

Commit Description
fix - 6e54bdfdcb fix route-lazy-loading migration (#63818)
Changelog

Sourced from @​angular/common's changelog.

20.3.1 (2025-09-17)

compiler

Commit Type Description
7fb5a8087e fix Add support for aria-invalid (#63748)

compiler-cli

Commit Type Description
8843707919 fix only bind inputs that are part of microsyntax to a structural directive (#52453)
38c9921ff3 fix signal not invoked diagnostic not raised when input has same name in template (#63754)

core

Commit Type Description
802dbcc2a0 fix prevent animation events from being cleaned up on destroy (#63414)
3ec8a5c753 fix Prevent leave animations on a move operation (#63745)

migrations

Commit Type Description
6e54bdfdcb fix fix route-lazy-loading migration (#63818)

18.2.14 (2025-09-10)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

    (cherry picked from commit 8bf80c9d2314b4f2bcf3df83ae01552a6fc49834)

core

Commit Type Description
9d1fb33f5e fix introduce BootstrapContext for improved server bootstrapping (#63640)

... (truncated)

Commits
  • 423cc17 refactor(common): trim undefined from locale data. (#63520)
  • b05552f docs: add documentation for NG02802 warning about HttpTransferCache headers (...
  • 1b7f530 build: add a noDuplicateEnumValue rule (#63483)
  • See full diff in compare view

Updates @angular/compiler from 20.3.0 to 20.3.1

Release notes

Sourced from @​angular/compiler's releases.

20.3.1

compiler

Commit Description
fix - 7fb5a8087e Add support for aria-invalid (#63748)

compiler-cli

Commit Description
fix - 8843707919 only bind inputs that are part of microsyntax to a structural directive (#52453)
fix - 38c9921ff3 signal not invoked diagnostic not raised when input has same name in template (#63754)

core

Commit Description
fix - 802dbcc2a0 prevent animation events from being cleaned up on destroy (#63414)
fix - 3ec8a5c753 Prevent leave animations on a move operation (#63745)

migrations

Commit Description
fix - 6e54bdfdcb fix route-lazy-loading migration (#63818)
Changelog

Sourced from @​angular/compiler's changelog.

20.3.1 (2025-09-17)

compiler

Commit Type Description
7fb5a8087e fix Add support for aria-invalid (#63748)

compiler-cli

Commit Type Description
8843707919 fix only bind inputs that are part of microsyntax to a structural directive (#52453)
38c9921ff3 fix signal not invoked diagnostic not raised when input has same name in template (#63754)

core

Commit Type Description
802dbcc2a0 fix prevent animation events from being cleaned up on destroy (#63414)
3ec8a5c753 fix Prevent leave animations on a move operation (#63745)

migrations

Commit Type Description
6e54bdfdcb fix fix route-lazy-loading migration (#63818)

18.2.14 (2025-09-10)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

    (cherry picked from commit 8bf80c9d2314b4f2bcf3df83ae01552a6fc49834)

core

Commit Type Description
9d1fb33f5e fix introduce BootstrapContext for improved server bootstrapping (#63640)

... (truncated)

Commits

Updates @angular/core from 20.3.0 to 20.3.1

Release notes

Sourced from @​angular/core's releases.

20.3.1

compiler

Commit Description
fix - 7fb5a8087e Add support for aria-invalid (#63748)

compiler-cli

Commit Description
fix - 8843707919 only bind inputs that are part of microsyntax to a structural directive (#52453)
fix - 38c9921ff3 signal not invoked diagnostic not raised when input has same name in template (#63754)

core

Commit Description
fix - 802dbcc2a0 prevent animation events from being cleaned up on destroy (#63414)
fix - 3ec8a5c753 Prevent leave animations on a move operation (#63745)

migrations

Commit Description
fix - 6e54bdfdcb fix route-lazy-loading migration (#63818)
Changelog

Sourced from @​angular/core's changelog.

20.3.1 (2025-09-17)

compiler

Commit Type Description
7fb5a8087e fix Add support for aria-invalid (#63748)

compiler-cli

Commit Type Description
8843707919 fix only bind inputs that are part of microsyntax to a structural directive (#52453)
38c9921ff3 fix signal not invoked diagnostic not raised when input has same name in template (#63754)

core

Commit Type Description
802dbcc2a0 fix prevent animation events from being cleaned up on destroy (#63414)
3ec8a5c753 fix Prevent leave animations on a move operation (#63745)

migrations

Commit Type Description
6e54bdfdcb fix fix route-lazy-loading migration (#63818)

18.2.14 (2025-09-10)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

    (cherry picked from commit 8bf80c9d2314b4f2bcf3df83ae01552a6fc49834)

core

Commit Type Description
9d1fb33f5e fix introduce BootstrapContext for improved server bootstrapping (#63640)

... (truncated)

Commits
  • 79a818b build: update cross-repo angular dependencies (#63877)
  • dcdca98 refactor(core): remove usages of Promise.withResolvers (#63856)
  • 423cc17 refactor(common): trim undefined from locale data. (#63520)
  • dd6e1c3 refactor(core): prevent input migration from introducing a breaking change (#...
  • 6e54bdf fix(migrations): fix route-lazy-loading migration (#63818)
  • 0afd9c5 refactor(core): swap dev/prod error handling order in injector for tree-shaki...
  • c80d9ba docs: update doc to clear up difference between toObservable/ `outputToObse...
  • 4a23f6e refactor(core): wrap checkNoChanges body in if (ngDevMode) for better tre...
  • 5fd0082 refactor(compiler-cli): Add a diagnostic to detect forbiden invocations of re...
  • c8d3439 refactor(core): Reorganize and cleanup animations code (#63775)
  • Additional commits viewable in compare view

Updates @angular/forms from 20.3.0 to 20.3.1

Release notes

Sourced from @​angular/forms's releases.

20.3.1

compiler

Commit Description
fix - 7fb5a8087e Add support for aria-invalid (#63748)

compiler-cli

Commit Description
fix - 8843707919 only bind inputs that are part of microsyntax to a structural directive (#52453)
fix - 38c9921ff3 signal not invoked diagnostic not raised when input has same name in template (#63754)

core

Commit Description
fix - 802dbcc2a0 prevent animation events from being cleaned up on destroy (#63414)
fix - 3ec8a5c753 Prevent leave animations on a move operation (#63745)

migrations

Commit Description
fix - 6e54bdfdcb fix route-lazy-loading migration (#63818)
Changelog

Sourced from @​angular/forms's changelog.

20.3.1 (2025-09-17)

compiler

Commit Type Description
7fb5a8087e fix Add support for aria-invalid (#63748)

compiler-cli

Commit Type Description
8843707919 fix only bind inputs that are part of microsyntax to a structural directive (#52453)
38c9921ff3 fix signal not invoked diagnostic not raised when input has same name in template (#63754)

core

Commit Type Description
802dbcc2a0 fix prevent animation events from being cleaned up on destroy (#63414)
3ec8a5c753 fix Prevent leave animations on a move operation (#63745)

migrations

Commit Type Description
6e54bdfdcb fix fix route-lazy-loading migration (#63818)

18.2.14 (2025-09-10)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

    (cherry picked from commit 8bf80c9d2314b4f2bcf3df83ae01552a6fc49834)

core

Commit Type Description
9d1fb33f5e fix introduce BootstrapContext for improved server bootstrapping (#63640)

... (truncated)

Commits

Updates @angular/localize from 20.3.0 to 20.3.1

Release notes

Sourced from @​angular/localize's releases.

20.3.1

compiler

Commit Description
fix - 7fb5a8087e Add support for aria-invalid (#63748)

compiler-cli

Commit Description
fix - 8843707919 only bind inputs that are part of microsyntax to a structural directive (#52453)
fix - 38c9921ff3 signal not invoked diagnostic not raised when input has same name in template (#63754)

core

Commit Description
fix - 802dbcc2a0 prevent animation events from being cleaned up on destroy (#63414)
fix - 3ec8a5c753 Prevent leave animations on a move operation (#63745)

migrations

Commit Description
fix - 6e54bdfdcb fix route-lazy-loading migration (#63818)
Changelog

Sourced from @​angular/localize's changelog.

20.3.1 (2025-09-17)

compiler

Commit Type Description
7fb5a8087e fix Add support for aria-invalid (#63748)

compiler-cli

Commit Type Description
8843707919 fix only bind inputs that are part of microsyntax to a structural directive (#52453)
38c9921ff3 fix signal not invoked diagnostic not raised when input has same name in template (#63754)

core

Commit Type Description
802dbcc2a0 fix prevent animation events from being cleaned up on destroy (#63414)
3ec8a5c753 fix Prevent leave animations on a move operation (#63745)

migrations

Commit Type Description
6e54bdfdcb fix fix route-lazy-loading migration (#63818)

18.2.14 (2025-09-10)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

    (cherry picked from commit 8bf80c9d2314b4f2bcf3df83ae01552a6fc49834)

core

Commit Type Description
9d1fb33f5e fix introduce BootstrapContext for improved server bootstrapping (#63640)

... (truncated)

Commits
  • 2a15d78 release: cut the v20.3.1 release
  • 669c7c0 build: update cross-repo angular dependencies (#63880)
  • 79a818b build: update cross-repo angular dependencies (#63877)
  • 8843707 fix(compiler-cli): only bind inputs that are part of microsyntax to a structu...
  • bd2caa4 build: update pnpm to v10.17.0 (#63870)
  • dcdca98 refactor(core): remove usages of Promise.withResolvers (#63856)
  • 423cc17 refactor(common): trim undefined from locale data. (#63520)
  • 5cc6c42 docs(docs-infra): store search result fragment in search history (#63866)
  • 97969b1 docs(docs-infra): always include fragment in search results (#63866)
  • 1c7106a docs: fix pluralization error in templates guide (#63854)
  • Additional commits viewable in compare view

Updates @angular/platform-browser from 20.3.0 to 20.3.1

Release notes

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

20.3.1

compiler

Commit Description
fix - 7fb5a8087e Add support for aria-invalid (#63748)

compiler-cli

Commit Description
fix - 8843707919 only bind inputs that are part of microsyntax to a structural directive (#52453)
fix - 38c9921ff3 signal not invoked diagnostic not raised when input has same name in template (#63754)

core

Commit Description
fix - 802dbcc2a0 prevent animation events from being cleaned up on destroy (#63414)
fix - 3ec8a5c753 Prevent leave animations on a move operation (#63745)

migrations

Commit Description
fix - 6e54bdfdcb fix route-lazy-loading migration (#63818)
Changelog

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

20.3.1 (2025-09-17)

compiler

Commit Type Description
7fb5a8087e fix Add support for aria-invalid (#63748)

compiler-cli

Commit Type Description
8843707919 fix only bind inputs that are part of microsyntax to a structural directive (#52453)
38c9921ff3 fix signal not invoked diagnostic not raised when input has same name in template (#63754)

core

Commit Type Description
802dbcc2a0 fix prevent animation events from being cleaned up on destroy (#63414)
3ec8a5c753 fix Prevent leave animations on a move operation (#63745)

migrations

Commit Type Description
6e54bdfdcb fix fix route-lazy-loading migration (#63818)

18.2.14 (2025-09-10)

Breaking Changes

core

  • The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.

    Before:

    const bootstrap = () => bootstrapApplication(AppComponent, config);

    After:

    const bootstrap = (context: BootstrapContext) =>
      bootstrapApplication(AppComponent, config, context);

    A schematic is provided to automatically update main.server.ts files to pass the BootstrapContext to the bootstrapApplication call.

    In addition, getPlatform() and destroyPlatform() will now return null and be a no-op respectively when running in a server environment.

    (cherry picked from commit 8bf80c9d2314b4f2bcf3df83ae01552a6fc49834)

core

Commit Type Description
9d1fb33f5e fix introduce BootstrapContext for improved server bootstrapping (#63640)

... (truncated)

Commits

Updates @angular/platform-browser-dynamic from 20.3.0 to 20.3.1

Release notes

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

20.3.1

compiler

Commit Description

Bumps the angular group in /turing-ui with 15 updates:

| Package | From | To |
| --- | --- | --- |
| [@angular/animations](https://github.com/angular/angular/tree/HEAD/packages/animations) | `20.3.0` | `20.3.1` |
| [@angular/cdk](https://github.com/angular/components) | `20.2.3` | `20.2.4` |
| [@angular/common](https://github.com/angular/angular/tree/HEAD/packages/common) | `20.3.0` | `20.3.1` |
| [@angular/compiler](https://github.com/angular/angular/tree/HEAD/packages/compiler) | `20.3.0` | `20.3.1` |
| [@angular/core](https://github.com/angular/angular/tree/HEAD/packages/core) | `20.3.0` | `20.3.1` |
| [@angular/forms](https://github.com/angular/angular/tree/HEAD/packages/forms) | `20.3.0` | `20.3.1` |
| [@angular/localize](https://github.com/angular/angular) | `20.3.0` | `20.3.1` |
| [@angular/platform-browser](https://github.com/angular/angular/tree/HEAD/packages/platform-browser) | `20.3.0` | `20.3.1` |
| [@angular/platform-browser-dynamic](https://github.com/angular/angular/tree/HEAD/packages/platform-browser-dynamic) | `20.3.0` | `20.3.1` |
| [@angular/router](https://github.com/angular/angular/tree/HEAD/packages/router) | `20.3.0` | `20.3.1` |
| [@angular/build](https://github.com/angular/angular-cli) | `20.3.1` | `20.3.2` |
| [@angular/cli](https://github.com/angular/angular-cli) | `20.3.1` | `20.3.2` |
| [@angular/compiler-cli](https://github.com/angular/angular/tree/HEAD/packages/compiler-cli) | `20.3.0` | `20.3.1` |
| [@angular/language-service](https://github.com/angular/angular/tree/HEAD/packages/language-service) | `20.3.0` | `20.3.1` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `24.4.0` | `24.5.2` |


Updates `@angular/animations` from 20.3.0 to 20.3.1
- [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.3.1/packages/animations)

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

Updates `@angular/common` from 20.3.0 to 20.3.1
- [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.3.1/packages/common)

Updates `@angular/compiler` from 20.3.0 to 20.3.1
- [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.3.1/packages/compiler)

Updates `@angular/core` from 20.3.0 to 20.3.1
- [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.3.1/packages/core)

Updates `@angular/forms` from 20.3.0 to 20.3.1
- [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.3.1/packages/forms)

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

Updates `@angular/platform-browser` from 20.3.0 to 20.3.1
- [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.3.1/packages/platform-browser)

Updates `@angular/platform-browser-dynamic` from 20.3.0 to 20.3.1
- [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.3.1/packages/platform-browser-dynamic)

Updates `@angular/router` from 20.3.0 to 20.3.1
- [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.3.1/packages/router)

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

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

Updates `@angular/compiler-cli` from 20.3.0 to 20.3.1
- [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.3.1/packages/compiler-cli)

Updates `@angular/language-service` from 20.3.0 to 20.3.1
- [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.3.1/packages/language-service)

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

---
updated-dependencies:
- dependency-name: "@angular/animations"
  dependency-version: 20.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: angular
- dependency-name: "@angular/cdk"
  dependency-version: 20.2.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: angular
- dependency-name: "@angular/common"
  dependency-version: 20.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: angular
- dependency-name: "@angular/compiler"
  dependency-version: 20.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: angular
- dependency-name: "@angular/core"
  dependency-version: 20.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: angular
- dependency-name: "@angular/forms"
  dependency-version: 20.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: angular
- dependency-name: "@angular/localize"
  dependency-version: 20.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: angular
- dependency-name: "@angular/platform-browser"
  dependency-version: 20.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: angular
- dependency-name: "@angular/platform-browser-dynamic"
  dependency-version: 20.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: angular
- dependency-name: "@angular/router"
  dependency-version: 20.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: angular
- dependency-name: "@angular/build"
  dependency-version: 20.3.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: angular
- dependency-name: "@angular/cli"
  dependency-version: 20.3.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: angular
- dependency-name: "@angular/compiler-cli"
  dependency-version: 20.3.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: angular
- dependency-name: "@angular/language-service"
  dependency-version: 20.3.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: angular
- dependency-name: "@types/node"
  dependency-version: 24.5.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  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 22, 2025
@alegauss alegauss merged commit 3c99de1 into 2025.3 Sep 22, 2025
3 of 4 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/turing-ui/2025.3/angular-c0b6d91a30 branch September 22, 2025 13:38
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