Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update angular-cli monorepo to v19 (major) #473

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 3, 2021

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@angular-devkit/build-angular 12.2.18 -> 19.0.2 age adoption passing confidence
@angular-devkit/core 12.2.18 -> 19.0.2 age adoption passing confidence
@angular/cli 12.2.18 -> 19.0.2 age adoption passing confidence

Release Notes

angular/angular-cli (@​angular-devkit/build-angular)

v19.0.2

Compare Source

v19.0.1

Compare Source

@​angular-devkit/build-angular
Commit Type Description
b63123f20 fix use stylePreprocessorOptions
@​angular/build
Commit Type Description
74461da64 fix ensure accurate content length for server assets
1b4dcedd5 fix use sha256 instead of sha-256 as hash algorithm name
@​angular/ssr
Commit Type Description
8bd2b260e fix handle baseHref that start with ./

v19.0.0

Compare Source

Breaking Changes

@​schematics/angular
  • The app-shell schematic is no longer compatible with Webpack-based builders.
@​angular-devkit/build-angular
@​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.
@​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';
@​angular-devkit/schematics-cli
Commit Type Description
37693c40e feat add package manager option to blank schematic
@​schematics/angular
Commit Type Description
a381a3db1 feat add option to export component as default
755f3a07f feat add option to setup new workspace or application as zoneless mode
cfca5442e feat integrate withEventReplay() in provideClientHydration for new SSR apps
292a4b7c2 feat update app-shell and ssr schematics to adopt new Server Rendering API
b1504c3bc fix component spec with export default
4b4e000dd fix don't show server routing prompt when using browser builder
4e2a5fe15 fix enable opt-in for new @angular/ssr feature
fcf7443d6 fix explicitly set standalone:false
7992218a9 fix remove declaration and sourceMap from default tsconfig
9e6ab1bf2 fix use default import for express
@​angular/cli
Commit Type Description
201b60e1d feat handle string key/value pairs, e.g. --define
b847d4460 fix recommend optional application update migration during v19 update
f249e7e85 perf enable Node.js compile code cache when available
ecc107d83 perf enable Node.js compile code cache when available
@​angular-devkit/architect
Commit Type Description
78f76485f feat merge object options from CLI
@​angular-devkit/build-angular
Commit Type Description
0a4ef3026 feat karma-coverage w/ app builder
dcbdca85c feat karma+esbuild+watch
54594b5ab feat support karma with esbuild
ea5ae68da fix bring back style tags in browser builder
476f94f51 fix fix --watch regression in karma
25d928b4f fix fix hanging terminal when browser-sync is not installed
2ec877dd0 fix handle basename collisions
ab6e19e1f fix handle main field
43e7aae22 fix remove double-watch in karma
1e37b5939 fix serve assets
9d7613db9 fix zone.js/testing + karma + esbuild
e40384e63 refactor remove deprecated browserTarget
62877bdf2 refactor remove Protractor builder and schematics
@​angular-devkit/core
Commit Type Description
0d8a1006d refactor remove deprecated fileBuffer function in favor of stringToFileBuffer
@​angular/build
Commit Type Description
b6951f448 feat add sass to stylePreprocessorOptions in application builder
efb434136 feat Auto-CSP support as a part of angular.json schema
816e3cb86 feat enable component stylesheet hot replacement by default
3b00fc908 feat introduce outputMode option to the application builder
7d883a152 feat introduce ssr.experimentalPlatform option
c48d6947e feat set development/production condition
f63072668 feat utilize ssr.entry during prerendering to enable access to local API routes
bbc290133 feat utilize ssr.entry in Vite dev-server when available
5a7a2925b fix add missing redirect in SSR manifest
06e5176c2 fix add warning when --prerendering or --app-shell are no-ops
ecaf870b5 fix always clear dev-server error overlay on non-error result
f8677f6a9 fix always record component style usage for HMR updates
099e477a8 fix avoid hashing development external component stylesheets
3602bbb77 fix avoid overwriting inline style bundling additional results
71534aadc fix check referenced files against native file paths
fed31e064 fix correctly use dev-server hmr option to control stylesheet hot replacement
b86bb080e fix disable dev-server websocket when live reload is disabled
7c50ba9e2 fix ensure index.csr.html is always generated when prerendering or SSR are enabled
efb2232df fix ensure accurate content size in server asset metadata
18a8584ea fix ensure SVG template URLs are considered templates with external stylesheets
7502fee28 fix Exclude known --import from execArgv when spawning workers
2551df533 fix fully disable component style HMR in JIT mode
c41529cc1 fix handle APP_BASE_HREF correctly in prerendered routes
87a90afd4 fix incomplete string escaping or encoding
1bb68ba68 fix move lmdb to optionalDependencies
a995c8ea6 fix prevent prerendering of catch-all routes
1654acf0f fix relax constraints on external stylesheet component id
0d4558ea5 fix set ngServerMode during vite prebundling
55d7f01b6 fix simplify disabling server features with --no-server via command line
cf0228b82 fix skip wildcard routes from being listed as prerendered routes
af52fb49b fix synchronize import/export conditions between bundler and TypeScript
6c618d495 fix update logic to support both internal and external SSR middlewares
bfa8fec9b fix use named export reqHandler for server.ts request handling
c8e1521a2 fix workaround Vite CSS ShadowDOM hot replacement
d6a34034d refactor remove automatic addition of @angular/localize/init polyfill and related warnings
@​angular/ssr
Commit Type Description
92209dd2e feat add createRequestHandler and createNodeRequestHandler utilities
41fb2ed86 feat Add getHeaders Method to AngularAppEngine and AngularNodeAppEngine for handling pages static headers
f346ee8a8 feat add isMainModule function
d66aaa3ca feat add server routing configuration API
bca568389 feat dynamic route resolution using Angular router
30c25bf68 feat export AngularAppEngine as public API
455b5700c feat expose writeResponseToNodeResponse and createWebRequestFromNodeRequest in public API
9692a9054 feat improve handling of aborted requests in AngularServerApp
576ff604c feat introduce AngularNodeAppEngine API for Node.js integration
3c9697a8c feat introduce new hybrid rendering API
4b09887a9 feat move CommonEngine API to /node entry-point
d43180af5 fix add missing peer dependency on @angular/platform-server
74b3e2d51 fix add validation to prevent use of provideServerRoutesConfig in browser context
2640bf7a6 fix correct route extraction and error handling
44077f54e fix designate package as side-effect free
df4e1d360 fix enable serving of prerendered pages in the App Engine
0793c78cf fix ensure wildcard RenderMode is applied when no Angular routes are defined
65b6e75a5 fix export RESPONSE_INIT, REQUEST, and REQUEST_CONTEXT tokens
4ecf63a77 fix export PrerenderFallback
50df63196 fix improve handling of route mismatches between Angular server routes and Angular router
3cf7a5223 fix initialize the DI tokens with null to avoid requiring them to be set to optional
85df4011b fix resolve bootstrap is not a function error
e9c9e4995 fix resolve circular dependency issue from main.server.js reference in manifest
64c52521d fix show error when multiple routes are set with RenderMode.AppShell
280ebbda4 fix support for HTTP/2 request/response handling
fb05e7f0a fix use wildcard server route configuration on the '/' route when the app router is empty
12ff37adb perf cache generated inline CSS for HTML
1d70e3b46 perf cache resolved entry-points
f460b91d4 perf integrate ETags for prerendered pages
e52ae7f6f perf prevent potential stampede in entry-points cache

v18.2.12

Compare Source

@​angular/cli
Commit Type Description
c3925ed7f fix support default options for multiselect list x-prompt
@​angular/build
Commit Type Description
c8bee8415 fix allow .js file replacements in all configuration cases
93f552112 fix improve URL rebasing for hyphenated Sass namespaced variables

v18.2.11

Compare Source

v18.2.10

Compare Source

@​angular-devkit/build-angular
Commit Type Description
7b775f4e0 fix update http-proxy-middleware to 3.0.3
@​angular/build
Commit Type Description
b1e5f51f9 fix Address build issue in Node.js LTS versions with prerendering or SSR

v18.2.9

Compare Source

@​schematics/angular
Commit Type Description
237f7c5d0 fix update browserslist config to include last 2 Android major versions
@​angular/build
Commit Type Description
d749ba6a3 fix allow direct bundling of TSX files with application builder
b91c82d89 fix avoid race condition in sass importer

v18.2.8

Compare Source

@​schematics/angular
Commit Type Description
b522002ff fix add validation for component and directive class name
dfd2d5c05 fix include index.csr.html in resources asset group
@​angular/build
Commit Type Description
9445916f9 fix Ctrl + C not terminating dev-server with SSR
9b5cfaa8c fix always generate a new hash for optimized chunk

v18.2.7

Compare Source

