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="21.0.0-next.3"></a>
2
45
3
46
# 21.0.0-next.3 (2025年09月10日)
1658
1701
- Protractor is no longer supported.
1659
1702
1660
1703
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
+
1661
1705
- https://angular.dev/tools/cli/end-to-end
1662
1706
- https://blog.angular.dev/the-state-of-end-to-end-testing-with-angular-d175f751cb9c
1663
1707
@@ -5292,6 +5336,7 @@ Alan Agius, Charles Lyding and Doug Parker
5292
5336
### @angular/cli
5293
5337
5294
5338
- Several changes to the `ng analytics` command syntax.
5339
+
5295
5340
- `ng analytics project <setting>` has been replaced with `ng analytics <setting>`
5296
5341
- `ng analytics <setting>` has been replaced with `ng analytics <setting> --global`
5297
5342
@@ -5321,6 +5366,7 @@ Alan Agius, Charles Lyding and Doug Parker
5321
5366
- `browser` and `karma` builders `script` and `styles` options input files extensions are now validated.
5322
5367
5323
5368
Valid extensions for `scripts` are:
5369
+
5324
5370
- `.js`
5325
5371
- `.cjs`
5326
5372
- `.mjs`
@@ -5329,6 +5375,7 @@ Alan Agius, Charles Lyding and Doug Parker
5329
5375
- `.mjsx`
5330
5376
5331
5377
Valid extensions for `styles` are:
5378
+
5332
5379
- `.css`
5333
5380
- `.less`
5334
5381
- `.sass`
0 commit comments