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 npm angular packages to v18 (major) - autoclosed #752

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 8, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@angular-devkit/build-angular ^16.2.14 -> ^18.0.2 age adoption passing confidence
@angular-eslint/builder (source) 16.3.1 -> 18.0.1 age adoption passing confidence
@angular-eslint/eslint-plugin (source) 16.3.1 -> 18.0.1 age adoption passing confidence
@angular-eslint/eslint-plugin-template (source) 16.3.1 -> 18.0.1 age adoption passing confidence
@angular-eslint/schematics (source) 16.3.1 -> 18.0.1 age adoption passing confidence
@angular-eslint/template-parser (source) 16.3.1 -> 18.0.1 age adoption passing confidence
@angular/animations (source) ^16.2.12 -> ^18.0.1 age adoption passing confidence
@angular/cdk 16.2.14 -> 18.0.1 age adoption passing confidence
@angular/cli ~16.2.14 -> ~18.0.2 age adoption passing confidence
@angular/common (source) ^16.2.12 -> ^18.0.1 age adoption passing confidence
@angular/compiler (source) ^16.2.12 -> ^18.0.1 age adoption passing confidence
@angular/compiler-cli (source) ^16.2.12 -> ^18.0.1 age adoption passing confidence
@angular/core (source) ^16.2.12 -> ^18.0.1 age adoption passing confidence
@angular/forms (source) ^16.2.12 -> ^18.0.1 age adoption passing confidence
@angular/localize 16.2.12 -> 18.0.1 age adoption passing confidence
@angular/material 16.2.14 -> 18.0.1 age adoption passing confidence
@angular/material-luxon-adapter ^16.2.14 -> ^18.0.1 age adoption passing confidence
@angular/platform-browser (source) ^16.2.12 -> ^18.0.1 age adoption passing confidence
@angular/platform-browser-dynamic (source) ^16.2.12 -> ^18.0.1 age adoption passing confidence
@angular/router (source) ^16.2.12 -> ^18.0.1 age adoption passing confidence

Release Notes

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

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 dev-server
944cbcdb1 fix limit the number of lazy chunks visible in the stats table
905e13633 fix support string as plugin option in custom postcss plugin config
@​angular-devkit/schematics
Commit Type Description
da1c38c48 fix add bun to known package managers
@​angular/create
Commit Type Description
600498f2c feat add support to bun package manager

v17.1.4

Compare Source

@​angular/cli
Commit Type Description
6d2168db9 fix prevent BOM errors in package.json during ng update
@​angular-devkit/build-angular
Commit Type Description
bf42d6df2 fix bypass Vite prebundling for absolute URL imports

v17.1.3

Compare Source

@​angular-devkit/build-angular
Commit Type Description
3de3aa170 fix allow ./ baseHref when using vite based server
17f47a3c9 fix ensure WebWorker main entry is used in output code

v17.1.2

Compare Source

@​angular-devkit/build-angular
Commit Type Description
6815f13e3 fix add required modules as externals imports
a0e306098 fix correctly handle glob negation in proxy config when using vite
235c8403a fix handle regular expressions in proxy config when using Vite
5332e5b2e fix resolve absolute output-path when using esbuild based builders
3deb0d4a1 fix return 404 for assets that are not found

v17.1.1

Compare Source

@​angular/cli

| Commit | Type | Description


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

github-actions bot commented Nov 8, 2023

Lines Statements Branches Functions
Coverage: 97%
97.42% (1779/1826) 87% (328/377) 95.9% (468/488)

JUnit

Tests Skipped Failures Errors Time
613 0 💤 0 ❌ 0 🔥 44.584s ⏱️
Files coverage (97%)
File% Stmts% Branch% Funcs% LinesUncovered Line #s
All files97.428795.997.37 
applications100100100100 
   index.component.ts100100100100 
applications/services97.180.9591.6696.96 
   applications-filters.service.ts100100100100 
   applications-grpc.service.ts10066.6610010068–69
   applications-index.service.ts93.18086.6692.8571–75
components98.7695.239699.01 
   actions-toolbar-group.component.ts100100100100 
   actions-toolbar.component.ts100100100100 
   auto-refresh-button.component.ts1006010010041, 64
   auto-refresh-dialog.component.ts100100100100 
   columns-button.component.ts100100100100 
   columns-modify-dialog.component.ts97.1410093.75100 
   count-tasks-by-status.component.ts1005010010048
   page-header.component.ts8010008039
   page-section-header.component.ts8010008031
   page-section.component.ts100100100100 
   refresh-button.component.ts100100100100 
   share-url.component.ts92.851007592.337
   show-card-content.component.ts100100100100 
   spinner.component.ts100100100100 
   table-actions-toolbar.component.ts100100100100 
   table-container.component.ts100100100100 
   view-tasks-by-status-dialog.component.ts100100100100 
   view-tasks-by-status.component.ts100100100100 
components/filters97.988.4610097.86 
   filters-chips.component.ts100100100100 
   filters-dialog-and.component.ts100100100100 
   filters-dialog-filter-field.component.ts92.5983.3310092.4598–99, 131, 173
   filters-dialog-input.component.ts10088.8810010090
   filters-dialog-or.component.ts100100100100 
   filters-dialog.component.ts100100100100 
   filters-toolbar.component.ts100100100100 
components/navigation99.4410097.3699.42 
   add-external-service-dialog.component.ts100100100100 
   edit-external-service-dialog.component.ts100100100100 
   form-external-service.component.ts100100100100 
   manage-external-services-dialog.component.ts100100100100 
   navigation.component.ts98.1410088.8898.11215
   theme-selector.component.ts100100100100 
components/table100100100100 
   table-empty-data.component.ts100100100100 
dashboard100100100100 
   index.component.ts100100100100 
dashboard/components100100100100 
   add-line-dialog.component.ts100100100100 
   add-statuses-group-dialog.component.ts100100100100 
   edit-name-line-dialog.component.ts100100100100 
   edit-status-group-dialog.component.ts100100100100 
   form-name-line.component.ts100100100100 
   form-statuses-group.component.ts100100100100 
   line.component.ts100100100100 
   manage-groups-dialog.component.ts100100100100 
   reorganize-lines-dialog.component.ts100100100100 
   split-lines-dialog.component.ts100100100100 
   statuses-group-card.component.ts100100100100 
dashboard/services100100100100 
   dashboard-index.service.ts100100100100 
   dashboard-storage.service.ts100100100100 
directives50100050 
   no-wrap.directive.ts501000505–6
pipes500040 
   empty-cell.pipe.ts5000406–10
services98.3395.2395.6598.2 
   auto-refresh.service.ts100100100100 
   default-config.service.ts100100100100 
   environment.service.ts80100507519
   filters.service.ts100100100100 
   icons.service.ts100100100100 
   navigation.service.ts10080100100109
   notification.service.ts100100100100 
   query-params.service.ts100100100100 
   share-url.service.ts100100100100 
   storage.service.ts98.0310010097.9595
   table-storage.service.ts500042.8511–31
   table-url.service.ts100100100100 
   table.service.ts100100100100 
   tasks-by-status.service.ts100100100100 
   user-grpc.service.ts100100100100 
   user.service.ts100100100100 
   utils.service.ts100100100100 
   versions-grpc.service.ts100100100100 
   versions.service.ts1007010010014, 25, 32
sessions/services93.336087.592.85 
   sessions-filters.service.ts95.836010095.65145
   sessions-statuses.service.ts83.33100508013
tasks/services77.2247.9183.7876.28 
   tasks-filters.service.ts100100100100 
   tasks-grpc.service.ts20.680017.8512–150
   tasks-index.service.ts100100100100 
   tasks-statuses.service.ts100100100100 
tokens100100100100 
   filters.token.ts100100100100 
types100100100100 
   filter-definition.ts100100100100 

@renovate renovate bot force-pushed the renovate/major-npm-angular branch 6 times, most recently from 0e1a362 to 3bea346 Compare November 9, 2023 22:53
@renovate renovate bot force-pushed the renovate/major-npm-angular branch 5 times, most recently from 49e55b1 to 3a956d7 Compare November 22, 2023 01:36
@renovate renovate bot force-pushed the renovate/major-npm-angular branch 18 times, most recently from 7781eea to 49c4dbb Compare December 4, 2023 08:26
@renovate renovate bot force-pushed the renovate/major-npm-angular branch 4 times, most recently from 928cd8e to fecb931 Compare May 22, 2024 21:23
@renovate renovate bot changed the title chore(deps): update npm angular packages to v17 (major) chore(deps): update npm angular packages (major) May 22, 2024
@renovate renovate bot force-pushed the renovate/major-npm-angular branch 6 times, most recently from bebb259 to 734dc94 Compare May 29, 2024 19:40
@renovate renovate bot changed the title chore(deps): update npm angular packages (major) chore(deps): update npm angular packages to v18 (major) May 29, 2024
@renovate renovate bot force-pushed the renovate/major-npm-angular branch 7 times, most recently from a7b94a6 to 8fcb252 Compare June 3, 2024 09:45
@renovate renovate bot changed the title chore(deps): update npm angular packages to v18 (major) Update npm angular packages to v18 (major) Jun 3, 2024
@renovate renovate bot force-pushed the renovate/major-npm-angular branch 2 times, most recently from 10eb3c1 to 2c20f9d Compare June 3, 2024 10:32
@renovate renovate bot changed the title Update npm angular packages to v18 (major) chore(deps): update npm angular packages to v18 (major) Jun 3, 2024
@renovate renovate bot force-pushed the renovate/major-npm-angular branch from 2c20f9d to 4af8980 Compare June 4, 2024 10:00
@renovate renovate bot force-pushed the renovate/major-npm-angular branch from 4af8980 to 40be341 Compare June 4, 2024 12:08
Copy link

sonarcloud bot commented Jun 4, 2024

Quality Gate Passed Quality Gate passed

Issues
0 New issues
0 Accepted issues

Measures
0 Security Hotspots
No data about Coverage
0.0% Duplication on New Code

See analysis details on SonarCloud

@renovate renovate bot changed the title chore(deps): update npm angular packages to v18 (major) chore(deps): update npm angular packages to v18 (major) - autoclosed Jun 4, 2024
@renovate renovate bot closed this Jun 4, 2024
@renovate renovate bot deleted the renovate/major-npm-angular branch June 4, 2024 12: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