1+ <a name="19.2.16"></a>
2+
3+ # 19.2.16 (2025-09-10)
4+
5+ ## Breaking Changes
6+
7+ ### @angular/ssr
8+
9+ - The server-side bootstrapping process has been changed to eliminate the reliance on a global platform injector.
10+
11+ Before:
12+
13+ ```ts
14+ const bootstrap = () => bootstrapApplication(AppComponent, config);
15+ ```
16+
17+ After:
18+
19+ ```ts
20+ const bootstrap = (context: BootstrapContext) =>
21+ bootstrapApplication(AppComponent, config, context);
22+ ```
23+
24+ ### @angular-devkit/build-angular
25+
26+ | Commit | Type | Description |
27+ | --------------------------------------------------------------------------------------------------- | ---- | ------------------------------ |
28+ | [b0f4330a9](https://github.com/angular/angular-cli/commit/b0f4330a9a2f598b71f12d07e49b6c7c6891febd) | fix | avoid extra tick in SSR builds |
29+
30+ ### @angular/build
31+
32+ | Commit | Type | Description |
33+ | --------------------------------------------------------------------------------------------------- | ---- | ----------------------------------------- |
34+ | [ee5c5f823](https://github.com/angular/angular-cli/commit/ee5c5f823c87a36c9bcb92db2fc9b4e652dc16c2) | fix | avoid extra tick in SSR dev-server builds |
35+
36+ ### @angular/ssr
37+
38+ | Commit | Type | Description |
39+ | --------------------------------------------------------------------------------------------------- | ---- | ------------------------------------------------------------- |
40+ | [32980f7e7](https://github.com/angular/angular-cli/commit/32980f7e7a5821bc9bd311dda6e134970e735722) | feat | introduce BootstrapContext for isolated server-side rendering |
41+
42+ <!-- CHANGELOG SPLIT MARKER -->
43+
144<a name="21.0.0-next.3"></a>
245
346# 21.0.0-next.3 (2025-09-10)
16581701- Protractor is no longer supported.
16591702
16601703 Protractor was marked end-of-life in August 2023 (see https://protractortest.org/). Projects still relying on Protractor should consider migrating to another E2E testing framework, several support solid migration paths from Protractor.
1704+
16611705 - https://angular.dev/tools/cli/end-to-end
16621706 - https://blog.angular.dev/the-state-of-end-to-end-testing-with-angular-d175f751cb9c
16631707
@@ -5292,6 +5336,7 @@ Alan Agius, Charles Lyding and Doug Parker
52925336### @angular/cli
52935337
52945338- Several changes to the `ng analytics` command syntax.
5339+
52955340 - `ng analytics project <setting>` has been replaced with `ng analytics <setting>`
52965341 - `ng analytics <setting>` has been replaced with `ng analytics <setting> --global`
52975342
@@ -5321,6 +5366,7 @@ Alan Agius, Charles Lyding and Doug Parker
53215366- `browser` and `karma` builders `script` and `styles` options input files extensions are now validated.
53225367
53235368 Valid extensions for `scripts` are:
5369+
53245370 - `.js`
53255371 - `.cjs`
53265372 - `.mjs`
@@ -5329,6 +5375,7 @@ Alan Agius, Charles Lyding and Doug Parker
53295375 - `.mjsx`
53305376
53315377 Valid extensions for `styles` are:
5378+
53325379 - `.css`
53335380 - `.less`
53345381 - `.sass`
0 commit comments