Skip to content

Releases: angular/angular-cli

v19.0.0-next.5

12 Sep 15:12
Compare
Choose a tag to compare
v19.0.0-next.5 Pre-release
Pre-release

19.0.0-next.5 (2024-09-12)

@angular-devkit/architect

Commit Description
feat - 78f76485f merge object options from CLI

@angular/ssr

Commit Description
fix - 85df4011b resolve bootstrap is not a function error

v19.0.0-next.4

11 Sep 16:32
Compare
Choose a tag to compare
v19.0.0-next.4 Pre-release
Pre-release

19.0.0-next.4 (2024-09-11)

@angular/cli

Commit Description
feat - 201b60e1d handle string key/value pairs, e.g. --define
perf - ecc107d83 enable Node.js compile code cache when available

@angular/build

Commit Description
fix - 4153a6ecf prevent transformation of Node.js internal dependencies by Vite

@angular/ssr

Commit Description
feat - 41fb2ed86 Add getHeaders Method to AngularAppEngine and AngularNodeAppEngine for handling pages static headers
feat - 576ff604c introduce AngularNodeAppEngine API for Node.js integration
fix - e9c9e4995 resolve circular dependency issue from main.server.js reference in manifest

v18.2.4

11 Sep 14:00
Compare
Choose a tag to compare

18.2.4 (2024-09-11)

@angular/build

Commit Description
fix - 765309a2e prevent transformation of Node.js internal dependencies by Vite

v19.0.0-next.3

04 Sep 22:03
Compare
Choose a tag to compare
v19.0.0-next.3 Pre-release
Pre-release

19.0.0-next.3 (2024-09-04)

@angular-devkit/build-angular

Commit Description
fix - 3ee21631f clear context in Karma by default for single run executions

@angular/ssr

Commit Description
feat - 455b5700c expose writeResponseToNodeResponse and createWebRequestFromNodeRequest in public API

v18.2.3

04 Sep 19:54
Compare
Choose a tag to compare

18.2.3 (2024-09-04)

@angular-devkit/build-angular

Commit Description
fix - 482076612 update webpack-dev-middleware to 7.4.2

v18.2.2

29 Aug 20:19
Compare
Choose a tag to compare

18.2.2 (2024-08-29)

@angular-devkit/build-angular

Commit Description
fix - 504b00b93 clear context in Karma by default for single run executions
fix - 82b76086e upgrade webpack to 5.94.0

v17.3.9

29 Aug 23:07
Compare
Choose a tag to compare

17.3.9 (2024-08-29)

@angular-devkit/build-angular

Commit Description
fix - e2c5c034d clear context in Karma by default for single run executions
fix - 88501f3d5 upgrade webpack to 5.94.0

v16.2.15

29 Aug 22:25
Compare
Choose a tag to compare

16.2.15 (2024-08-29)

@angular-devkit/build-angular

Commit Description
fix - f596a3d5d clear context in Karma by default for single run executions
fix - 56fa051bd upgrade webpack to 5.94.0

v19.0.0-next.2

28 Aug 21:34
Compare
Choose a tag to compare
v19.0.0-next.2 Pre-release
Pre-release

19.0.0-next.2 (2024-08-28)

@schematics/angular

Commit Description
feat - a381a3db1 add option to export component as default

@angular/ssr

Commit Description
feat - 30c25bf68 export AngularAppEngine as public API
feat - 4b09887a9 move CommonEngine API to /node entry-point
fix - d43180af5 add missing peer dependency on @angular/platform-server

Breaking Changes

@angular/ssr

  • The CommonEngine API now needs to be imported from @angular/ssr/node.

    Before

    import { CommonEngine } from '@angular/ssr';

    After

    import { CommonEngine } from '@angular/ssr/node';

v19.0.0-next.1

22 Aug 17:27
Compare
Choose a tag to compare
v19.0.0-next.1 Pre-release
Pre-release

19.0.0-next.1 (2024-08-22)

@schematics/angular

Commit Description
fix - 7992218a9 remove declaration and sourceMap from default tsconfig

@angular-devkit/build-angular

Commit Description
fix - 0b161bc76 remove outdated browser-esbuild option warning
refactor - e40384e63 remove deprecated browserTarget

@angular-devkit/core

Commit Description
refactor - 0d8a1006d remove deprecated fileBuffer function in favor of stringToFileBuffer

@angular/build

Commit Description
fix - 71c06c69f improve error message when an unhandled exception occurs during prerendering
fix - 6b544f70e support reading on-disk files during i18n extraction
refactor - d6a34034d remove automatic addition of @angular/localize/init polyfill and related warnings

@angular/ssr

Commit Description
feat - 9692a9054 improve handling of aborted requests in AngularServerApp

Breaking Changes

@angular-devkit/build-angular

  • The browserTarget option has been removed from the DevServer and ExtractI18n builders. buildTarget is to be used instead.

@angular-devkit/core

  • The deprecated fileBuffer function is no longer available. Update your code to use stringToFileBuffer instead to maintain compatibility.

    Note: that this change does not affect application developers.

@angular/build

  • The @angular/localize/init polyfill will no longer be added automatically to projects. To prevent runtime issues, ensure that this polyfill is manually included in the "polyfills" section of your "angular.json" file if your application relies on Angular localization features.