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

build(deps-dev): bump @angular/cli and @angular-eslint/schematics #150

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 18, 2022

Bumps @angular/cli and @angular-eslint/schematics. These dependencies needed to be updated together.
Updates @angular/cli from 13.3.8 to 14.0.6

Release notes

Sourced from @​angular/cli's releases.

v14.0.6

14.0.6 (2022-07-13)

@​schematics/angular

Commit Description
fix - dfa6d73c5 remove browserslist configuration

@​angular/cli

Commit Description
fix - 178550529 handle cases when completion is enabled and running in an older CLI workspace
fix - 10f24498e remove deprecation warning of no prefixed schema options

@​angular-devkit/build-angular

Commit Description
fix - 4d848c4e6 generate different content hashes for scripts which are changed during the optimization phase

@​angular-devkit/core

Commit Description
fix - 2500f34a4 provide actionable warning when a workspace project has missing root property

Special Thanks

Alan Agius and martinfrancois

v14.0.5

14.0.5 (2022-07-06)

@​schematics/angular

Commit Description
fix - f9f970cab prevent importing RouterModule parallel to RoutingModule

@​angular/cli

Commit Description
fix - 98a6aad60 during an update only use package manager force option with npm 7+
fix - 094aa16aa improve error message for project-specific ng commands when run outside of a project
fix - e5e07fff1 show deprecated workspace config options in IDE

@​angular-devkit/build-angular

Commit Description
fix - aa8ed532f disable glob mounting for patterns that start with a forward slash
fix - c76edb8a7 don't override base-href in HTML when it's not set in builder
fix - f64903528 improve detection of CommonJS dependencies
fix - 74dbd5fc2 support hidden component stylesheet sourcemaps with esbuild builder

@​ngtools/webpack

Commit Description
fix - 7aed97561 do not run ngcc when node_modules does not exist

Special Thanks

Alan Agius, Charles Lyding, JoostK and Paul Gschwendtner

... (truncated)

Changelog

Sourced from @​angular/cli's changelog.

14.0.6 (2022-07-13)

@​angular/cli

Commit Type Description
178550529 fix handle cases when completion is enabled and running in an older CLI workspace
10f24498e fix remove deprecation warning of no prefixed schema options

@​schematics/angular

Commit Type Description
dfa6d73c5 fix remove browserslist configuration

@​angular-devkit/build-angular

Commit Type Description
4d848c4e6 fix generate different content hashes for scripts which are changed during the optimization phase

@​angular-devkit/core

Commit Type Description
2500f34a4 fix provide actionable warning when a workspace project has missing root property

Special Thanks

Alan Agius and martinfrancois

14.1.0-next.4 (2022-07-06)

@​angular/cli

Commit Type Description
cbccfd426 fix during an update only use package manager force option with npm 7+
dbe0dc174 fix improve error message for project-specific ng commands when run outside of a project
93ba050b0 fix show deprecated workspace config options in IDE

@​schematics/angular

Commit Type Description
9e3152466 fix prevent importing RouterModule parallel to RoutingModule

... (truncated)

Commits
  • 1cafcba release: cut the v14.0.6 release
  • d6fe8d9 test: move chrome driver path login inside the protractor config check
  • 029e578 test: use version 13 project in cli-exit-interop test
  • 804e05d test: delete build-errors and allow-js e2e tests
  • 4018289 ci: filter yarn and npm tests during E2E test setup
  • 4f28c4d test: update live-reload test to reduce flakes
  • 4d848c4 fix(@​angular-devkit/build-angular): generate different content hashes for scr...
  • 10f2449 fix(@​angular/cli): remove deprecation warning of no prefixed schema options
  • d396eba docs: remove long-description from schematics
  • 2500f34 fix(@​angular-devkit/core): provide actionable warning when a workspace projec...
  • Additional commits viewable in compare view

Updates @angular-eslint/schematics from 13.5.0 to 14.0.2

Release notes

Sourced from @​angular-eslint/schematics's releases.

v14.0.2

14.0.2 (2022-07-09)

Bug Fixes

v14.0.1

14.0.1 (2022-07-08)

Bug Fixes

  • builder: update to latest @​nrwl/devkit (#1082) (cc00a21)
  • remaining references to master (now main) (#1083) (8d36232)

v14.0.0

14.0.0 (2022-06-23)

As always we recommend that you update your existing workspaces by using ng update as we provide some helpful schematics to help migrate your workspaces to the latest and greatest. Running the following will update Angular, the Angular CLI and angular-eslint together:

ng update @angular/core @angular/cli @angular-eslint/schematics

BREAKING CHANGES

This is a major version bump and comes with some breaking changes, one of which might possibly impact your ESLint configuration if you are targeting inline HTML templates with a very specific glob pattern because the virtual filename has changed (read on to learn more).

  • update Angular to v14

    • All packages now require the use of Angular CLI >= 14.0.0 < 15.0.0
  • dropped support for Node 12 (in alignment with Angular's own version policy)

  • extracted inline HTML templates now contain the original Component filename in their processed virtual filename

    • When ESLint runs on your Component files, if you are using the recommended configuration, it will invoke a processor we have set up to extract the inline HTML templates from your Component declarations. Behind the scenes we give these extracted templates virtual filenames ending in .html so that rules targeting HTML files can also target your inline templates.
    • Before: In v13 the filename looked like this: inline-template-${++i}.component.html, where i was an incrementing integer (in case for example you had multiple Component declarations in the same .ts file.
    • Now: In v14 the filename now looks like this inline-template-${baseFilename}-${++i}.component.html, where i has the same incrementing integer behavior as before, but we now include the base filename within the virtual filename.
      • E.g. if you have a test file in projects/foo/src/app/app.spec.ts which declares a Component with an inline template, the virtual filename generated behind the scene for that template will be inline-template-app.spec.ts-1.component.html.
      • This new behavior allows you to use ESLint overrides to apply different behavior to Component inline templates in different files.

Features

  • update eslint to ^8.18.0 (automatically migrated via ng update)
  • update typescript-eslint to ^5.29.0 (automatically migrated via ng update)
  • update deprecated cli.defaultCollection usage in angular.json to use cli.schematicCollections instead (automatically migrated via ng update)
Changelog

Sourced from @​angular-eslint/schematics's changelog.

14.0.2 (2022-07-09)

Note: Version bump only for package @​angular-eslint/schematics

14.0.1 (2022-07-08)

Note: Version bump only for package @​angular-eslint/schematics

14.0.0 (2022-06-23)

Features

  • update dependency eslint to v8.18.0 (#1061) (6130377)
  • update typescript-eslint packages to v5.28.0 (#1045) (9e8c340)
  • update typescript-eslint packages to v5.29.0 (#1063) (02856cb)
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@angular/cli](https://github.com/angular/angular-cli) and [@angular-eslint/schematics](https://github.com/angular-eslint/angular-eslint/tree/HEAD/packages/schematics). These dependencies needed to be updated together.

Updates `@angular/cli` from 13.3.8 to 14.0.6
- [Release notes](https://github.com/angular/angular-cli/releases)
- [Changelog](https://github.com/angular/angular-cli/blob/main/CHANGELOG.md)
- [Commits](angular/angular-cli@13.3.8...14.0.6)

Updates `@angular-eslint/schematics` from 13.5.0 to 14.0.2
- [Release notes](https://github.com/angular-eslint/angular-eslint/releases)
- [Changelog](https://github.com/angular-eslint/angular-eslint/blob/main/packages/schematics/CHANGELOG.md)
- [Commits](https://github.com/angular-eslint/angular-eslint/commits/v14.0.2/packages/schematics)

---
updated-dependencies:
- dependency-name: "@angular/cli"
  dependency-type: direct:development
  update-type: version-update:semver-major
- dependency-name: "@angular-eslint/schematics"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jul 18, 2022
@dependabot dependabot bot requested a review from damingerdai July 18, 2022 15:02
@vercel
Copy link

vercel bot commented Jul 18, 2022

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Updated
daming-core-ui ✅ Ready (Inspect) Visit Preview Jul 18, 2022 at 3:04PM (UTC)

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 5, 2022

Superseded by #160.

@dependabot dependabot bot closed this Aug 5, 2022
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/angular/cli-and-angular-eslint/schematics-14.0.6 branch August 5, 2022 02:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants