yarn @angular/core 20.3.0-rc.0

latest releases: 18.2.14, 19.2.15, 21.0.0-next.3...
15 hours ago

Commit Description
fix - a3f808d7c8 remove refresh button from transfer state tab (#63592)

core

Commit Description
feat - 6117ccee2e introduce BootstrapContext for improved server bootstrapping (#63636)

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 8bf80c9)

Don't miss a new core release

NewReleases is sending notifications on new releases.