Thanks to visit codestin.com
Credit goes to github.com

Skip to content

20.3.0

Latest
Compare
Choose a tag to compare
@atscott atscott released this 10 Sep 15:02
· 380 commits to main since this release

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.

For more information please see: GHSA-68x2-mx4q-78m7