Skip to content

Releases: angular/angular-cli

v18.0.0-rc.1

02 May 17:23
Compare
Choose a tag to compare
v18.0.0-rc.1 Pre-release
Pre-release

18.0.0-rc.1 (2024-05-02)

@schematics/angular

Commit Description
fix - c46aa084f add postcss dependency in application migration if needed

@angular-devkit/architect

Commit Description
fix - ddd08efef resolve builder aliases from containing package

@angular-devkit/schematics

Commit Description
fix - 80fa03069 use web standard error check for Deno support

@angular/build

Commit Description
fix - b7a0792b3 add a maximum rendering timeout for SSG
fix - 2085365e0 only generate shallow preload links for initial files

v18.0.0-rc.0

01 May 19:19
Compare
Choose a tag to compare
v18.0.0-rc.0 Pre-release
Pre-release

18.0.0-rc.0 (2024-05-01)

@schematics/angular

Commit Description
fix - 95a4d6ee5 add less dependency in application migration if needed

@angular/cli

Commit Description
fix - df4dde95d add @angular/build package to update group list

@angular-devkit/build-angular

Commit Description
fix - 37fc7f0cc disable Vite prebundling when script optimizations are enabled

@angular/build

Commit Description
fix - 940e382db disable Vite prebundling when script optimizations are enabled
fix - 44b401747 ensure input index HTML file triggers rebuilds when changed

v18.0.0-next.5

26 Apr 18:14
Compare
Choose a tag to compare
v18.0.0-next.5 Pre-release
Pre-release

18.0.0-next.5 (2024-04-26)

@angular/build

Commit Description
fix - 921fa7cf4 add missing ansi-colors and picomatch dependencies
fix - 791cf75af check both potential build packages in Angular version check

v18.0.0-next.4

25 Apr 18:12
Compare
Choose a tag to compare
v18.0.0-next.4 Pre-release
Pre-release

18.0.0-next.4 (2024-04-25)

@schematics/angular

Commit Description
feat - b2ac5fac7 allow application migration to use new build package in projects where possible
fix - 23cc337aa keep deployUrl option when migrating to application builder

@angular/cli

Commit Description
feat - 4087728c3 support for Node.js v22

@angular-devkit/build-angular

Commit Description
feat - 53c319aaa add support for the poll option in the library builder
feat - 0b03829bc move i18n extraction for application builder to new build system package
feat - 4ffe07aa2 move Vite-based dev-server for application builder to new build system package
feat - d1c632af9 support native async/await when app is zoneless

@angular/build

Commit Description
feat - 810d213e1 introduce new official build system package
fix - 70dbc7a6e emit error for invalid self-closing element in index HTML
fix - 33cd47c85 properly configure headers for media resources and HTML page

v17.3.6

25 Apr 17:44
Compare
Choose a tag to compare

17.3.6 (2024-04-25)

@angular-devkit/build-angular

Commit Description
fix - dcec59799 properly configure headers for media resources and HTML page

v18.0.0-next.3

17 Apr 17:34
Compare
Choose a tag to compare
v18.0.0-next.3 Pre-release
Pre-release

18.0.0-next.3 (2024-04-17)

@angular/cli

Commit Description
refactor - 03eee0545 remove ng doc command

@angular-devkit/build-angular

Commit Description
feat - 83d1d233a enhance Sass rebasing importer for resources URL defined in variables and handling of external paths
feat - d51cb598a inject event-dispatch in SSR HTML page
fix - 1c3ff61db address Unable to deserialize cloned data issue with Yarn PnP
fix - 2acf95a94 do not generate an index.html file in the browser directory when using SSR.
fix - afa76bb36 ensure esbuild-based builders exclusively produce ESM output
fix - 43816a5b2 remove type="text/css" from style tag

Breaking Changes

@angular/cli

  • The ng doc command has been removed without a replacement. To perform searches, please visit www.angular.dev

@angular-devkit/build-angular

  • 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.

    "architect": {
      "build": {
        "builder": "@angular-devkit/build-angular:application",
        "options": {
          "outputPath": "dist/my-app",
          "index": {
            "input": "src/index.html",
            "output": "index.html"
          }
        }
      }
    }

v17.3.5

17 Apr 13:55
Compare
Choose a tag to compare

17.3.5 (2024-04-17)

@angular-devkit/build-angular

Commit Description
fix - 6191d06ca address Unable to deserialize cloned data issue with Yarn PnP
fix - 0335d6a5d remove type="text/css" from style tag

v17.3.4

11 Apr 15:49
Compare
Choose a tag to compare

17.3.4 (2024-04-11)

@angular-devkit/build-angular

Commit Description
fix - 1128bdd64 ensure esbuild-based builders exclusively produce ESM output

v16.2.14

11 Apr 15:07
Compare
Choose a tag to compare

16.2.14 (2024-04-11)

@angular-devkit/build-angular

Commit Description
fix - 1068c3c73 update vite to 4.5.3

v18.0.0-next.2

03 Apr 16:33
Compare
Choose a tag to compare
v18.0.0-next.2 Pre-release
Pre-release

18.0.0-next.2 (2024-04-03)

@schematics/angular

Commit Description
feat - 725883713 use eventCoalescing option by default (standalone bootstrap)
feat - 508d97da7 use ngZoneEventCoalescing option by default (module bootstrap)
fix - 157329384 add spaces around eventCoalescing option