Skip to content
This repository was archived by the owner on Nov 21, 2025. It is now read-only.

Conversation

@angular-robot
Copy link
Collaborator

@angular-robot angular-robot commented May 12, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@angular/common (source) 13.3.9 -> 21.0.0-next.5 age adoption passing confidence dependencies major
@angular/common (source) 18.1.0-rc.0 -> 21.0.0-next.5 age adoption passing confidence dependencies major
@angular/common (source) 18.2.10 -> 21.0.0-next.5 age adoption passing confidence dependencies major
@angular/common (source) 12.2.16 -> 21.0.0-next.5 age adoption passing confidence dependencies major
@angular/compiler (source) 13.3.9 -> 21.0.0-next.5 age adoption passing confidence dependencies major
@angular/compiler (source) 18.1.0-rc.0 -> 21.0.0-next.5 age adoption passing confidence dependencies major
@angular/compiler (source) 12.2.16 -> 21.0.0-next.5 age adoption passing confidence dependencies major
@angular/compiler-cli (source) 13.3.9 -> 21.0.0-next.5 age adoption passing confidence dependencies major
@angular/compiler-cli (source) 18.1.0-rc.0 -> 21.0.0-next.5 age adoption passing confidence dependencies major
@angular/compiler-cli (source) 12.2.16 -> 21.0.0-next.5 age adoption passing confidence dependencies major
@angular/core (source) ^20.0.0-rc.2 -> ^21.0.0-next age adoption passing confidence devDependencies major
@angular/core (source) 13.3.9 -> 21.0.0-next.5 age adoption passing confidence dependencies major
@angular/core (source) 18.1.0-rc.0 -> 21.0.0-next.5 age adoption passing confidence dependencies major
@angular/core (source) ^13.0.0 -> ^21.0.0-next age adoption passing confidence peerDependencies major
@angular/core (source) 18.2.10 -> 21.0.0-next.5 age adoption passing confidence dependencies major
@angular/core (source) 12.2.16 -> 21.0.0-next.5 age adoption passing confidence dependencies major
@angular/language-service (source) 20.2.0-rc.1 -> 21.0.0-next.5 age adoption passing confidence dependencies major
@angular/ng-dev 586406b -> ff6c1e3 devDependencies digest
angular/dev-infra f89362d -> a6e4cb8 action digest
ng-packagr ^18.0.0-next.0 -> ^21.0.0-next age adoption passing confidence devDependencies major

🔡 If you wish to disable git hash updates, add ":disableDigestUpdates" to the extends array in your config.


Release Notes

angular/angular (@​angular/common)

v21.0.0-next.5

Compare Source

