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

Bump the npm group with 22 updates #74

Merged
merged 1 commit into from
Oct 21, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 21, 2023

Bumps the npm group with 22 updates:

Package From To
@angular-devkit/build-angular 16.2.6 16.2.7
@angular/animations 16.2.9 16.2.10
@angular/cli 16.2.6 16.2.7
@angular/common 16.2.9 16.2.10
@angular/compiler 16.2.9 16.2.10
@angular/compiler-cli 16.2.9 16.2.10
@angular/core 16.2.9 16.2.10
@angular/forms 16.2.9 16.2.10
@angular/language-service 16.2.9 16.2.10
@angular/platform-browser 16.2.9 16.2.10
@angular/platform-browser-dynamic 16.2.9 16.2.10
@angular/router 16.2.9 16.2.10
@types/chrome 0.0.246 0.0.248
@types/jasmine 5.1.0 5.1.1
@types/node 20.8.6 20.8.7
@types/nw.js 0.13.18 0.13.19
@typescript-eslint/eslint-plugin 6.7.5 6.8.0
@typescript-eslint/parser 6.7.5 6.8.0
concurrently 8.2.1 8.2.2
eslint 8.51.0 8.52.0
nw 0.80.0 0.81.0
puppeteer 21.3.8 21.4.0

Updates @angular-devkit/build-angular from 16.2.6 to 16.2.7

Release notes

Sourced from @​angular-devkit/build-angular's releases.

v16.2.7

16.2.7 (2023-10-19)

@​schematics/angular

Commit Description
fix - f1a0c3361 change Twitter logo to X
Changelog

Sourced from @​angular-devkit/build-angular's changelog.

16.2.7 (2023-10-19)

@​schematics/angular

Commit Type Description
f1a0c3361 fix change Twitter logo to X

17.0.0-rc.0 (2023-10-19)

@​schematics/angular

Commit Type Description
6bed28640 fix change Twitter logo to X
d60a6e86a fix noop workspace config migration when already executed

@​angular-devkit/build-angular

Commit Type Description
da4e19145 fix address a path concatenation on Windows
657f78292 fix avoid dev server update analysis when build fails with vite
0c982b993 fix avoid repeat error clear in vite development server
508c7606e fix do not print Angular is running in development mode. in the server console when running prerender in dev mode
e817656f6 fix do not print Angular is running in development mode. in the server console when running prerender in dev mode
52f595655 fix ensure i18n locale data is included in SSR application builds
3e5a99c2c fix ensure recalculation of component diagnostics when template changes
a3e9efe80 fix fully track Web Worker file changes in watch mode
b9505ed09 fix generate a file containing a list of prerendered routes
58bd3971f fix process nested tailwind usage in application builder
263271fae fix resolve and load sourcemaps during prerendering to provide better stacktraces
b78508fc8 fix several fixes to assets and files writes in browser-esbuild builder
6c3d7d1c1 fix update ssr option definition
34947fc64 fix use incremental component style bundling only in watch mode
49fe74e24 perf reduce CLI loading times by removing critters from critical path

17.0.0-next.9 (2023-10-12)

@​schematics/angular

| Commit | Type | Description |

... (truncated)

Commits
  • b5d4003 release: cut the v16.2.7 release
  • f1a0c33 fix(@​schematics/angular): change Twitter logo to X
  • bac5be7 docs(@​angular/cli): remove incorrect statement about outputPath
  • See full diff in compare view

Updates @angular/animations from 16.2.9 to 16.2.10

Release notes

Sourced from @​angular/animations's releases.

v16.2.10

16.2.10 (2023-10-18)

Changelog

Sourced from @​angular/animations's changelog.

16.2.10 (2023-10-18)

17.0.0-next.8 (2023-10-11)

Breaking Changes

common

  • the NgSwitch directive now defaults to the === equality operator, migrating from the previously used ==. NgSwitch expressions and / or individual condition values need adjusting to this stricter equality check. The added warning message should help pinpointing NgSwitch usages where adjustments are needed.

