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(e2e/a18): update angular-cli monorepo to v18.0.1 (patch) #8783

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 18, 2024

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@angular-devkit/build-angular 18.0.0-next.2 -> 18.0.1 age adoption passing confidence
@angular/cli 18.0.0-next.2 -> 18.0.1 age adoption passing confidence

Release Notes

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

v18.0.1

Compare Source

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

v18.0.0-rc.3

Compare Source

18.0.0-rc.3 (2024-05-21)
@​angular/cli
Commit Description
fix - 41ab6c8c3 add --version option
fix - 1039f6d79 change update guide link to angular.dev
fix - fa99a01ba clarify optional migration instructions during ng update
fix - f4670fcb1 eliminate prompts during ng version command
fix - a99ec6a54 keep cli package first in update package group metadata
@​angular-devkit/schematics
Commit Description
fix - 86b53c585 SchematicTestRunner.runExternalSchematic fails with "The encoded data was not valid for encoding utf-8"
@​angular/build
Commit Description
fix - 411115303 add console note about development server raw file size
fix - 4d7cd5e3e correctly wrap class expressions with static properties or blocks emitted by esbuild
fix - dff4deaeb ensure recreated files are watched
fix - d10fece2c properly rebase Sass url() values with leading interpolations
perf - 3f2963835 add persistent caching of JavaScript transformations
perf - a15eb7d1c improve rebuild time for file loader usage with prebundling

v18.0.0-rc.2

Compare Source

@​angular/build
Commit Type Description
57f448a0f fix decode URL pathname decoding during SSG fetch
17931166d fix format sizes using decimal byte units consistently

v18.0.0-rc.1

Compare Source

@​schematics/angular
Commit Type Description
c46aa084f fix add postcss dependency in application migration if needed
@​angular-devkit/architect
Commit Type Description
ddd08efef fix resolve builder aliases from containing package
@​angular-devkit/schematics
Commit Type Description
80fa03069 fix use web standard error check for Deno support
@​angular/build
Commit Type Description
b7a0792b3 fix add a maximum rendering timeout for SSG
2085365e0 fix only generate shallow preload links for initial files

v18.0.0-rc.0

Compare Source

@​angular/cli
Commit Type Description
df4dde95d fix add @angular/build package to update group list
@​schematics/angular
Commit Type Description
95a4d6ee5 fix add less dependency in application migration if needed
@​angular-devkit/build-angular
Commit Type Description
37fc7f0cc fix disable Vite prebundling when script optimizations are enabled
@​angular/build
Commit Type Description
940e382db fix disable Vite prebundling when script optimizations are enabled
44b401747 fix ensure input index HTML file triggers rebuilds when changed

v18.0.0-next.5

Compare Source

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

v18.0.0-next.4

Compare Source

@​angular/cli
Commit Type Description
4087728c3 feat support for Node.js v22
@​schematics/angular
Commit Type Description
b2ac5fac7 feat allow application migration to use new build package in projects where possible
23cc337aa fix keep deployUrl option when migrating to application builder
@​angular-devkit/build-angular
Commit Type Description
53c319aaa feat add support for the poll option in the library builder
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
@​angular/build
Commit Type Description
810d213e1 feat introduce new official build system package
70dbc7a6e fix emit error for invalid self-closing element in index HTML
33cd47c85 fix properly configure headers for media resources and HTML page

v18.0.0-next.3

Compare Source

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": "@&#8203;angular-devkit/build-angular:application",
        "options": {
          "outputPath": "dist/my-app",
          "index": {
            "input": "src/index.html",
            "output": "index.html"
          }
        }
      }
    }
@​angular/cli
Commit Type Description
03eee0545 refactor remove ng doc command
@​angular-devkit/build-angular
Commit Type Description
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
1c3ff61db fix address Unable to deserialize cloned data issue with Yarn PnP
2acf95a94 fix do not generate an index.html file in the browser directory when using SSR.
afa76bb36 fix ensure esbuild-based builders exclusively produce ESM output
43816a5b2 fix remove type="text/css" from style tag

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 becomes conflicted, 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 has been generated by Mend Renovate. View repository job log here.

Copy link
Contributor Author

renovate bot commented Apr 18, 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: e2e/a18/package-lock.json
npm ERR! code ERESOLVE
npm ERR! ERESOLVE could not resolve
npm ERR! 
npm ERR! While resolving: jest-preset-angular@14.0.3
npm ERR! Found: @angular-devkit/build-angular@18.0.0-rc.2
npm ERR! node_modules/@angular-devkit/build-angular
npm ERR!   dev @angular-devkit/build-angular@"18.0.0-rc.2" from the root project
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer @angular-devkit/build-angular@">=15.0.0 <18.0.0" from jest-preset-angular@14.0.3
npm ERR! node_modules/jest-preset-angular
npm ERR!   dev jest-preset-angular@"14.0.3" from the root project
npm ERR! 
npm ERR! Conflicting peer dependency: @angular-devkit/build-angular@17.3.7
npm ERR! node_modules/@angular-devkit/build-angular
npm ERR!   peer @angular-devkit/build-angular@">=15.0.0 <18.0.0" from jest-preset-angular@14.0.3
npm ERR!   node_modules/jest-preset-angular
npm ERR!     dev jest-preset-angular@"14.0.3" from the root project
npm ERR! 
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR! 
npm ERR! 
npm ERR! For a full report see:
npm ERR! /tmp/renovate/cache/others/npm/_logs/2024-05-09T02_50_34_029Z-eresolve-report.txt

npm ERR! A complete log of this run can be found in: /tmp/renovate/cache/others/npm/_logs/2024-05-09T02_50_34_029Z-debug-0.log

Copy link

codecov bot commented Apr 18, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 100.00%. Comparing base (dcdf57e) to head (e1a48c8).

Additional details and impacted files
@@            Coverage Diff            @@
##            master     #8783   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files          227       227           
  Lines         4935      4935           
  Branches      1147      1147           
=========================================
  Hits          4935      4935           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@renovate renovate bot force-pushed the renovate/e2e/a18/patch-angular-cli-monorepo branch from 69e6c71 to eb09091 Compare April 26, 2024 06:02
@renovate renovate bot changed the title chore(e2e/a18): update angular-cli monorepo to v18.0.0-next.3 (patch) chore(e2e/a18): update angular-cli monorepo to v18.0.0-next.4 (patch) Apr 26, 2024
@renovate renovate bot force-pushed the renovate/e2e/a18/patch-angular-cli-monorepo branch from eb09091 to 52f2121 Compare April 26, 2024 19:38
@renovate renovate bot changed the title chore(e2e/a18): update angular-cli monorepo to v18.0.0-next.4 (patch) chore(e2e/a18): update angular-cli monorepo to v18.0.0-next.5 (patch) Apr 26, 2024
@renovate renovate bot force-pushed the renovate/e2e/a18/patch-angular-cli-monorepo branch from 52f2121 to 43eba08 Compare May 1, 2024 20:26
@renovate renovate bot changed the title chore(e2e/a18): update angular-cli monorepo to v18.0.0-next.5 (patch) chore(e2e/a18): update angular-cli monorepo to v18.0.0-rc.0 (patch) May 1, 2024
@renovate renovate bot force-pushed the renovate/e2e/a18/patch-angular-cli-monorepo branch from 43eba08 to e4d0449 Compare May 2, 2024 18:37
@renovate renovate bot changed the title chore(e2e/a18): update angular-cli monorepo to v18.0.0-rc.0 (patch) chore(e2e/a18): update angular-cli monorepo to v18.0.0-rc.1 (patch) May 2, 2024
@renovate renovate bot force-pushed the renovate/e2e/a18/patch-angular-cli-monorepo branch from e4d0449 to 29347bb Compare May 9, 2024 02:50
@renovate renovate bot changed the title chore(e2e/a18): update angular-cli monorepo to v18.0.0-rc.1 (patch) chore(e2e/a18): update angular-cli monorepo to v18.0.0-rc.2 (patch) May 9, 2024
@renovate renovate bot force-pushed the renovate/e2e/a18/patch-angular-cli-monorepo branch from 29347bb to 18d00c6 Compare May 21, 2024 22:40
@renovate renovate bot changed the title chore(e2e/a18): update angular-cli monorepo to v18.0.0-rc.2 (patch) chore(e2e/a18): update angular-cli monorepo to v18.0.0-rc.3 (patch) May 21, 2024
Copy link
Contributor Author

renovate bot commented May 21, 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: e2e/a18/package-lock.json
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR! 
npm ERR! While resolving: a18@0.0.0
npm ERR! Found: @angular/compiler-cli@18.0.0-next.4
npm ERR! node_modules/@angular/compiler-cli
npm ERR!   dev @angular/compiler-cli@"18.0.0-next.4" from the root project
npm ERR! 
npm ERR! Could not resolve dependency:
npm ERR! peer @angular/compiler-cli@"^18.0.0" from @angular-devkit/build-angular@18.0.1
npm ERR! node_modules/@angular-devkit/build-angular
npm ERR!   dev @angular-devkit/build-angular@"18.0.1" from the root project
npm ERR! 
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR! 
npm ERR! 
npm ERR! For a full report see:
npm ERR! /tmp/renovate/cache/others/npm/_logs/2024-05-23T17_24_47_795Z-eresolve-report.txt

npm ERR! A complete log of this run can be found in: /tmp/renovate/cache/others/npm/_logs/2024-05-23T17_24_47_795Z-debug-0.log

@renovate renovate bot force-pushed the renovate/e2e/a18/patch-angular-cli-monorepo branch from 18d00c6 to c1c53e9 Compare May 22, 2024 20:32
@renovate renovate bot changed the title chore(e2e/a18): update angular-cli monorepo to v18.0.0-rc.3 (patch) chore(e2e/a18): update angular-cli monorepo to v18.0.0 (patch) May 22, 2024
@renovate renovate bot force-pushed the renovate/e2e/a18/patch-angular-cli-monorepo branch from c1c53e9 to e1a48c8 Compare May 23, 2024 17:24
@renovate renovate bot changed the title chore(e2e/a18): update angular-cli monorepo to v18.0.0 (patch) chore(e2e/a18): update angular-cli monorepo to v18.0.1 (patch) May 23, 2024
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.

None yet

0 participants