common
Commit Type Description
8ca3e3a0bc feat update to cldr 47 (#​63923)
compiler-cli
Commit Type Description
4c091abba6 fix capture metadata for undecorated fields (#​63904)
3bd91ded43 fix resolve import alias in defer blocks (#​63966)
core
Commit Type Description
539717f58a feat support regular expressions in templates (#​63887)
f008045ded fix do not rename ARIA property bindings to attributes (#​63925)
fec7c288e9 fix Error on invalid APP_ID (#​63252)
50d9d55f49 fix fix narrowing of Resource.hasValue() (#​63994)
dde5badb71 fix prevent animations renderer from impacting animate.leave (#​63921)
forms
Commit Type Description
c0d88c37c9 fix Emit FormResetEvent when resetting control (#​64024)
migrations
Commit Type Description
aeb3e6c6a5 fix handle import aliases to the same module name (#​63934)
b96afb4bfc fix handle reused templates in control flow migration (#​63996)

v21.0.0-next.4

Compare Source

Breaking Changes

common
  • ngComponentOutletContent is now of type Node[][] | undefined instead of any[][] | undefined.
core
  • Using a combination of provideZoneChangeDetection
    while also removing ZoneJS polyfills will no longer result in the
    internal scheduler being disabled. All Angular applications now
    consistenly use the same scheduler, and those with the Zone change detection
    provider include additional automatic scheduling behaviors based on
    NgZone stabilization.
  • Angular no longer provides a change detection scheduler
    for ZoneJS-based change detection by default. Add
    provideZoneChangeDetection to the providers of your
    bootstrapApplication function or your AppModule (if using
    bootstrapModule). This provider addition will be covered by an
    automated migration.
  • moduleId was removed from Component metadata.
  • The interpolation option on Components has been removed. Only the default {{ ... }} is now supported.
common
Commit Type Description
7a4b225c57 refactor improve typing of ngComponentOutletContent (#​63674)
compiler
Commit Type Description
803dc8e44c fix Add support for aria-invalid (#​63748)
compiler-cli
Commit Type Description
89cf62f907 fix only bind inputs that are part of microsyntax to a structural directive (#​52453)
7fd3db0423 fix remove internal syntax-related flags (#​63787)
0a60e355e1 fix signal not invoked diagnostic not raised when input has same name in template (#​63754)
core
Commit Type Description
809a4ed8c1 feat Add migration for zoneless by default. (#​63042)
1352fbdbf2 fix Drop special-case disables automatic change detection scheduling (#​63846)
3d6eeab2e0 fix prevent animation events from being cleaned up on destroy (#​63414)
a4001c440f fix Prevent leave animations on a move operation (#​63745)
45fed3d201 fix Remove Zone-based change provider from internals by default (#​63382)
a5e5dbbc16 refactor remove moduleId from Component metadata (#​63482)
9a16718b13 refactor remove deprecated interpolation option on Components. (#​63474)
forms
Commit Type Description
d201cd2c2b feat Prevents marking fields as touched/dirty when state is hidden/readonly/disabled (#​63633)
migrations
Commit Type Description
8dc8914c8a feat add migration to convert ngStyle to use style (#​63517)
4133b08d93 fix fix route-lazy-loading migration (#​63818)

v21.0.0-next.3

Compare Source

Breaking Changes

compiler-cli
    • Previously hidden type issues in host bindings may show up in your builds. Either resolve the type issues or set "typeCheckHostBindings": false in the angularCompilerOptions section of your tsconfig.
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.

    • TypeScript versions less than 5.9 are no longer supported.
Commit Type Description
ef025880cc fix remove refresh button from transfer state tab (#​63592)
compiler-cli
Commit Type Description
0571b335b9 feat enable type checking of host bindings by default (#​63654)
core
Commit Type Description
28926ba92c feat introduce BootstrapContext for improved server bootstrapping (#​63562)
c0791e1887 fix drop support for TypeScript 5.8 (#​63589)
migrations
Commit Type Description
655a99d0c6 fix fix bug in ngclass-to-class migration (#​63617)

v21.0.0-next.2

Compare Source

Breaking Changes

common
  • (test only) - TestBed now provides a fake PlatformLocation
    implementation that supports the Navigation API. This may break some
    tests, though we have not observed any failures internally. You can revert to the
    old default for TestBed by providing the MockPlatformLocation from
    @angular/common/testing in your providers:
    {provide: PlatformLocation, useClass: MockPlatformLocation}
core
  • (test only) - Using provideZoneChangeDetection in the
    TestBed providers would previously prevent TestBed from rethrowing
    errors as it should. Errors in the test will now be rethrown, regardless
    of the usage of provideZoneChangeDetection. Tests should be adjusted to
    prevent or account for these errors. As in previous major versions,
    this behavior can be disabled with rethrowApplicationErrors: false in
    configureTestingModule as a last resort.
  • ignoreChangesOutsideZone is no longer available as an
    option for configuring ZoneJS change detection behavior.
platform-browser
  • The deprecated ApplicationConfig export from @angular/platform-browser has been removed.
    Please import ApplicationConfig from @angular/core instead.
router
  • Router navigations may take several additional
    microtasks to complete. Tests have been found to often be highly
    dependent on the exact timing of navigation completions with respect to
    the microtask queue. The most common fix for tests is to ensure all
    navigations have been completed before making assertions. On rare
    occasions, this can also affect production applications. This can be
    caused by multiple subscriptions to router state throughout the application,
    both of which trigger navigations that happened to not conflict with the
    previous timing.
upgrade
  • UpgradeAdapter is no longer available. Use
    upgrade/static instead
common
Commit Type Description
c795960ada feat Add experimental support for the Navigation API (#​63406)
compiler
Commit Type Description
0a82138d4b fix fixes regression with event parsing and animate prefix (#​63470)
core
Commit Type Description
538de86a72 fix avoid injecting internal error handler from a destroyed injector (#​62275)
d399d7d02b fix Explicit Zone CD in TestBed providers should not override TestBed error handler (#​63404)
ed3d1f246b fix Fix cancellation of animation enter classes (#​63442)
06f4fd4456 fix Fixed inject migration schematics for migrate destructured properties (#​62832)
9ae9875384 fix Prevent an error on cleanup when an rxResource stream threw before returning an Observable (#​63342)
92e09adc0a fix Remove ignoreChangesOutsideZone option (#​62700)
forms
Commit Type Description
b8314bd340 feat add experimental signal-based forms (#​63408)
10ef96adb3 fix consistent treatment of empty (#​63456)
http
Commit Type Description
07e678872f feat Add reponseType property to HttpResponse and HttpErrorResponse (#​63043)
platform-browser
Commit Type Description
ce8db665f9 refactor remove deprecated ApplicationConfig export (#​63529)
platform-server
Commit Type Description
ee73dc9553 fix prevent false warning for duplicate state serialization (#​63525)
router
Commit Type Description
5b53535dd1 fix Update recognize stage to use internally async/await (#​62994)
upgrade
Commit Type Description
f86846555b fix Remove deprecated UpgradeAdapter (#​61659)

v21.0.0-next.1

Compare Source

Breaking Changes

common
  • NgModuleFactory has been removed, use NgModule instead.
forms
  • This new directive will conflict with existing FormArray directives or formArray inputs on the same element.
common
Commit Type Description
25f593ce2a refactor removengModuleFactory input of NgComponentOutlet (#​62838)
compiler
Commit Type Description
a0388409e3 fix fixes animations on elements with structural directives (#​63390)
827c3c15f4 fix Keep paraenthesis in Nullish + Boolean expression. (#​63292)
core
Commit Type Description
37ead5ffb5 fix Ensures @for loop animations never get cancelled (#​63328)
18c9352d21 fix fix memory leak with leaving nodes tracking (#​63328)
9139fe0d95 fix Fixes animate.leave binding to a string with spaces (#​63366)
forms
Commit Type Description
0dd95c503f feat Add FormArrayDirective (#​55880)
migrations
Commit Type Description
6ddb250391 feat add migration to convert ngClass to use class (#​62983)

v21.0.0-next.0

Compare Source

Breaking Changes

compiler-cli
  • The Angular compiler now produces an error when the
    the emitDeclarationOnly TS compiler option is enabled as this mode is
    not supported.
router
  • lastSuccessfulNavigation is now a signal and needs to be invoked
compiler-cli
Commit Type Description
be7110342b fix disallow compiling with the emitDeclarationOnly TS compiler option enabled (#​61609)
http
Commit Type Description
4bed062bc9 feat Provide http services in root (#​56212)
router
Commit Type Description
4e0fc81491 feat convert lastSuccessfulNavigation to signal (#​63057)

v20.3.2

Compare Source

compiler-cli
Commit Type Description
ba40153ac0 fix capture metadata for undecorated fields (#​63904)
1d4f81c8ee fix resolve import alias in defer blocks (#​63966)
core
Commit Type Description
9515a70933 fix fix narrowing of Resource.hasValue() (#​63994)
e78451cf8a fix prevent animations renderer from impacting animate.leave (#​63921)
forms
Commit Type Description
1fd8d5d446 fix Emit FormResetEvent when resetting control (#​64034)
migrations
Commit Type Description
16d0d43ad4 fix handle import aliases to the same module name (#​63934)
3ebaeccb46 fix handle reused templates in control flow migration (#​63996)

v20.3.1

Compare Source

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

| Commit | Type | Description


Configuration

📅 Schedule: Branch creation - "Every minute, every 2 hours" in timezone America/Tijuana, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@angular-robot angular-robot force-pushed the ng-renovate/cross-repo-angular-dependencies branch from e758ce6 to b1871cd Compare May 12, 2025 17:40
@angular-robot angular-robot changed the title build: update @angular/dev-infra-private digest to 6d9c069 build: update cross-repo angular dependencies May 12, 2025
@angular-robot angular-robot force-pushed the ng-renovate/cross-repo-angular-dependencies branch 16 times, most recently from a7386db to 950c62a Compare May 19, 2025 12:03
@angular-robot angular-robot force-pushed the ng-renovate/cross-repo-angular-dependencies branch 8 times, most recently from 9197463 to 696d4c1 Compare May 26, 2025 06:06
@angular-robot angular-robot force-pushed the ng-renovate/cross-repo-angular-dependencies branch 3 times, most recently from 7add060 to 384a2d3 Compare May 28, 2025 10:06
@angular-robot angular-robot force-pushed the ng-renovate/cross-repo-angular-dependencies branch 15 times, most recently from 3097f16 to a79f5b2 Compare September 17, 2025 21:34
@angular-robot angular-robot force-pushed the ng-renovate/cross-repo-angular-dependencies branch 10 times, most recently from cb63daf to 58e9bd8 Compare September 24, 2025 23:33
@angular-robot angular-robot force-pushed the ng-renovate/cross-repo-angular-dependencies branch 2 times, most recently from e0ff55c to cad4d19 Compare September 26, 2025 10:05
See associated pull request for more information.
@angular-robot angular-robot force-pushed the ng-renovate/cross-repo-angular-dependencies branch from cad4d19 to 0dfa16c Compare September 26, 2025 10:14
@alan-agius4 alan-agius4 closed this Nov 5, 2025
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants