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

Update angular packages (major) #59

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 1, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@angular-devkit/build-angular 16.0.1 -> 18.0.3 age adoption passing confidence
@angular-eslint/builder (source) 16.0.2 -> 18.0.1 age adoption passing confidence
@angular-eslint/eslint-plugin (source) 16.0.2 -> 18.0.1 age adoption passing confidence
@angular-eslint/eslint-plugin-template (source) 16.0.2 -> 18.0.1 age adoption passing confidence
@angular-eslint/schematics (source) 16.0.2 -> 18.0.1 age adoption passing confidence
@angular-eslint/template-parser (source) 16.0.2 -> 18.0.1 age adoption passing confidence
@angular/animations (source) ^16.0.2 -> ^18.0.0 age adoption passing confidence
@angular/cli ~16.0.2 -> ~18.0.0 age adoption passing confidence
@angular/common (source) ^16.0.0 -> ^16.0.0 || ^18.0.0 age adoption passing confidence
@angular/common (source) ^16.0.2 -> ^18.0.0 age adoption passing confidence
@angular/compiler (source) ^16.0.2 -> ^18.0.0 age adoption passing confidence
@angular/compiler-cli (source) ^16.0.2 -> ^18.0.0 age adoption passing confidence
@angular/core (source) ^16.0.0 -> ^16.0.0 || ^18.0.0 age adoption passing confidence
@angular/core (source) ^16.0.2 -> ^18.0.0 age adoption passing confidence
@angular/forms (source) ^16.0.2 -> ^18.0.0 age adoption passing confidence
@angular/platform-browser (source) ^16.0.2 -> ^18.0.0 age adoption passing confidence
@angular/platform-browser-dynamic (source) ^16.0.2 -> ^18.0.0 age adoption passing confidence
@angular/router (source) ^16.0.2 -> ^18.0.0 age adoption passing confidence
@ngrx/data ^16.0.0 -> ^17.0.0 age adoption passing confidence
@ngrx/effects ^16.0.0 -> ^17.0.0 age adoption passing confidence
@ngrx/store ^16.0.0 -> ^17.0.0 age adoption passing confidence
@ngrx/store-devtools 16.0.0 -> 17.2.0 age adoption passing confidence
jose 4.14.4 -> 5.4.0 age adoption passing confidence
ng-packagr ^16.0.1 -> ^18.0.0 age adoption passing confidence
tslib (source) 2.5.0 -> 2.6.3 age adoption passing confidence

Release Notes

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

v18.0.3

Compare Source

@​angular/cli
Commit Type Description
b709d2a24 fix add schema.json options to parsed command, also when a version is passed to ng add <package>@&#8203;<version>
@​angular/build
Commit Type Description
43a2a7d13 fix avoid escaping rebased Sass URL values
9acb5c7ca fix disable JS transformer persistent cache on web containers
346df4909 fix improve Sass rebaser ident token detection
6526a5f59 fix watch all related files during a Sass error

v18.0.2

Compare Source

@​schematics/angular
Commit Type Description
9967c04b8 fix check both application builder packages in SSR schematic
92b48ab14 fix set builders assets option correctly for new applications
@​angular/build
Commit Type Description
3bb06c37d fix disable Worker wait loop for Sass compilations in web containers
c4cf35923 fix print Sass @warn location
352879804 fix support valid self-closing MathML tags in HTML index file
476f3084a fix support valid self-closing SVG tags in HTML index file
@​angular/pwa
Commit Type Description
acbffd236 fix set manifest icons location to match assets builder option

v18.0.1

Compare Source

@​schematics/angular
Commit Type Description
01842f515 fix use angular.dev in readme
@​angular/build
Commit Type Description
7d253e9cd fix avoid rebasing URLs with function calls
6b6a76a99 fix disable persistent disk caching inside webcontainers by default
ba70a50b6 fix handle esbuild-browser polyfills option as string during ng serve
706423aca fix only import persistent cache store with active caching

v18.0.0

Compare Source

Breaking Changes

@​angular/cli
  • The ng doc command has been removed without a replacement. To perform searches, please visit www.angular.dev
  • Node.js support for versions <18.19.1 and <20.11.1 has been removed.
@​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": "@&#8203;angular-devkit/build-angular:application",
        "options": {
          "outputPath": "dist/my-app",
          "index": {
            "input": "src/index.html",
            "output": "index.html"
          }
        }
      }
    }
  • The support for the legacy Sass build pipeline, previously accessible via NG_BUILD_LEGACY_SASS when utilizing webpack-based builders, has been removed.

Deprecations

@​angular-devkit/schematics
  • NodePackageLinkTask in @angular-devkit/schematics. A custom task should be created instead.
@​angular/cli
Commit Type Description
ac3019570 feat add ng dev alias to ng serve
4087728c3 feat support for Node.js v22
41ab6c8c3 fix add --version option
df4dde95d fix add @angular/build package to update group list
1039f6d79 fix change update guide link to angular.dev
f4670fcb1 fix eliminate prompts during ng version command
a99ec6a54 fix keep cli package first in update package group metadata
dd786d495 fix only add --version option on default command
03eee0545 refactor remove ng doc command
c7b208555 refactor remove support for Node.js versions <18.19.1 and <20.11.1
@​schematics/angular
Commit Type Description
b2ac5fac7 feat allow application migration to use new build package in projects where possible
6530aa11b feat replace assets with public directory
725883713 feat use eventCoalescing option by default (standalone bootstrap)
508d97da7 feat use ngZoneEventCoalescing option by default (module bootstrap)
f452589e2 feat use TypeScript bundler module resolution for new projects
95a4d6ee5 fix add less dependency in application migration if needed
c46aa084f fix add postcss dependency in application migration if needed
157329384 fix add spaces around eventCoalescing option
23cc337aa fix keep deployUrl option when migrating to application builder
@​angular-devkit/architect
Commit Type Description
ddd08efef fix resolve builder aliases from containing package
@​angular-devkit/build-angular
Commit Type Description
53c319aaa feat add support for the poll option in the library builder
83d1d233a feat enhance Sass rebasing importer for resources URL defined in variables and handling of external paths
d51cb598a feat inject event-dispatch in SSR HTML page
0b03829bc feat move i18n extraction for application builder to new build system package
4ffe07aa2 feat move Vite-based dev-server for application builder to new build system package
d1c632af9 feat support native async/await when app is zoneless
37fc7f0cc fix disable Vite prebundling when script optimizations are enabled
2acf95a94 fix do not generate an index.html file in the browser directory when using SSR.
8a54875cb fix handle wrapping of class expressions emitted by esbuild
97973059e refactor remove Sass legacy implementation
@​angular-devkit/schematics
Commit Type Description
797584583 refactor deprecate NodePackageLinkTask
@​angular/build
Commit Type Description
810d213e1 feat introduce new official build system package
b7a0792b3 fix add a maximum rendering timeout for SSG
411115303 fix add console note about development server raw file size
921fa7cf4 fix add missing ansi-colors and picomatch dependencies
791cf75af fix check both potential build packages in Angular version check
4d7cd5e3e fix correctly wrap class expressions with static properties or blocks emitted by esbuild
57f448a0f fix decode URL pathname decoding during SSG fetch
940e382db fix disable Vite prebundling when script optimizations are enabled
70dbc7a6e fix emit error for invalid self-closing element in index HTML
44b401747 fix ensure input index HTML file triggers rebuilds when changed
dff4deaeb fix ensure recreated files are watched
17931166d fix format sizes using decimal byte units consistently
2085365e0 fix only generate shallow preload links for initial files
33cd47c85 fix properly configure headers for media resources and HTML page
d10fece2c fix properly rebase Sass url() values with leading interpolations
3f2963835 perf add persistent caching of JavaScript transformations
a15eb7d1c perf improve rebuild time for file loader usage with prebundling

v17.3.8

Compare Source

@​angular/cli
Commit Type Description
3ada6eb52 fix clarify optional migration instructions during ng update
@​angular-devkit/schematics
Commit Type Description
4b6ba8df1 fix SchematicTestRunner.runExternalSchematic fails with "The encoded data was not valid for encoding utf-8"

v17.3.7

Compare Source

v17.3.6

Compare Source

@​angular-devkit/build-angular
Commit Type Description
dcec59799 fix properly configure headers for media resources and HTML page

v17.3.5

Compare Source

v17.3.4

Compare Source

@​angular-devkit/build-angular
Commit Type Description
1128bdd64 fix ensure esbuild-based builders exclusively produce ESM output

v17.3.3

Compare Source

@​schematics/angular
Commit Type Description
a673baf5c fix Revert "fix(@​schematics/angular): rename SSR port env variable"

v17.3.2

Compare Source

@​schematics/angular
Commit Type Description
935f931ee fix rename SSR port env variable
@​angular-devkit/build-angular
Commit Type Description
c9d436000 fix Internal server error: Invalid URL when using a non localhost IP
59fba38ec fix ensure proper resolution of linked SCSS files
27dd8f208 fix service-worker references non-existent named index output
c12907d92 fix update webpack-dev-middleware to 6.1.2

v17.3.1

Compare Source

17.3.1 (2024-03-20)

@​schematics/angular
Commit Description
fix - 198ca9afc improve Sass format clarity for application style option
@​angular-devkit/build-angular
Commit Description
fix - 2809971a5 only generate server directory when SSR is enabled
fix - 3f601a14e typo in allowedHosts warning for unsupported vite options
perf - 79c44adac avoid transforming empty component stylesheets
perf - cc3167f30 reduce build times for apps with a large number of components when utilizing esbuild-based builders

v17.3.0

Compare Source

@​schematics/angular
Commit Type Description
5ab71fc92 feat update CSS/Sass import/use specifiers in application migration
@​angular-devkit/build-angular
Commit Type Description
9ca3a5450 feat add deployUrl to application builder
3821344da fix ensure proper display of build logs in the presence of warnings or errors
de2d05049 fix provide better error message when server option is required but missing

v17.2.3

Compare Source

@​angular-devkit/build-angular
Commit Type Description
7cc8261fd fix avoid implicit CSS file extensions when resolving
259ec72d5 fix avoid marking component styles as media with no output media directory
faffdfdce fix disable deployUrl when using vite dev-server

v17.2.2

Compare Source

@​angular-devkit/build-angular
Commit Type Description
3394d3cf1 fix ensure all related stylesheets are rebuilt when an import changes

v17.2.1

Compare Source

@​angular-devkit/build-angular
Commit Type Description
9e7c47b59 fix allow mts and cts file replacement
f2a2e9287 fix provide Vite client code source map when loading

v17.2.0

Compare Source

@​angular/cli
Commit Type Description
b3e206741 feat add support to bun package manager
@​schematics/angular
Commit Type Description
03e1aa790 feat add support to bun package manager
@​angular-devkit/build-angular
Commit Type Description
7f57123fd feat add define build option to application builder
f4f535653 feat add JSON build logs when using the application builder
b59f663e5 feat allow control of Vite-based development server prebundling
8f47f1e96 feat provide default and abbreviated build target support for dev-server and extract-i18n
7a12074dc feat provide option to allow automatically cleaning the terminal screen during rebuilds
7c522aa87 feat support using custom postcss configuration with application builder
476a68daa fix add output location in build stats
5e6f1a9f4 fix avoid preloading server chunks
41ea985f9 fix display server bundles in build stats
d493609d3 fix downgrade copy-webpack-plugin to workaround Node.js support issue
8d5af1d5c fix ensure correct .html served with Vite d

Configuration

📅 Schedule: Branch creation - "on the first day of the month" (UTC), Automerge - At any time (no schedule defined).

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

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot added the dependencies Update one or more dependencies version label Aug 1, 2023
@renovate renovate bot force-pushed the renovate/major-angular-packages branch from 0e58f5b to a7fe1d8 Compare August 18, 2023 18:21
@renovate renovate bot changed the title Update dependency tslib to v2 Update angular packages (major) Oct 25, 2023
@renovate renovate bot force-pushed the renovate/major-angular-packages branch from a7fe1d8 to dc09078 Compare October 25, 2023 18:42
@renovate renovate bot force-pushed the renovate/major-angular-packages branch 3 times, most recently from 1c731f8 to dee36d3 Compare November 8, 2023 13:47
Copy link
Contributor Author

renovate bot commented Nov 8, 2023

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm error code ERESOLVE
npm error ERESOLVE unable to resolve dependency tree
npm error
npm error While resolving: @nxt-engineering/kubernetes-client-angular@1.0.0
npm error Found: zone.js@0.13.3
npm error node_modules/zone.js
npm error   zone.js@"~0.13.0" from @nxt-engineering/kubernetes-client-angular@1.0.0
npm error   packages/kubernetes-client-angular
npm error     @nxt-engineering/kubernetes-client-angular@1.0.0
npm error     node_modules/@nxt-engineering/kubernetes-client-angular
npm error       workspace packages/kubernetes-client-angular from the root project
npm error
npm error Could not resolve dependency:
npm error peer zone.js@"~0.14.0" from @angular/core@17.3.7
npm error node_modules/@angular/core
npm error   @angular/core@"^17.0.0" from @nxt-engineering/kubernetes-client-angular@1.0.0
npm error   packages/kubernetes-client-angular
npm error     @nxt-engineering/kubernetes-client-angular@1.0.0
npm error     node_modules/@nxt-engineering/kubernetes-client-angular
npm error       workspace packages/kubernetes-client-angular from the root project
npm error   peer @angular/core@"17.3.7" from @angular/animations@17.3.7
npm error   node_modules/@angular/animations
npm error     @angular/animations@"^17.0.0" from @nxt-engineering/kubernetes-client-angular@1.0.0
npm error     packages/kubernetes-client-angular
npm error       @nxt-engineering/kubernetes-client-angular@1.0.0
npm error       node_modules/@nxt-engineering/kubernetes-client-angular
npm error
npm error Fix the upstream dependency conflict, or retry
npm error this command with --force or --legacy-peer-deps
npm error to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /tmp/renovate/cache/others/npm/_logs/2024-05-08T12_41_22_542Z-eresolve-report.txt

npm error A complete log of this run can be found in: /tmp/renovate/cache/others/npm/_logs/2024-05-08T12_41_22_542Z-debug-0.log

@renovate renovate bot force-pushed the renovate/major-angular-packages branch 3 times, most recently from d72cd57 to 77a076b Compare November 14, 2023 11:40
@renovate renovate bot force-pushed the renovate/major-angular-packages branch 5 times, most recently from a722269 to bfc5724 Compare November 22, 2023 01:41
@renovate renovate bot force-pushed the renovate/major-angular-packages branch 6 times, most recently from 8ed1068 to 53d2001 Compare November 30, 2023 23:16
@renovate renovate bot force-pushed the renovate/major-angular-packages branch 2 times, most recently from baab0f1 to b1813ae Compare December 13, 2023 16:48
@renovate renovate bot force-pushed the renovate/major-angular-packages branch 2 times, most recently from 8192307 to 0f13dea Compare December 24, 2023 16:00
@renovate renovate bot force-pushed the renovate/major-angular-packages branch 2 times, most recently from f7ce030 to aba3f4b Compare January 6, 2024 21:15
@renovate renovate bot force-pushed the renovate/major-angular-packages branch 2 times, most recently from b4d8cfa to cfbf764 Compare January 16, 2024 20:12
@renovate renovate bot force-pushed the renovate/major-angular-packages branch 2 times, most recently from af75902 to ddaff8f Compare March 7, 2024 14:29
@renovate renovate bot force-pushed the renovate/major-angular-packages branch 2 times, most recently from b6842bb to f79ec30 Compare March 15, 2024 23:10
@renovate renovate bot force-pushed the renovate/major-angular-packages branch 2 times, most recently from 062e0dd to ecebed2 Compare March 25, 2024 16:51
@renovate renovate bot force-pushed the renovate/major-angular-packages branch 2 times, most recently from 8b72f1d to e28e6bd Compare April 7, 2024 08:31
@renovate renovate bot force-pushed the renovate/major-angular-packages branch 3 times, most recently from 5ff6482 to 60cefa5 Compare April 17, 2024 16:44
@renovate renovate bot force-pushed the renovate/major-angular-packages branch from 60cefa5 to 8427220 Compare April 25, 2024 19:28
@renovate renovate bot force-pushed the renovate/major-angular-packages branch 3 times, most recently from b5e42ac to 29bda36 Compare May 10, 2024 15:02
Copy link
Contributor Author

renovate bot commented May 10, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: package-lock.json
npm error code ERESOLVE
npm error ERESOLVE unable to resolve dependency tree
npm error
npm error While resolving: @nxt-engineering/kubernetes-client-angular@1.0.0
npm error Found: zone.js@0.13.3
npm error node_modules/zone.js
npm error   zone.js@"~0.13.0" from @nxt-engineering/kubernetes-client-angular@1.0.0
npm error   packages/kubernetes-client-angular
npm error     @nxt-engineering/kubernetes-client-angular@1.0.0
npm error     node_modules/@nxt-engineering/kubernetes-client-angular
npm error       workspace packages/kubernetes-client-angular from the root project
npm error
npm error Could not resolve dependency:
npm error peer zone.js@"~0.14.0" from @angular/core@18.0.2
npm error node_modules/@angular/core
npm error   @angular/core@"^18.0.0" from @nxt-engineering/kubernetes-client-angular@1.0.0
npm error   packages/kubernetes-client-angular
npm error     @nxt-engineering/kubernetes-client-angular@1.0.0
npm error     node_modules/@nxt-engineering/kubernetes-client-angular
npm error       workspace packages/kubernetes-client-angular from the root project
npm error   peer @angular/core@"18.0.2" from @angular/animations@18.0.2
npm error   node_modules/@angular/animations
npm error     @angular/animations@"^18.0.0" from @nxt-engineering/kubernetes-client-angular@1.0.0
npm error     packages/kubernetes-client-angular
npm error       @nxt-engineering/kubernetes-client-angular@1.0.0
npm error       node_modules/@nxt-engineering/kubernetes-client-angular
npm error
npm error Fix the upstream dependency conflict, or retry
npm error this command with --force or --legacy-peer-deps
npm error to accept an incorrect (and potentially broken) dependency resolution.
npm error
npm error
npm error For a full report see:
npm error /tmp/renovate/cache/others/npm/_logs/2024-06-05T22_12_08_322Z-eresolve-report.txt
npm error A complete log of this run can be found in: /tmp/renovate/cache/others/npm/_logs/2024-06-05T22_12_08_322Z-debug-0.log

@renovate renovate bot force-pushed the renovate/major-angular-packages branch from 29bda36 to be71193 Compare May 15, 2024 14:17
@renovate renovate bot force-pushed the renovate/major-angular-packages branch 7 times, most recently from 8a024db to 0fca8d6 Compare May 29, 2024 16:13
@renovate renovate bot force-pushed the renovate/major-angular-packages branch 4 times, most recently from 9057563 to fa1e6b0 Compare June 4, 2024 21:37
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate bot force-pushed the renovate/major-angular-packages branch from fa1e6b0 to 2e5d97f Compare June 5, 2024 22:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Update one or more dependencies version
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants