An open index of dependabot pull requests across open source projects.

Bump the angular-version-updates group with 17 updates

Open
Number: #537
Type: Pull Request
State: Open
Author: dependabot[bot] dependabot[bot]
Association: Contributor
Comments: 0
Created: September 15, 2025 at 08:18 PM UTC
(17 days ago)
Updated: September 15, 2025 at 08:18 PM UTC
(17 days ago)
Labels:
dependencies javascript
Description:

Bumps the angular-version-updates group with 17 updates:

Package From To
@angular/animations 19.2.14 19.2.15
@angular/common 19.2.14 19.2.15
@angular/compiler 19.2.14 19.2.15
@angular/core 19.2.14 19.2.15
@angular/forms 19.2.14 19.2.15
@angular/platform-browser 19.2.14 19.2.15
@angular/platform-browser-dynamic 19.2.14 19.2.15
@angular/router 19.2.14 19.2.15
@angular-devkit/build-angular 19.2.15 19.2.16
@angular/cli 19.2.15 19.2.16
@angular/compiler-cli 19.2.14 19.2.15
@angular/language-service 19.2.14 19.2.15
@angular-devkit/architect 0.1902.15 0.1902.16
@angular-devkit/build-webpack 0.1902.15 0.1902.16
@angular-devkit/core 19.2.15 19.2.16
@angular-devkit/schematics 19.2.15 19.2.16
@angular/build 19.2.15 19.2.16

Updates @angular/animations from 19.2.14 to 19.2.15

Release notes

Sourced from @​angular/animations's releases.

19.2.15

core

