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="19.2.15"></a>
245
346# 19.2.15 (2025-06-11)
784827- Protractor is no longer supported.
785828
786829 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.
787-
788830 - https://angular.dev/tools/cli/end-to-end
789831 - https://blog.angular.dev/the-state-of-end-to-end-testing-with-angular-d175f751cb9c
790832
@@ -4419,7 +4461,6 @@ Alan Agius, Charles Lyding and Doug Parker
44194461### @angular/cli
44204462
44214463- Several changes to the `ng analytics` command syntax.
4422-
44234464 - `ng analytics project <setting>` has been replaced with `ng analytics <setting>`
44244465 - `ng analytics <setting>` has been replaced with `ng analytics <setting> --global`
44254466
@@ -4430,7 +4471,6 @@ Alan Agius, Charles Lyding and Doug Parker
44304471- `--configuration` cannot be used with `ng run`. Provide the configuration as part of the target. Ex: `ng run project:builder:configuration`.
44314472- Deprecated `ng x18n` and `ng i18n-extract` commands have been removed in favor of `ng extract-i18n`.
44324473- Several changes in the Angular CLI commands and arguments handling.
4433-
44344474 - `ng help` has been removed in favour of the `—-help` option.
44354475 - `ng —-version` has been removed in favour of `ng version` and `ng v`.
44364476 - Deprecated camel cased arguments are no longer supported. Ex. using `—-sourceMap` instead of `—-source-map` will result in an error.
@@ -4450,7 +4490,6 @@ Alan Agius, Charles Lyding and Doug Parker
44504490- `browser` and `karma` builders `script` and `styles` options input files extensions are now validated.
44514491
44524492 Valid extensions for `scripts` are:
4453-
44544493 - `.js`
44554494 - `.cjs`
44564495 - `.mjs`
@@ -4459,7 +4498,6 @@ Alan Agius, Charles Lyding and Doug Parker
44594498 - `.mjsx`
44604499
44614500 Valid extensions for `styles` are:
4462-
44634501 - `.css`
44644502 - `.less`
44654503 - `.sass`
@@ -4502,7 +4540,6 @@ Alan Agius, Charles Lyding and Doug Parker
45024540### @ngtools/webpack
45034541
45044542- `ivy` namespace has been removed from the public API.
4505-
45064543 - `ivy.AngularWebpackPlugin` -> `AngularWebpackPlugin`
45074544 - `ivy.AngularPluginOptions` -> `AngularPluginOptions`
45084545
0 commit comments