@​schematics/angular
Commit Type Description
3f98193d6 fix support single quote setting in JetBrains IDEs
@​angular/build
Commit Type Description
8274184e1 fix add animate to valid self-closing elements
2648e811e fix add few more SVG elements animateMotion, animateTransform, and feBlend etc. to valid self-closing elements
736e126e4 fix separate Vite cache by project

v18.2.6

Compare Source

@​angular/build
Commit Type Description
9d0b67124 fix allow missing HTML file request to fallback to index
5fea635b2 fix update rollup to 4.22.4

v18.2.5

Compare Source

@​angular/build
Commit Type Description
707431625 fix support HTTP HEAD requests for virtual output files
1032b3da1 fix update vite to 5.4.6

v18.2.4

Compare Source

@​angular/build
Commit Type Description
765309a2e fix prevent transformation of Node.js internal dependencies by Vite

v18.2.3

Compare Source

@​angular-devkit/build-angular
Commit Type Description
482076612 fix update webpack-dev-middleware to 7.4.2

v18.2.2

Compare Source

@​angular-devkit/build-angular
Commit Type Description
504b00b93 fix clear context in Karma by default for single run executions
82b76086e fix update webpack to 5.94.0

v18.2.1

Compare Source

18.2.1 (2024-08-21)

@​angular-devkit/schematics-cli
Commit Description
fix - 94e27c88b prevent bypassing select/checkbox prompts on validation failure
@​angular/cli
Commit Description
fix - 05a274a01 prevent bypassing select/checkbox prompts on validation failure
@​angular-devkit/build-angular
Commit Description
fix - ddeb2b2b9 remove outdated browser-esbuild option warning
@​angular/build
Commit Description
fix - 83b2699ab improve error message when an unhandled exception occurs during prerendering
fix - 0be4038a5 support reading on-disk files during i18n extraction

v18.2.0

Compare Source

@​angular/build
Commit Type Description
182ecbd18 fix allow explicitly disabling TypeScript incremental mode
34908a3fc fix lazy load Node.js inspector for dev server

v18.1.4

Compare Source

18.1.4 (2024-08-07)

@​angular/build
Commit Description
fix - f8b092711 allow explicitly disabling TypeScript incremental mode
fix - f3a5970fc lazy load Node.js inspector for dev server

v18.1.3

Compare Source

@​angular/build
Commit Type Description
a28615d7d fix add CSP nonce attribute to script tags when inline critical CSS is disabled
747a1447c fix prevent build failures with remote CSS imports when Tailwind is configured
c0933f2c0 fix resolve error with extract-i18n builder for libraries

v18.1.2

Compare Source

@​angular/build
Commit Type Description
5b9378a3b fix account for HTML base HREF for dev-server externals
3e4ea77d7 fix correctly detect comma in Sass URL lexer
d868270f1 fix prevent redirection loop
3573ac655 fix serve HTML files directly

v18.1.1

Compare Source

@​angular-devkit/build-angular
Commit Type Description
4f6cee272 fix skip undefined files when generating budget stats
@​angular/build
Commit Type Description
96dc7e6ed fix remove Vite "/@​id/" prefix for explicit external dependencies
bdef39801 fix resolve only ".wasm" files

v18.1.0

Compare Source

@​angular/cli
Commit Type Description
6c0f60d1b fix make ng update to keep newline at the end of package.json
@​angular-devkit/build-angular
Commit Type Description
1eb36e593 fix reduce the number of max workers to available CPUs minus one
c6fc0203e fix rollback terser to 5.29.2
@​angular/build
Commit Type Description
628d87a94 feat support WASM/ES Module integration proposal
fb8e3c39a fix allow top-level await in zoneless applications
5ec724338 fix correctly name entry points to match budgets
cd97134a6 fix normalize paths during module resolution in Vite
27bd67083 fix redirect to path with trailing slash for asset directories
e8a6d6bc4 fix reduce the number of max workers to available CPUs minus one
3091956f5 fix support import attributes in JavaScript transformer

v18.0.7

Compare Source

@​angular/cli
Commit Type Description
67bf90131 fix make ng update to keep newline at the end of package.json
@​angular-devkit/build-angular
Commit Type Description
9b43ecbd0 fix reduce the number of max workers to available CPUs minus one
03dad6806 fix rollback terser to 5.29.2
@​angular/build
Commit Type Description
fc928f638 fix correctly name entry points to match budgets
2d51e8607 fix redirect to path with trailing slash for asset directories
16f1c1e01 fix reduce the number of max workers to available CPUs minus one

v18.0.6

Compare Source

