|
| 1 | +<a name="18.2.21"></a> |
| 2 | + |
| 3 | +# 18.2.21 (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 | +| [700e6bc01](https://github.com/angular/angular-cli/commit/700e6bc0177a3e345a88e31be22496cc3054349b) | fix | avoid extra tick in SSR builds | |
| 29 | + |
| 30 | +### @angular/build |
| 31 | + |
| 32 | +| Commit | Type | Description | |
| 33 | +| --------------------------------------------------------------------------------------------------- | ---- | ----------------------------------------- | |
| 34 | +| [cccc91b91](https://github.com/angular/angular-cli/commit/cccc91b919b4a8365efce9ee691940e351349075) | fix | avoid extra tick in SSR dev-server builds | |
| 35 | + |
| 36 | +### @angular/ssr |
| 37 | + |
| 38 | +| Commit | Type | Description | |
| 39 | +| --------------------------------------------------------------------------------------------------- | ---- | ------------------------------------------------------------- | |
| 40 | +| [4af385201](https://github.com/angular/angular-cli/commit/4af385201bf8ba05352faec26c6efa866b69d999) | feat | introduce BootstrapContext for isolated server-side rendering | |
| 41 | + |
| 42 | +<!-- CHANGELOG SPLIT MARKER --> |
| 43 | + |
1 | 44 | <a name="19.2.16"></a>
|
2 | 45 |
|
3 | 46 | # 19.2.16 (2025年09月10日)
|
|
0 commit comments