Skip to content

Commit e1f87ce

Browse files
committed
release: cut the v18.0.0-next.3 release
1 parent d51cb59 commit e1f87ce

File tree

2 files changed

+49
-1
lines changed

2 files changed

+49
-1
lines changed

CHANGELOG.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,51 @@
1+
<a name="18.0.0-next.3"></a>
2+
3+
# 18.0.0-next.3 (2024-04-17)
4+
5+
## Breaking Changes
6+
7+
### @angular/cli
8+
9+
- The `ng doc` command has been removed without a replacement. To perform searches, please visit www.angular.dev
10+
11+
### @angular-devkit/build-angular
12+
13+
- By default, the index.html file is no longer emitted in the browser directory when using the application builder with SSR. Instead, an index.csr.html file is emitted. This change is implemented because in many cases server and cloud providers incorrectly treat the index.html file as a statically generated page. If you still require the old behavior, you can use the `index` option to specify the `output` file name.
14+
15+
```json
16+
"architect": {
17+
"build": {
18+
"builder": "@angular-devkit/build-angular:application",
19+
"options": {
20+
"outputPath": "dist/my-app",
21+
"index": {
22+
"input": "src/index.html",
23+
"output": "index.html"
24+
}
25+
}
26+
}
27+
}
28+
```
29+
30+
### @angular/cli
31+
32+
| Commit | Type | Description |
33+
| --------------------------------------------------------------------------------------------------- | -------- | ----------------------- |
34+
| [03eee0545](https://github.com/angular/angular-cli/commit/03eee0545095ff958ac86cb5dfad44692ef018ae) | refactor | remove `ng doc` command |
35+
36+
### @angular-devkit/build-angular
37+
38+
| Commit | Type | Description |
39+
| --------------------------------------------------------------------------------------------------- | ---- | ---------------------------------------------------------------------------------------------------- |
40+
| [83d1d233a](https://github.com/angular/angular-cli/commit/83d1d233a2eded71fcdd5fec4b1a90bdd4dbf132) | feat | enhance Sass rebasing importer for resources URL defined in variables and handling of external paths |
41+
| [d51cb598a](https://github.com/angular/angular-cli/commit/d51cb598a74aba313aee212656de506004a041e6) | feat | inject event-dispatch in SSR HTML page |
42+
| [1c3ff61db](https://github.com/angular/angular-cli/commit/1c3ff61db84dca8300001e8a758a4a633aa972d3) | fix | address `Unable to deserialize cloned data` issue with Yarn PnP |
43+
| [2acf95a94](https://github.com/angular/angular-cli/commit/2acf95a94993e51876d4004d2c3bc0a04be0a419) | fix | do not generate an `index.html` file in the browser directory when using SSR. |
44+
| [afa76bb36](https://github.com/angular/angular-cli/commit/afa76bb361a6a491f5c4ed725ef8cc4816f805c7) | fix | ensure esbuild-based builders exclusively produce ESM output |
45+
| [43816a5b2](https://github.com/angular/angular-cli/commit/43816a5b2d4c03a4cdd7c66fb16ddf0dd47b8124) | fix | remove `type="text/css"` from `style` tag |
46+
47+
<!-- CHANGELOG SPLIT MARKER -->
48+
149
<a name="17.3.5"></a>
250

351
# 17.3.5 (2024-04-17)

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": "18.0.0-next.2",
3+
"version": "18.0.0-next.3",
44
"private": true,
55
"description": "Software Development Kit for Angular",
66
"keywords": [

0 commit comments

Comments
 (0)