core

  • The mutate method was removed from the WritableSignal interface and completely dropped from the public API surface. As an alternative please use the update method and make immutable changes to the object.

    Example before:

    items.mutate(itemsArray => itemsArray.push(newItem));

    Example after:

    items.update(itemsArray => [itemsArray, …newItem]);
  • The mutate method was removed from the WritableSignal interface and completely dropped from the public API surface. As an alternative please use the update method and make immutable changes to the object.

    Example before:

    items.mutate(itemsArray => itemsArray.push(newItem));

    Example after:

    items.update(itemsArray => [itemsArray, …newItem]);

platform-browser

  • The withNoDomReuse() function was removed from the public API. If you need to disable hydration, you can exclude the provideClientHydration() call from provider list in your application (which would disable hydration features for the entire application) or use ngSkipHydration attribute to disable hydration for particular components. See this guide for additional information: https://angular.io/guide/hydration#how-to-skip-hydration-for-particular-components.

router

  • Routes with loadComponent would incorrectly cause child routes to inherit their data by default. The default paramsInheritanceStrategy is emptyOnly. If parent data should be

... (truncated)

Commits

Updates @angular/cli from 16.2.6 to 16.2.7

Release notes

Sourced from @​angular/cli's releases.

v16.2.7

16.2.7 (2023-10-19)

@​schematics/angular

Commit Description
fix - f1a0c3361 change Twitter logo to X
Changelog

Sourced from @​angular/cli's changelog.

16.2.7 (2023-10-19)

@​schematics/angular

Commit Type Description
f1a0c3361 fix change Twitter logo to X

17.0.0-rc.0 (2023-10-19)

@​schematics/angular

Commit Type Description
6bed28640 fix change Twitter logo to X
d60a6e86a fix noop workspace config migration when already executed

@​angular-devkit/build-angular

Commit Type Description
da4e19145 fix address a path concatenation on Windows
657f78292 fix avoid dev server update analysis when build fails with vite
0c982b993 fix avoid repeat error clear in vite development server
508c7606e fix do not print Angular is running in development mode. in the server console when running prerender in dev mode
e817656f6 fix do not print Angular is running in development mode. in the server console when running prerender in dev mode
52f595655 fix ensure i18n locale data is included in SSR application builds
3e5a99c2c fix ensure recalculation of component diagnostics when template changes
a3e9efe80 fix fully track Web Worker file changes in watch mode
b9505ed09 fix generate a file containing a list of prerendered routes
58bd3971f fix process nested tailwind usage in application builder
263271fae fix resolve and load sourcemaps during prerendering to provide better stacktraces
b78508fc8 fix several fixes to assets and files writes in browser-esbuild builder
6c3d7d1c1 fix update ssr option definition
34947fc64 fix use incremental component style bundling only in watch mode
49fe74e24 perf reduce CLI loading times by removing critters from critical path

17.0.0-next.9 (2023-10-12)

@​schematics/angular

| Commit | Type | Description |

... (truncated)

Commits
  • b5d4003 release: cut the v16.2.7 release
  • f1a0c33 fix(@​schematics/angular): change Twitter logo to X
  • bac5be7 docs(@​angular/cli): remove incorrect statement about outputPath
  • See full diff in compare view

Updates @angular/common from 16.2.9 to 16.2.10

Release notes

Sourced from @​angular/common's releases.

v16.2.10

16.2.10 (2023-10-18)

Changelog

Sourced from @​angular/common's changelog.

16.2.10 (2023-10-18)

17.0.0-next.8 (2023-10-11)

Breaking Changes

common

  • the NgSwitch directive now defaults to the === equality operator, migrating from the previously used ==. NgSwitch expressions and / or individual condition values need adjusting to this stricter equality check. The added warning message should help pinpointing NgSwitch usages where adjustments are needed.

core

  • The mutate method was removed from the WritableSignal interface and completely dropped from the public API surface. As an alternative please use the update method and make immutable changes to the object.

    Example before:

    items.mutate(itemsArray => itemsArray.push(newItem));

    Example after:

    items.update(itemsArray => [itemsArray, …newItem]);
  • The mutate method was removed from the WritableSignal interface and completely dropped from the public API surface. As an alternative please use the update method and make immutable changes to the object.

    Example before:

    items.mutate(itemsArray => itemsArray.push(newItem));

    Example after:

    items.update(itemsArray => [itemsArray, …newItem]);

platform-browser

  • The withNoDomReuse() function was removed from the public API. If you need to disable hydration, you can exclude the provideClientHydration() call from provider list in your application (which would disable hydration features for the entire application) or use ngSkipHydration attribute to disable hydration for particular components. See this guide for additional information: https://angular.io/guide/hydration#how-to-skip-hydration-for-particular-components.

router

  • Routes with loadComponent would incorrectly cause child routes to inherit their data by default. The default paramsInheritanceStrategy is emptyOnly. If parent data should be

... (truncated)

Commits

Updates @angular/compiler from 16.2.9 to 16.2.10

Release notes

Sourced from @​angular/compiler's releases.

v16.2.10

16.2.10 (2023-10-18)

Changelog

Sourced from @​angular/compiler's changelog.

16.2.10 (2023-10-18)

17.0.0-next.8 (2023-10-11)

Breaking Changes

common

  • the NgSwitch directive now defaults to the === equality operator, migrating from the previously used ==. NgSwitch expressions and / or individual condition values need adjusting to this stricter equality check. The added warning message should help pinpointing NgSwitch usages where adjustments are needed.

core

  • The mutate method was removed from the WritableSignal interface and completely dropped from the public API surface. As an alternative please use the update method and make immutable changes to the object.

    Example before:

    items.mutate(itemsArray => itemsArray.push(newItem));

    Example after:

    items.update(itemsArray => [itemsArray, …newItem]);
  • The mutate method was removed from the WritableSignal interface and completely dropped from the public API surface. As an alternative please use the update method and make immutable changes to the object.

    Example before:

    items.mutate(itemsArray => itemsArray.push(newItem));

    Example after:

    items.update(itemsArray => [itemsArray, …newItem]);

platform-browser

  • The withNoDomReuse() function was removed from the public API. If you need to disable hydration, you can exclude the provideClientHydration() call from provider list in your application (which would disable hydration features for the entire application) or use ngSkipHydration attribute to disable hydration for particular components. See this guide for additional information: https://angular.io/guide/hydration#how-to-skip-hydration-for-particular-components.

router

  • Routes with loadComponent would incorrectly cause child routes to inherit their data by default. The default paramsInheritanceStrategy is emptyOnly. If parent data should be

... (truncated)

Commits

Updates @angular/compiler-cli from 16.2.9 to 16.2.10

Release notes

Sourced from @​angular/compiler-cli's releases.

v16.2.10

16.2.10 (2023-10-18)

Changelog

Sourced from @​angular/compiler-cli's changelog.

16.2.10 (2023-10-18)

17.0.0-next.8 (2023-10-11)

Breaking Changes

common

  • the NgSwitch directive now defaults to the === equality operator, migrating from the previously used ==. NgSwitch expressions and / or individual condition values need adjusting to this stricter equality check. The added warning message should help pinpointing NgSwitch usages where adjustments are needed.

core

  • The mutate method was removed from the WritableSignal interface and completely dropped from the public API surface. As an alternative please use the update method and make immutable changes to the object.

    Example before:

    items.mutate(itemsArray => itemsArray.push(newItem));

    Example after:

    items.update(itemsArray => [itemsArray, …newItem]);
  • The mutate method was removed from the WritableSignal interface and completely dropped from the public API surface. As an alternative please use the update method and make immutable changes to the object.

    Example before:

    items.mutate(itemsArray => itemsArray.push(newItem));

    Example after:

    items.update(itemsArray => [itemsArray, …newItem]);

platform-browser

  • The withNoDomReuse() function was removed from the public API. If you need to disable hydration, you can exclude the provideClientHydration() call from provider list in your application (which would disable hydration features for the entire application) or use ngSkipHydration attribute to disable hydration for particular components. See this guide for additional information: https://angular.io/guide/hydration#how-to-skip-hydration-for-particular-components.

router

  • Routes with loadComponent would incorrectly cause child routes to inherit their data by default. The default paramsInheritanceStrategy is emptyOnly. If parent data should be

... (truncated)

Commits

Updates @angular/core from 16.2.9 to 16.2.10

Release notes

Sourced from @​angular/core's releases.

v16.2.10

16.2.10 (2023-10-18)

Changelog

Sourced from @​angular/core's changelog.

16.2.10 (2023-10-18)

17.0.0-next.8 (2023-10-11)

Breaking Changes

common

  • the NgSwitch directive now defaults to the === equality operator, migrating from the previously used ==. NgSwitch expressions and / or individual condition values need adjusting to this stricter equality check. The added warning message should help pinpointing NgSwitch usages where adjustments are needed.

core

  • The mutate method was removed from the WritableSignal interface and completely dropped from the public API surface. As an alternative please use the update method and make immutable changes to the object.

    Example before:

    items.mutate(itemsArray => itemsArray.push(newItem));

    Example after:

    items.update(itemsArray => [itemsArray, …newItem]);
  • The mutate method was removed from the WritableSignal interface and completely dropped from the public API surface. As an alternative please use the update method and make immutable changes to the object.

    Example before:

    items.mutate(itemsArray => itemsArray.push(newItem));

    Example after:

    items.update(itemsArray => [itemsArray, …newItem]);

platform-browser

  • The withNoDomReuse() function was removed from the public API. If you need to disable hydration, you can exclude the provideClientHydration() call from provider list in your application (which would disable hydration features for the entire application) or use ngSkipHydration attribute to disable hydration for particular components. See this guide for additional information: https://angular.io/guide/hydration#how-to-skip-hydration-for-particular-components.

router

  • Routes with loadComponent would incorrectly cause child routes to inherit their data by default. The default paramsInheritanceStrategy is emptyOnly. If parent data should be

... (truncated)

Commits
  • d75eaa7 refactor(core): remove unused helper for setting LView for reactive consume...
  • See full diff in compare view

Updates @angular/forms from 16.2.9 to 16.2.10

Release notes

Sourced from @​angular/forms's releases.

v16.2.10

16.2.10 (2023-10-18)

Changelog

Sourced from @​angular/forms's changelog.

16.2.10 (2023-10-18)

17.0.0-next.8 (2023-10-11)

Breaking Changes

common

  • the NgSwitch directive now defaults to the === equality operator, migrating from the previously used ==. NgSwitch expressions and / or individual condition values need adjusting to this stricter equality check. The added warning message should help pinpointing NgSwitch usages where adjustments are needed.

core

  • The mutate method was removed from the WritableSignal interface and completely dropped from the public API surface. As an alternative please use the update method and make immutable changes to the object.

    Example before:

    items.mutate(itemsArray => itemsArray.push(newItem));

    Example after:

    items.update(itemsArray => [itemsArray, …newItem]);
  • The mutate method was removed from the WritableSignal interface and completely dropped from the public API surface. As an alternative please use the update method and make immutable changes to the object.

    Example before:

    items.mutate(itemsArray => itemsArray.push(newItem));

    Example after:

    items.update(itemsArray => [itemsArray, …newItem]);

platform-browser

  • The withNoDomReuse() function was removed from the public API. If you need to disable hydration, you can exclude the provideClientHydration() call from provider list in your application (which would disable hydration features for the entire application) or use ngSkipHydration attribute to disable hydration for particular components. See this guide for additional information: https://angular.io/guide/hydration#how-to-skip-hydration-for-particular-components.

router

  • Routes with loadComponent would incorrectly cause child routes to inherit their data by default. The default paramsInheritanceStrategy is emptyOnly. If parent data should be

... (truncated)

Commits

Updates @angular/language-service from 16.2.9 to 16.2.10

Release notes

Sourced from @​angular/language-service's releases.

v16.2.10

16.2.10 (2023-10-18)

Changelog

Sourced from @​angular/language-service's changelog.

16.2.10 (2023-10-18)

17.0.0-next.8 (2023-10-11)

Breaking Changes

common

  • the NgSwitch directive now defaults to the === equality operator, migrating from the previously used ==. NgSwitch expressions and / or individual condition values need adjusting to this stricter equality check. The added warning message should help pinpointing NgSwitch usages where adjustments are needed.

core

  • The mutate method was removed from the WritableSignal interface and completely dropped from the public API surface. As an alternative please use the update method and make immutable changes to the object.

    Example before:

    items.mutate(itemsArray => itemsArray.push(newItem));

    Example after:

    items.update(itemsArray => [itemsArray, …newItem]);
  • The mutate method was removed from the WritableSignal interface and completely dropped from the public API surface. As an alternative please use the update method and make immutable changes to the object.

    Example before:

    items.mutate(itemsArray => itemsArray.push(newItem));

    Example after:

    items.update(itemsArray => [itemsArray, …newItem]);

platform-browser

  • The withNoDomReuse() function was removed from the public API. If you need to disable hydration, you can exclude the provideClientHydration() call from provider list in your application (which would disable hydration features for the entire application) or use ngSkipHydration attribute to disable hydration for particular components. See this guide for additional information: https://angular.io/guide/hydration#how-to-skip-hydration-for-particular-components.

router

  • Routes with loadComponent would incorrectly cause child routes to inherit their data by default. The default paramsInheritanceStrategy is emptyOnly. If parent data should be

... (truncated)

Commits

Updates @angular/platform-browser from 16.2.9 to 16.2.10

Release notes

Sourced from @​angular/platform-browser's releases.

v16.2.10

16.2.10 (2023-10-18)

Changelog

Sourced from @​angular/platform-browser's changelog.

16.2.10 (2023-10-18)

17.0.0-next.8 (2023-10-11)

Breaking Changes

common

  • the NgSwitch directive now defaults to the === equality operator, migrating from the previously used ==. NgSwitch expressions and / or individual condition values need adjusting to this stricter equality check. The added warning message should help pinpointing NgSwitch usages where adjustments are needed.

core

  • The mutate method was removed from the WritableSignal interface and completely dropped from the public API surface. As an alternative please use the update method and make immutable changes to the object.

    Example before:

    items.mutate(itemsArray => itemsArray.push(newItem));

    Example after:

    items.update(itemsArray => [itemsArray, …newItem]);
  • The mutate method was removed from the WritableSignal interface and completely dropped from the public API surface. As an alternative please use the update method and make immutable changes to the object.

    Example before:

    items.mutate(itemsArray => itemsArray.push(newItem));

    Example after:

    items.update(itemsArray => [itemsArray, …newItem]);

platform-browser

  • The withNoDomReuse() function was removed from the public API. If you need to disable hydration, you can exclude the provideClientHydration() call from provider list in your application (which would disable hydration features for the entire application) or use ngSkipHydration attribute to disable hydration for particular components. See this guide for additional information: https://angular.io/guide/hydration#how-to-skip-hydration-for-particular-components.

router

  • Routes with loadComponent would incorrectly cause child routes to inherit their data by default. The default paramsInheritanceStrategy is emptyOnly. If parent data should be

... (truncated)

Commits

Updates @angular/platform-browser-dynamic from 16.2.9 to 16.2.10

Release notes

Sourced from @​angular/platform-browser-dynamic's releases.

v16.2.10

16.2.10 (2023-10-18)

Changelog

Sourced from @​angular/platform-browser-dynamic's changelog.

16.2.10 (2023-10-18)

17.0.0-next.8 (2023-10-11)

Breaking Changes

common

  • the NgSwitch directive now defaults to the === equality operator, migrating from the previously used ==. NgSwitch expressions and / or individual condition values need adjusting to this stricter equality check. The added warning message should help pinpointing NgSwitch usages where adjustments are needed.

core

  • The mutate method was removed from the WritableSignal interface and completely dropped from the public API surface. As an alternative please use the update method and make immutable changes to the object.

    Example before:

    items.mutate(itemsArray => itemsArray.push(newItem));

    Example after:

    items.update(itemsArray => [itemsArray, …newItem]);
  • The mutate method was removed from the WritableSignal interface and completely dropped from the public API surface. As an alternative please use the update method and make immutable changes to the object.

    Example before:

    items.mutate(itemsArray => itemsArray.push(newItem));

    Example after:

    items.update(itemsArray => [itemsArray, …newItem]);

platform-browser

  • The withNoDomReuse() function was removed from the public API. If you need to disable hydration, you can exclude the provideClientHydration() call from provider list in your application (which would disable hydration features for the entire application) or use ngSkipHydration attribute to disable hydration for particular components. See this guide for additional information: https://angular.io/guide/hydration#how-to-skip-hydration-for-particular-components.

router

  • Routes with loadComponent would incorrectly cause child routes to inherit their data by default. The default paramsInheritanceStrategy is emptyOnly. If parent data should be

... (truncated)

Commits

Updates @angular/router from 16.2.9 to 16.2.10

Release notes

Sourced from @​angular/router's releases.

v16.2.10

16.2.10 (2023-10-18)

Changelog

Sourced from @​angular/router's changelog.

16.2.10 (2023-10-18)

17.0.0-next.8 (2023-10-11)

Breaking Changes

common

  • the NgSwitch directive now defaults to the === equality operator, migrating from the previously used ==. NgSwitch expressions and / or individual condition values need adjusting to this stricter equality check. The added warning message should help pinpointing NgSwitch usages where adjustments are needed.

core

  • The mutate method was removed from the WritableSignal interface and completely dropped from the public API surface. As an alternative please use the update method and make immutable changes to the object.

    Example before:

    items.mutate(itemsArray => itemsArray.push(newItem));

    Example after:

    items.update(itemsArray => [itemsArray, …newItem]);
  • The mutate method was removed from the WritableSignal interface and completely dropped from the public API surface. As an alternative please use the update method and make immutable changes to the object.

    Example before:

    items.mutate(itemsArray => itemsArray.push(newItem));

    Example after:

    items.update(itemsArray => [itemsArray, …newItem]);

platform-browser

  • The withNoDomReuse() function was removed from the public API. If you need to disable hydration, you can exclude the provideClientHydration() call from provider list in your application (which would disable hydration features for the entire application) or use ngSkipHydration attribute to disable hydration for particular components. See this guide for additional information: https://angular.io/guide/hydration#how-to-skip-hydration-for-particular-components.

router

  • Routes with loadComponent would incorrectly cause child routes to inherit their data by default. The default paramsInheritanceStrategy is emptyOnly. If parent data should be

... (truncated)

Commits
  • 630e906 docs(router): add clarification for behavior of paramsInheritanceStrategy: 'e...
  • See full diff in compare view

Updates @types/chrome from 0.0.246 to 0.0.248

Commits

Updates @types/jasmine from 5.1.0 to 5.1.1

Commits

Updates @types/node from 20.8.6 to 20.8.7

Commits

Updates @types/nw.js from 0.13.18 to 0.13.19

Commits

Updates @typescript-eslint/eslint-plugin from 6.7.5 to 6.8.0

Release notes

Sourced from @​typescript-eslint/eslint-plugin's releases.

v6.8.0

6.8.0 (2023-10-16)

Bug Fixes

  • eslint-plugin: [consistent-type-imports] import assertion checks added (#7722) (afdae37)
  • eslint-plugin: [no-shadow] fix static class generics for class expressions (#7724) (e5ea1d0)
  • eslint-plugin: [no-unsafe-member-access] report on only the accessed property (#7717) (f81a2da)
  • eslint-plugin: [no-useless-empty-export] exempt .d.ts (#7718) (ac397f1)

Features

  • eslint-plugin: add new extended rule prefer-destructuring (#7117) (3c6379b)

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/eslint-plugin's changelog.

6.8.0 (2023-10-16)

Bug Fixes

  • eslint-plugin: [consistent-type-imports] import assertion checks added (#7722) (afdae37)
  • eslint-plugin: [no-shadow] fix static class generics for class expressions (#7724) (e5ea1d0)
  • eslint-plugin: [no-unsafe-member-access] report on only the accessed property (#7717) (f81a2da)
  • eslint-plugin: [no-useless-empty-export] exempt .d.ts (#7718) (ac397f1)

Features

  • eslint-plugin: add new extended rule prefer-destructuring (#7117) (3c6379b)

You can read about our versioning strategy and releases on our website.

Commits
  • d475f88 chore: publish v6.8.0
  • 3d58813 build: fix introduced post-merge build break with no-useless-empty-export
  • 3c6379b feat(eslint-plugin): add new extended rule prefer-destructuring (#7117)
  • afdae37 fix(eslint-plugin): [consistent-type-imports] import assertion checks added (...
  • e5ea1d0 fix(eslint-plugin): [no-shadow] fix static class generics for class expressio...
  • ac397f1 fix(eslint-plugin): [no-useless-empty-export] exempt .d.ts (#7718)
  • f81a2da fix(eslint-plugin): [no-unsafe-member-access] report on only the accessed pro...
  • cff6e47 docs(eslint-plugin): deduplicate examples for no-explicit-any (#7715)
  • afee34c chore: use named import for util (#7669)
  • a9c7928 docs(eslint-plugin): [explicit-function-return-type] fix typo in option name ...
  • See full diff in compare view

Updates @typescript-eslint/parser from 6.7.5 to 6.8.0

Release notes

Sourced from @​typescript-eslint/parser's releases.

v6.8.0

6.8.0 (2023-10-16)

Bug Fixes

  • eslint-plugin: [consistent-type-imports] import assertion checks added (#7722) (afdae37)
  • eslint-plugin: [no-shadow] fix static class generics for class expressions (#7724) (e5ea1d0)
  • eslint-plugin: [no-unsafe-member-access] report on only the accessed property (#7717) (f81a2da)
  • eslint-plugin: [no-useless-empty-export] exempt .d.ts (#7718) (ac397f1)

Features

  • eslint-plugin: add new extended rule prefer-destructuring (#7117) (3c6379b)

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from @​typescript-eslint/parser's changelog.

6.8.0 (2023-10-16)

Note: Version bump only for package @​typescript-eslint/parser

You can read about our versioning strategy and releases on our website.

Commits

Updates concurrently from 8.2.1 to 8.2.2

Release notes

Sourced from concurrently's releases.

v8.2.2

What's Changed

New Contributors

Full Changelog: open-cli-tools/concurrently@v8.2.1...v8.2.2

Commits

Updates eslint from 8.51.0 to 8.52.0

Release notes

Sourced from eslint's releases.

v8.52.0

Features

  • 70648ee feat: report-unused-disable-directive to report unused eslint-enable (#17611) (Yosuke Ota)

Bug Fixes

@dependabot dependabot bot requested a review from ayushmanchhabra as a code owner October 21, 2023 06:02
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Oct 21, 2023
@ayushmanchhabra
Copy link
Contributor

@dependabot rebase

Bumps the npm group with 22 updates:

| Package | From | To |
| --- | --- | --- |
| [@angular-devkit/build-angular](https://github.com/angular/angular-cli) | `16.2.6` | `16.2.7` |
| [@angular/animations](https://github.com/angular/angular/tree/HEAD/packages/animations) | `16.2.9` | `16.2.10` |
| [@angular/cli](https://github.com/angular/angular-cli) | `16.2.6` | `16.2.7` |
| [@angular/common](https://github.com/angular/angular/tree/HEAD/packages/common) | `16.2.9` | `16.2.10` |
| [@angular/compiler](https://github.com/angular/angular/tree/HEAD/packages/compiler) | `16.2.9` | `16.2.10` |
| [@angular/compiler-cli](https://github.com/angular/angular/tree/HEAD/packages/compiler-cli) | `16.2.9` | `16.2.10` |
| [@angular/core](https://github.com/angular/angular/tree/HEAD/packages/core) | `16.2.9` | `16.2.10` |
| [@angular/forms](https://github.com/angular/angular/tree/HEAD/packages/forms) | `16.2.9` | `16.2.10` |
| [@angular/language-service](https://github.com/angular/angular/tree/HEAD/packages/language-service) | `16.2.9` | `16.2.10` |
| [@angular/platform-browser](https://github.com/angular/angular/tree/HEAD/packages/platform-browser) | `16.2.9` | `16.2.10` |
| [@angular/platform-browser-dynamic](https://github.com/angular/angular/tree/HEAD/packages/platform-browser-dynamic) | `16.2.9` | `16.2.10` |
| [@angular/router](https://github.com/angular/angular/tree/HEAD/packages/router) | `16.2.9` | `16.2.10` |
| [@types/chrome](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/chrome) | `0.0.246` | `0.0.248` |
| [@types/jasmine](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jasmine) | `5.1.0` | `5.1.1` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `20.8.6` | `20.8.7` |
| [@types/nw.js](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/nw.js) | `0.13.18` | `0.13.19` |
| [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) | `6.7.5` | `6.8.0` |
| [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) | `6.7.5` | `6.8.0` |
| [concurrently](https://github.com/open-cli-tools/concurrently) | `8.2.1` | `8.2.2` |
| [eslint](https://github.com/eslint/eslint) | `8.51.0` | `8.52.0` |
| [nw](https://github.com/nwjs/npm-installer) | `0.80.0` | `0.81.0` |
| [puppeteer](https://github.com/puppeteer/puppeteer) | `21.3.8` | `21.4.0` |


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

Updates `@angular/animations` from 16.2.9 to 16.2.10
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/16.2.10/packages/animations)

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

Updates `@angular/common` from 16.2.9 to 16.2.10
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/16.2.10/packages/common)

Updates `@angular/compiler` from 16.2.9 to 16.2.10
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/16.2.10/packages/compiler)

Updates `@angular/compiler-cli` from 16.2.9 to 16.2.10
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/16.2.10/packages/compiler-cli)

Updates `@angular/core` from 16.2.9 to 16.2.10
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/16.2.10/packages/core)

Updates `@angular/forms` from 16.2.9 to 16.2.10
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/16.2.10/packages/forms)

Updates `@angular/language-service` from 16.2.9 to 16.2.10
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/16.2.10/packages/language-service)

Updates `@angular/platform-browser` from 16.2.9 to 16.2.10
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/16.2.10/packages/platform-browser)

Updates `@angular/platform-browser-dynamic` from 16.2.9 to 16.2.10
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/16.2.10/packages/platform-browser-dynamic)

Updates `@angular/router` from 16.2.9 to 16.2.10
- [Release notes](https://github.com/angular/angular/releases)
- [Changelog](https://github.com/angular/angular/blob/main/CHANGELOG.md)
- [Commits](https://github.com/angular/angular/commits/16.2.10/packages/router)

Updates `@types/chrome` from 0.0.246 to 0.0.248
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/chrome)

Updates `@types/jasmine` from 5.1.0 to 5.1.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jasmine)

Updates `@types/node` from 20.8.6 to 20.8.7
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@types/nw.js` from 0.13.18 to 0.13.19
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/nw.js)

Updates `@typescript-eslint/eslint-plugin` from 6.7.5 to 6.8.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.8.0/packages/eslint-plugin)

Updates `@typescript-eslint/parser` from 6.7.5 to 6.8.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/parser/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v6.8.0/packages/parser)

Updates `concurrently` from 8.2.1 to 8.2.2
- [Release notes](https://github.com/open-cli-tools/concurrently/releases)
- [Commits](open-cli-tools/concurrently@v8.2.1...v8.2.2)

Updates `eslint` from 8.51.0 to 8.52.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.51.0...v8.52.0)

Updates `nw` from 0.80.0 to 0.81.0
- [Commits](https://github.com/nwjs/npm-installer/commits)

Updates `puppeteer` from 21.3.8 to 21.4.0
- [Release notes](https://github.com/puppeteer/puppeteer/releases)
- [Changelog](https://github.com/puppeteer/puppeteer/blob/main/release-please-config.json)
- [Commits](puppeteer/puppeteer@puppeteer-v21.3.8...puppeteer-v21.4.0)

---
updated-dependencies:
- dependency-name: "@angular-devkit/build-angular"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@angular/animations"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@angular/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@angular/common"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@angular/compiler"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@angular/compiler-cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@angular/core"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@angular/forms"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@angular/language-service"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@angular/platform-browser"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@angular/platform-browser-dynamic"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@angular/router"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@types/chrome"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@types/jasmine"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@types/nw.js"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: "@typescript-eslint/eslint-plugin"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: "@typescript-eslint/parser"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: concurrently
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: npm
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: nw
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
- dependency-name: puppeteer
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/npm-e94416a448 branch from c935e57 to c654a19 Compare October 21, 2023 07:41
@ayushmanchhabra
Copy link
Contributor

@dependabot merge

@dependabot dependabot bot merged commit 41e7b71 into main Oct 21, 2023
1 check passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/npm-e94416a448 branch October 21, 2023 07:46
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 javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant