Bump the angular-version-updates group with 17 updates
Type: Pull Request
State: Open
![dependabot[bot]](https://github.com/dependabot.png)
Association: Contributor
Comments: 0
(17 days ago)
(17 days ago)
dependencies javascript
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 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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
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 theangularCompilerOptions
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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
and be a no-op respectively when running in a server environment.
- TypeScript versions less than 5.9 are no longer supported.
... (truncated)
Commits
- See full diff in compare view
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 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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
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 theangularCompilerOptions
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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
and be a no-op respectively when running in a server environment.
- TypeScript versions less than 5.9 are no longer supported.
... (truncated)
Commits
- See full diff in compare view
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 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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
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 theangularCompilerOptions
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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
and be a no-op respectively when running in a server environment.
- TypeScript versions less than 5.9 are no longer supported.
... (truncated)
Commits
- See full diff in compare view
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 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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
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 theangularCompilerOptions
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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
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): introduceBootstrapContext
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 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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
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 theangularCompilerOptions
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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
and be a no-op respectively when running in a server environment.
- TypeScript versions less than 5.9 are no longer supported.
... (truncated)
Commits
- See full diff in compare view
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 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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
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 theangularCompilerOptions
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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
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): introduceBootstrapContext
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 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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
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 theangularCompilerOptions
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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
and be a no-op respectively when running in a server environment.
- TypeScript versions less than 5.9 are no longer supported.
... (truncated)
Commits
- See full diff in compare view
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 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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
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 theangularCompilerOptions
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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
and be a no-op respectively when running in a server environment.
- TypeScript versions less than 5.9 are no longer supported.
... (truncated)
Commits
- See full diff in compare view
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 avoid extra tick in SSR builds
@angular/build
Commit Description avoid extra tick in SSR dev-server builds
@angular/ssr
Commit Description 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 releasec4278aa
build: update Angular FW packages to latest patchee5c5f8
fix(@angular/build
): avoid extra tick in SSR dev-server buildsb0f4330
fix(@angular-devkit/build-angular
): avoid extra tick in SSR builds32980f7
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 avoid extra tick in SSR builds
@angular/build
Commit Description avoid extra tick in SSR dev-server builds
@angular/ssr
Commit Description 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 releasec4278aa
build: update Angular FW packages to latest patchee5c5f8
fix(@angular/build
): avoid extra tick in SSR dev-server buildsb0f4330
fix(@angular-devkit/build-angular
): avoid extra tick in SSR builds32980f7
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 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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
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 theangularCompilerOptions
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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
and be a no-op respectively when running in a server environment.
- TypeScript versions less than 5.9 are no longer supported.
... (truncated)
Commits
- See full diff in compare view
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 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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
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 theangularCompilerOptions
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 theBootstrapContext
to thebootstrapApplication
call.In addition,
getPlatform()
anddestroyPlatform()
will now returnnull
and be a no-op respectively when running in a server environment.
- TypeScript versions less than 5.9 are no longer supported.
... (truncated)
Commits
- See full diff in compare view
Updates @angular-devkit/architect
from 0.1902.15 to 0.1902.16
Commits
- See full diff in compare view
Updates @angular-devkit/build-webpack
from 0.1902.15 to 0.1902.16
Commits
- See full diff in compare view
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 avoid extra tick in SSR builds
@angular/build
Commit Description avoid extra tick in SSR dev-server builds
@angular/ssr
Commit Description 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
0
0
+0
-0
Package Dependencies
@angular/platform-browser
npm
19.2.14 → 19.2.15
Patch
@angular/platform-browser-dynamic
npm
19.2.14 → 19.2.15
Patch
@angular-devkit/build-angular
npm
19.2.15 → 19.2.16
Patch
@angular/language-service
npm
19.2.14 → 19.2.15
Patch
@angular-devkit/architect
npm
0.1902.15 → 0.1902.16
Patch
@angular-devkit/schematics
npm
19.2.15 → 19.2.16
Patch
@angular-devkit/build-webpack
npm
0.1902.15 → 0.1902.16
Patch
Technical Details
ID: | 7830638 |
UUID: | 2830523231 |
Node ID: | PR_kwDONUyxgM6otltf |
Host: | GitHub |
Repository: | mrlonis/example-angular-theme-lib |