Commit Description
fix - 70d0639bc1 introduce BootstrapContext for improved server bootstrapping (#63639)

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: https://github.com/angular/angular/security/advisories/GHSA-68x2-mx4q-78m7

Changelog

Sourced from @​angular/animations's changelog.

19.2.15 (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.

core

Commit Type Description
70d0639bc1 fix introduce BootstrapContext for improved server bootstrapping (#63639)

21.0.0-next.3 (2025-09-10)

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.

... (truncated)

Commits

Updates @angular/common from 19.2.14 to 19.2.15

Release notes

Sourced from @​angular/common's releases.

19.2.15

core

Commit Description
fix - 70d0639bc1 introduce BootstrapContext for improved server bootstrapping (#63639)

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: https://github.com/angular/angular/security/advisories/GHSA-68x2-mx4q-78m7

Changelog

Sourced from @​angular/common's changelog.

19.2.15 (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.

core

Commit Type Description
70d0639bc1 fix introduce BootstrapContext for improved server bootstrapping (#63639)

21.0.0-next.3 (2025-09-10)

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.

... (truncated)

Commits

Updates @angular/compiler from 19.2.14 to 19.2.15

Release notes

Sourced from @​angular/compiler's releases.

19.2.15

core

Commit Description
fix - 70d0639bc1 introduce BootstrapContext for improved server bootstrapping (#63639)

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: https://github.com/angular/angular/security/advisories/GHSA-68x2-mx4q-78m7

Changelog

Sourced from @​angular/compiler's changelog.

19.2.15 (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.

core

Commit Type Description
70d0639bc1 fix introduce BootstrapContext for improved server bootstrapping (#63639)

21.0.0-next.3 (2025-09-10)

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.

... (truncated)

Commits

Updates @angular/core from 19.2.14 to 19.2.15

Release notes

Sourced from @​angular/core's releases.

19.2.15

core

Commit Description
fix - 70d0639bc1 introduce BootstrapContext for improved server bootstrapping (#63639)

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: https://github.com/angular/angular/security/advisories/GHSA-68x2-mx4q-78m7

Changelog

Sourced from @​angular/core's changelog.

19.2.15 (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.

core

Commit Type Description
70d0639bc1 fix introduce BootstrapContext for improved server bootstrapping (#63639)

21.0.0-next.3 (2025-09-10)

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.

... (truncated)

Commits
  • 70d0639 fix(core): introduce BootstrapContext for improved server bootstrapping (#6...
  • See full diff in compare view

Updates @angular/forms from 19.2.14 to 19.2.15

Release notes

Sourced from @​angular/forms's releases.

19.2.15

core

Commit Description
fix - 70d0639bc1 introduce BootstrapContext for improved server bootstrapping (#63639)

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: https://github.com/angular/angular/security/advisories/GHSA-68x2-mx4q-78m7

Changelog

Sourced from @​angular/forms's changelog.

19.2.15 (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.

core

Commit Type Description
70d0639bc1 fix introduce BootstrapContext for improved server bootstrapping (#63639)

21.0.0-next.3 (2025-09-10)

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.

... (truncated)

Commits

Updates @angular/platform-browser from 19.2.14 to 19.2.15

Release notes

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

19.2.15

core

Commit Description
fix - 70d0639bc1 introduce BootstrapContext for improved server bootstrapping (#63639)

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: https://github.com/angular/angular/security/advisories/GHSA-68x2-mx4q-78m7

Changelog

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

19.2.15 (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.

core

Commit Type Description
70d0639bc1 fix introduce BootstrapContext for improved server bootstrapping (#63639)

21.0.0-next.3 (2025-09-10)

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.

... (truncated)

Commits
  • 70d0639 fix(core): introduce BootstrapContext for improved server bootstrapping (#6...
  • See full diff in compare view

Updates @angular/platform-browser-dynamic from 19.2.14 to 19.2.15

Release notes

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

19.2.15

core

Commit Description
fix - 70d0639bc1 introduce BootstrapContext for improved server bootstrapping (#63639)

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: https://github.com/angular/angular/security/advisories/GHSA-68x2-mx4q-78m7

Changelog

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

19.2.15 (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.

core

Commit Type Description
70d0639bc1 fix introduce BootstrapContext for improved server bootstrapping (#63639)

21.0.0-next.3 (2025-09-10)

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.

... (truncated)

Commits

Updates @angular/router from 19.2.14 to 19.2.15

Release notes

Sourced from @​angular/router's releases.

19.2.15

core

Commit Description
fix - 70d0639bc1 introduce BootstrapContext for improved server bootstrapping (#63639)

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: https://github.com/angular/angular/security/advisories/GHSA-68x2-mx4q-78m7

Changelog

Sourced from @​angular/router's changelog.

19.2.15 (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.

core

Commit Type Description
70d0639bc1 fix introduce BootstrapContext for improved server bootstrapping (#63639)

21.0.0-next.3 (2025-09-10)

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.

... (truncated)

Commits

Updates @angular-devkit/build-angular from 19.2.15 to 19.2.16

Release notes

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

19.2.16

@​angular-devkit/build-angular

Commit Description
fix - b0f4330a9 avoid extra tick in SSR builds

@​angular/build

Commit Description
fix - ee5c5f823 avoid extra tick in SSR dev-server builds

@​angular/ssr

Commit Description
feat - 32980f7e7 introduce BootstrapContext for isolated server-side rendering

Breaking Changes

@​angular/ssr

  • 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);
    

For more information please see: https://github.com/angular/angular/security/advisories/GHSA-68x2-mx4q-78m7

Changelog

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

19.2.16 (2025-09-10)

Breaking Changes

@​angular/ssr

  • 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);
    

@​angular-devkit/build-angular

Commit Type Description
b0f4330a9 fix avoid extra tick in SSR builds

@​angular/build

Commit Type Description
ee5c5f823 fix avoid extra tick in SSR dev-server builds

@​angular/ssr

Commit Type Description
32980f7e7 feat introduce BootstrapContext for isolated server-side rendering

21.0.0-next.3 (2025-09-10)

Breaking Changes

@​angular/build

    • TypeScript versions older than 5.9 are no longer supported.

... (truncated)

Commits
  • fe9ea0d release: cut the v19.2.16 release
  • c4278aa build: update Angular FW packages to latest patch
  • ee5c5f8 fix(@​angular/build): avoid extra tick in SSR dev-server builds
  • b0f4330 fix(@​angular-devkit/build-angular): avoid extra tick in SSR builds
  • 32980f7 feat(@​angular/ssr): introduce BootstrapContext for isolated server-side rende...
  • c6eba4d ci: update to latest version of dev-infra actions
  • See full diff in compare view

Updates @angular/cli from 19.2.15 to 19.2.16

Release notes

Sourced from @​angular/cli's releases.

19.2.16

@​angular-devkit/build-angular

Commit Description
fix - b0f4330a9 avoid extra tick in SSR builds

@​angular/build

Commit Description
fix - ee5c5f823 avoid extra tick in SSR dev-server builds

@​angular/ssr

Commit Description
feat - 32980f7e7 introduce BootstrapContext for isolated server-side rendering

Breaking Changes

@​angular/ssr

  • 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);
    

For more information please see: https://github.com/angular/angular/security/advisories/GHSA-68x2-mx4q-78m7

Changelog

Sourced from @​angular/cli's changelog.

19.2.16 (2025-09-10)

Breaking Changes

@​angular/ssr

  • 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);
    

@​angular-devkit/build-angular

Commit Type Description
b0f4330a9 fix avoid extra tick in SSR builds

@​angular/build

Commit Type Description
ee5c5f823 fix avoid extra tick in SSR dev-server builds

@​angular/ssr

Commit Type Description
32980f7e7 feat introduce BootstrapContext for isolated server-side rendering

21.0.0-next.3 (2025-09-10)

Breaking Changes

@​angular/build

    • TypeScript versions older than 5.9 are no longer supported.

... (truncated)

Commits
  • fe9ea0d release: cut the v19.2.16 release
  • c4278aa build: update Angular FW packages to latest patch
  • ee5c5f8 fix(@​angular/build): avoid extra tick in SSR dev-server builds
  • b0f4330 fix(@​angular-devkit/build-angular): avoid extra tick in SSR builds
  • 32980f7 feat(@​angular/ssr): introduce BootstrapContext for isolated server-side rende...
  • c6eba4d ci: update to latest version of dev-infra actions
  • See full diff in compare view

Updates @angular/compiler-cli from 19.2.14 to 19.2.15

Release notes

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

19.2.15

core

Commit Description
fix - 70d0639bc1 introduce BootstrapContext for improved server bootstrapping (#63639)

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: https://github.com/angular/angular/security/advisories/GHSA-68x2-mx4q-78m7

Changelog

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

19.2.15 (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.

core

Commit Type Description
70d0639bc1 fix introduce BootstrapContext for improved server bootstrapping (#63639)

21.0.0-next.3 (2025-09-10)

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.

... (truncated)

Commits

Updates @angular/language-service from 19.2.14 to 19.2.15

Release notes

Sourced from @​angular/language-service's releases.

19.2.15

core

Commit Description
fix - 70d0639bc1 introduce BootstrapContext for improved server bootstrapping (#63639)

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: https://github.com/angular/angular/security/advisories/GHSA-68x2-mx4q-78m7

Changelog

Sourced from @​angular/language-service's changelog.

19.2.15 (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.

core

Commit Type Description
70d0639bc1 fix introduce BootstrapContext for improved server bootstrapping (#63639)

21.0.0-next.3 (2025-09-10)

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.

... (truncated)

Commits

Updates @angular-devkit/architect from 0.1902.15 to 0.1902.16

Commits

Updates @angular-devkit/build-webpack from 0.1902.15 to 0.1902.16

Commits

Updates @angular-devkit/core from 19.2.15 to 19.2.16

Release notes

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

19.2.16

@​angular-devkit/build-angular

Commit Description
fix - b0f4330a9 avoid extra tick in SSR builds

@​angular/build

Commit Description
fix - ee5c5f823 avoid extra tick in SSR dev-server builds

@​angular/ssr

Commit Description
feat - 32980f7e7 introduce BootstrapContext for isolated server-side rendering

Breaking Changes

@​angular/ssr

  • 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);
    

For more information please see: https://github.com/angular/angular/security/advisories/GHSA-68x2-mx4q-78m7

ChangelogDescription has been truncated

Pull Request Statistics
Commits:
0
Files Changed:
0
Additions:
+0
Deletions:
-0
Package Dependencies
Ecosystem:
npm
Version Change:
19.2.14 → 19.2.15
Update Type:
Patch
Ecosystem:
npm
Version Change:
19.2.14 → 19.2.15
Update Type:
Patch
Ecosystem:
npm
Version Change:
19.2.14 → 19.2.15
Update Type:
Patch
Ecosystem:
npm
Version Change:
19.2.14 → 19.2.15
Update Type:
Patch
Ecosystem:
npm
Version Change:
19.2.14 → 19.2.15
Update Type:
Patch
Ecosystem:
npm
Version Change:
19.2.14 → 19.2.15
Update Type:
Patch
Ecosystem:
npm
Version Change:
19.2.15 → 19.2.16
Update Type:
Patch
Ecosystem:
npm
Version Change:
19.2.14 → 19.2.15
Update Type:
Patch
Ecosystem:
npm
Version Change:
19.2.14 → 19.2.15
Update Type:
Patch
Ecosystem:
npm
Version Change:
19.2.14 → 19.2.15
Update Type:
Patch
Ecosystem:
npm
Version Change:
19.2.15 → 19.2.16
Update Type:
Patch
Ecosystem:
npm
Version Change:
19.2.14 → 19.2.15
Update Type:
Patch
Ecosystem:
npm
Version Change:
19.2.15 → 19.2.16
Update Type:
Patch
Ecosystem:
npm
Version Change:
19.2.15 → 19.2.16
Update Type:
Patch
Ecosystem:
npm
Version Change:
0.1902.15 → 0.1902.16
Update Type:
Patch
Ecosystem:
npm
Version Change:
19.2.15 → 19.2.16
Update Type:
Patch
Ecosystem:
npm
Version Change:
0.1902.15 → 0.1902.16
Update Type:
Patch
Technical Details
ID: 7830638
UUID: 2830523231
Node ID: PR_kwDONUyxgM6otltf
Host: GitHub
Repository: mrlonis/example-angular-theme-lib