Ecodev / fab-speed-dial

Angular Material FAB speed dial
https://ecodev.github.io/fab-speed-dial
MIT License
89 stars 19 forks source link

Bump @angular/cli and @angular-eslint/schematics #150

Closed dependabot[bot] closed 2 years ago

dependabot[bot] commented 2 years ago

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

Release notes

Sourced from @​angular/cli's releases.

v14.1.0

14.1.0 (2022-07-20)

@​schematics/angular

Commit Description
feat - 707911d42 support controlling addDependency utility rule install behavior
fix - a8fe4fcc3 Allow skipping existing dependencies in E2E schematic
fix - b8bf3b480 only issue a warning for addDependency existing specifier

@​angular/cli

Commit Description
fix - 3884b8652 add esbuild browser builder to workspace schema

@​angular-devkit/build-angular

Commit Description
feat - a7709b718 add externalDependencies to the esbuild browser builder
feat - 248860ad6 add Sass file support to experimental esbuild-based builder
feat - b06ae5514 add service worker support to experimental esbuild builder
feat - b5f6d862b Identify third-party sources in sourcemaps
fix - b3a14d056 allow third-party sourcemaps to be ignored in esbuild builder
fix - 53dd929e5 ensure esbuild builder sourcemap sources are relative to workspace

@​angular-devkit/schematics

Commit Description
feat - 526cdb263 allow chain rule to accept iterables of rules

@​angular/create

Commit Description
feat - cfe93fbc8 add support for yarn create and npm init

Special Thanks

Alan Agius, Charles Lyding, Derek Cormier, Doug Parker, Jason Bedard, Joey Perrott, Paul Gschwendtner, Victor Porof and renovate[bot]

v14.1.0-rc.3

14.1.0-rc.1 (2022-07-14)

@​schematics/angular

Commit Description
fix - b8bf3b480 only issue a warning for addDependency existing specifier
fix - 14f8f5c5a remove browserslist configuration

@​angular/cli

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

@​angular-devkit/build-angular

Commit Description
feat - 248860ad6 add Sass file support to experimental esbuild-based builder

... (truncated)

Changelog

Sourced from @​angular/cli's changelog.

14.1.0 (2022-07-20)

@​angular/cli

Commit Type Description
3884b8652 fix add esbuild browser builder to workspace schema

@​schematics/angular

Commit Type Description
707911d42 feat support controlling addDependency utility rule install behavior
a8fe4fcc3 fix Allow skipping existing dependencies in E2E schematic
b8bf3b480 fix only issue a warning for addDependency existing specifier

@​angular-devkit/build-angular

Commit Type Description
a7709b718 feat add externalDependencies to the esbuild browser builder
248860ad6 feat add Sass file support to experimental esbuild-based builder
b06ae5514 feat add service worker support to experimental esbuild builder
b5f6d862b feat Identify third-party sources in sourcemaps
b3a14d056 fix allow third-party sourcemaps to be ignored in esbuild builder
53dd929e5 fix ensure esbuild builder sourcemap sources are relative to workspace

@​angular-devkit/schematics

Commit Type Description
526cdb263 feat allow chain rule to accept iterables of rules

@​angular/create

Commit Type Description
cfe93fbc8 feat add support for yarn create and npm init

Special Thanks

Alan Agius, Charles Lyding, Derek Cormier, Doug Parker, Jason Bedard, Joey Perrott, Paul Gschwendtner, Victor Porof and renovate[bot]

14.0.7 (2022-07-20)

@​schematics/angular

... (truncated)

Commits
  • c4b59c8 release: cut the v14.1.0 release
  • a8fe4fc fix(@​schematics/angular): Allow skipping existing dependencies in E2E schematic
  • cf83bfd ci: change shell to bash in fail_fast job
  • b5f6d86 feat(@​angular-devkit/build-angular): Identify third-party sources in sourcemaps
  • 163618e build: fix snapshot build package.json substitution
  • 0569998 docs: remove @latest reference from npm init command
  • f698c2c fix(@​schematics/angular): incorrect logo for Angular Material
  • cf9362e fix(@​angular-devkit/build-angular): fallback to use projectRoot when sourceRo...
  • e96709e ci: extract rebase PR login into a common command
  • 0b65387 ci: disable husky
  • Additional commits viewable in compare view


Updates @angular-eslint/schematics from 13.1.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)

v13.5.0

13.5.0 (2022-06-12)

... (truncated)

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)

13.5.0 (2022-06-12)

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

13.4.0 (2022-06-11)

Features

  • update typescript-eslint packages to v5.27.1 (#1022) (99e8d4a)

13.3.0 (2022-06-10)

Features

13.2.1 (2022-04-14)

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

13.2.0 (2022-04-03)

Bug Fixes

  • schematics: support more permutations of ng-add (#970) (0bf549b)
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)
dependabot[bot] commented 2 years ago

Looks like these dependencies are up-to-date now, so this is no longer needed.