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
+
1
44
<a name="19.2.15"></a>
2
45
3
46
# 19.2.15 (2025年06月11日)
784
827
- Protractor is no longer supported.
785
828
786
829
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
-
788
830
- https://angular.dev/tools/cli/end-to-end
789
831
- https://blog.angular.dev/the-state-of-end-to-end-testing-with-angular-d175f751cb9c
790
832
@@ -4419,7 +4461,6 @@ Alan Agius, Charles Lyding and Doug Parker
4419
4461
### @angular/cli
4420
4462
4421
4463
- Several changes to the `ng analytics` command syntax.
4422
-
4423
4464
- `ng analytics project <setting>` has been replaced with `ng analytics <setting>`
4424
4465
- `ng analytics <setting>` has been replaced with `ng analytics <setting> --global`
4425
4466
@@ -4430,7 +4471,6 @@ Alan Agius, Charles Lyding and Doug Parker
4430
4471
- `--configuration` cannot be used with `ng run`. Provide the configuration as part of the target. Ex: `ng run project:builder:configuration`.
4431
4472
- Deprecated `ng x18n` and `ng i18n-extract` commands have been removed in favor of `ng extract-i18n`.
4432
4473
- Several changes in the Angular CLI commands and arguments handling.
4433
-
4434
4474
- `ng help` has been removed in favour of the `—-help` option.
4435
4475
- `ng —-version` has been removed in favour of `ng version` and `ng v`.
4436
4476
- 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
4450
4490
- `browser` and `karma` builders `script` and `styles` options input files extensions are now validated.
4451
4491
4452
4492
Valid extensions for `scripts` are:
4453
-
4454
4493
- `.js`
4455
4494
- `.cjs`
4456
4495
- `.mjs`
@@ -4459,7 +4498,6 @@ Alan Agius, Charles Lyding and Doug Parker
4459
4498
- `.mjsx`
4460
4499
4461
4500
Valid extensions for `styles` are:
4462
-
4463
4501
- `.css`
4464
4502
- `.less`
4465
4503
- `.sass`
@@ -4502,7 +4540,6 @@ Alan Agius, Charles Lyding and Doug Parker
4502
4540
### @ngtools/webpack
4503
4541
4504
4542
- `ivy` namespace has been removed from the public API.
4505
-
4506
4543
- `ivy.AngularWebpackPlugin` -> `AngularWebpackPlugin`
4507
4544
- `ivy.AngularPluginOptions` -> `AngularPluginOptions`
4508
4545
0 commit comments