Skip to content

Commit d85d590

Browse files
committed
release: cut the v20.3.0-rc.0 release
1 parent b3c1d72 commit d85d590

File tree

2 files changed

+56
-1
lines changed

2 files changed

+56
-1
lines changed

CHANGELOG.md

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,58 @@
1+
<a name="20.3.0-rc.0"></a>
2+
3+
# 20.3.0-rc.0 (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+
### @schematics/angular
25+
26+
| Commit | Type | Description |
27+
| --------------------------------------------------------------------------------------------------- | ---- | -------------------------------- |
28+
| [ef20a278d](https://github.com/angular/angular-cli/commit/ef20a278d1455b9cdffc5102b13d0b2206ef1ecb) | fix | align labels in ai-config schema |
29+
30+
### @angular/cli
31+
32+
| Commit | Type | Description |
33+
| --------------------------------------------------------------------------------------------------- | ---- | ----------------------------------------------------------- |
34+
| [f6ad41c13](https://github.com/angular/angular-cli/commit/f6ad41c134c7ae938ccda908967e7cc863b3db16) | fix | improve bun lockfile detection and optimize lockfile checks |
35+
36+
### @angular-devkit/build-angular
37+
38+
| Commit | Type | Description |
39+
| --------------------------------------------------------------------------------------------------- | ---- | ------------------------------ |
40+
| [1a7890873](https://github.com/angular/angular-cli/commit/1a789087344aa94d061839122e6a63efbfc9c905) | fix | avoid extra tick in SSR builds |
41+
42+
### @angular/build
43+
44+
| Commit | Type | Description |
45+
| --------------------------------------------------------------------------------------------------- | ---- | ------------------------------------------------------------ |
46+
| [5d46d6ec1](https://github.com/angular/angular-cli/commit/5d46d6ec114052715a8bd17761a4f258961ad26b) | fix | preserve names in esbuild for improved debugging in dev mode |
47+
48+
### @angular/ssr
49+
50+
| Commit | Type | Description |
51+
| --------------------------------------------------------------------------------------------------- | ---- | ------------------------------------------------------------- |
52+
| [7eacb4187](https://github.com/angular/angular-cli/commit/7eacb41878f5fdac8d40aedfcca6794b77eda5ff) | feat | introduce BootstrapContext for isolated server-side rendering |
53+
54+
<!-- CHANGELOG SPLIT MARKER -->
55+
156
<a name="20.2.2"></a>
257

358
# 20.2.2 (2025-09-03)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@angular/devkit-repo",
3-
"version": "20.3.0-next.0",
3+
"version": "20.3.0-rc.0",
44
"private": true,
55
"description": "Software Development Kit for Angular",
66
"keywords": [

0 commit comments

Comments
 (0)