@​angular/build
Commit Type Description
98a8a8a78 fix show JavaScript cache store initialization warning

v18.0.5

Compare Source

18.0.5 (2024-06-20)

@​schematics/angular
Commit Description
fix - 5c705e800 update schematics to use RouterModule when --routing flag is present
@​angular-devkit/build-angular

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch from 641a8b3 to c7c4d74 Compare November 3, 2021 23:22
@renovate renovate bot changed the title chore(deps): update dependency @angular/cli to v13 chore(deps): update angular-cli monorepo to v13 (major) Nov 3, 2021
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch 2 times, most recently from 23ae709 to 0cc6a5c Compare November 11, 2021 01:51
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch from 0cc6a5c to 6dac5ae Compare November 18, 2021 02:00
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch from 6dac5ae to 7f751c1 Compare December 2, 2021 01:29
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch 3 times, most recently from 5b0d843 to 434dbf2 Compare December 15, 2021 22:39
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch from 434dbf2 to a9722f5 Compare March 7, 2022 08:53
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch from a9722f5 to 77ebccb Compare March 26, 2022 14:16
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch from 77ebccb to 770c9e4 Compare April 24, 2022 19:57
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch from 770c9e4 to 783dec9 Compare May 16, 2022 01:03
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch from 783dec9 to 3c6e7b7 Compare June 18, 2022 19:17
@renovate renovate bot changed the title chore(deps): update angular-cli monorepo to v13 (major) chore(deps): update angular-cli monorepo to v14 (major) Jun 18, 2022
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch from 3c6e7b7 to d356f6a Compare June 23, 2022 23:31
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch from d356f6a to 0cc080f Compare September 25, 2022 15:15
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch from 0cc080f to 4577486 Compare November 20, 2022 07:44
@renovate renovate bot changed the title chore(deps): update angular-cli monorepo to v14 (major) chore(deps): update angular-cli monorepo to v15 (major) Nov 20, 2022
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch from 4577486 to 218a2d0 Compare March 17, 2023 10:17
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch from 218a2d0 to 0ebb67a Compare April 17, 2023 13:37
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch from 0ebb67a to 4814269 Compare May 28, 2023 11:27
@renovate renovate bot changed the title chore(deps): update angular-cli monorepo to v15 (major) chore(deps): update angular-cli monorepo to v16 (major) May 28, 2023
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch 3 times, most recently from 84848fd to 24fc521 Compare June 7, 2023 11:32
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch from 24fc521 to 05134ff Compare June 14, 2023 12:27
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch 3 times, most recently from a5cca0d to 3f13156 Compare June 29, 2023 14:46
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch 2 times, most recently from 2ac8e43 to 613ef0d Compare June 20, 2024 12:33
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch 2 times, most recently from 03e6a1d to ea7bf39 Compare June 26, 2024 22:47
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch 2 times, most recently from 47b4d82 to f6cddf4 Compare July 10, 2024 16:33
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch 4 times, most recently from 6de5afe to af99b87 Compare July 24, 2024 16:58
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch from af99b87 to 648b55f Compare July 31, 2024 12:20
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch 2 times, most recently from ee9fef3 to 700e0e5 Compare August 14, 2024 20:20
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch from 700e0e5 to ab33f4c Compare August 21, 2024 12:41
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch 2 times, most recently from be049c3 to 4cf0f4a Compare September 4, 2024 22:29
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch from 4cf0f4a to f8ccf4e Compare September 11, 2024 14:42
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch 2 times, most recently from b7c7195 to dd831a3 Compare September 25, 2024 20:27
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch from dd831a3 to bff20a9 Compare October 2, 2024 10:47
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch from bff20a9 to b28a237 Compare October 9, 2024 18:51
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch 2 times, most recently from 2bb8bf8 to e67d722 Compare October 23, 2024 22:45
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch from e67d722 to 63ed8fe Compare October 31, 2024 00:21
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch 2 times, most recently from 7a9c904 to 1b69d6f Compare November 19, 2024 19:55
@renovate renovate bot changed the title chore(deps): update angular-cli monorepo to v18 (major) chore(deps): update angular-cli monorepo to v19 (major) Nov 19, 2024
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch from 1b69d6f to a6ad2b9 Compare November 21, 2024 21:42
@renovate renovate bot force-pushed the renovate/major-angular-cli-monorepo branch from a6ad2b9 to e8ca643 Compare November 26, 2024 00:11
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants