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-dev): bump the lint-tools group across 1 directory with 6 updates #1032

Merged
merged 1 commit into from
Jan 3, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 1, 2025

Bumps the lint-tools group with 6 updates in the / directory:

Package From To
eslint-plugin-n 17.12.0 17.15.1
husky 9.1.6 9.1.7
lint-staged 15.2.10 15.3.0
npm-run-all2 7.0.1 7.0.2
prettier 3.3.3 3.4.2
typescript-eslint 8.12.2 8.19.0

Updates eslint-plugin-n from 17.12.0 to 17.15.1

Release notes

Sourced from eslint-plugin-n's releases.

v17.15.1

17.15.1 (2024-12-20)

🩹 Fixes

  • Promise.withResolvers is supported since node 22.11 (#398) (c5bcb3a)

v17.15.0

17.15.0 (2024-12-10)

🌟 Features

  • no-unsupported: support node 22.12.0 (#393) (af4f774)
  • resolve: allow overriding enhanced-resolve's options (#384) (1466bec)

🩹 Fixes

  • no-unsupported: Correctly handle recursive objects on a per module basis (#396) (db384d1)

v17.14.0

17.14.0 (2024-11-21)

🌟 Features

v17.13.2

17.13.2 (2024-11-15)

🩹 Fixes

  • no-missing-require: handle multiple resolvePaths (#383) (df6ad2a)

v17.13.1

17.13.1 (2024-11-07)

🩹 Fixes

  • exported / referenced plugin same instance (#380) (3c45b67)

v17.13.0

17.13.0 (2024-11-05)

... (truncated)

Changelog

Sourced from eslint-plugin-n's changelog.

17.15.1 (2024-12-20)

🩹 Fixes

  • Promise.withResolvers is supported since node 22.11 (#398) (c5bcb3a)

17.15.0 (2024-12-10)

🌟 Features

  • no-unsupported: support node 22.12.0 (#393) (af4f774)
  • resolve: allow overriding enhanced-resolve's options (#384) (1466bec)

🩹 Fixes

  • no-unsupported: Correctly handle recursive objects on a per module basis (#396) (db384d1)

17.14.0 (2024-11-21)

🌟 Features

17.13.2 (2024-11-15)

🩹 Fixes

  • no-missing-require: handle multiple resolvePaths (#383) (df6ad2a)

17.13.1 (2024-11-07)

🩹 Fixes

  • exported / referenced plugin same instance (#380) (3c45b67)

17.13.0 (2024-11-05)

🌟 Features

  • no-unsupported: support Node 20.18.0 (#374) (d39d99a)

... (truncated)

Commits
  • 6aee9f2 chore(master): release 17.15.1 (#399)
  • c5bcb3a fix: Promise.withResolvers is supported since node 22.11 (#398)
  • 308c80c chore(master): release 17.15.0 (#394)
  • db384d1 fix(no-unsupported): Correctly handle recursive objects on a per module basis...
  • 1466bec feat(resolve): allow overriding enhanced-resolve's options (#384)
  • af4f774 feat(no-unsupported): support node 22.12.0 (#393)
  • ccf5f9e chore(master): release 17.14.0 (#387)
  • a52c968 feat(no-unsupported): support Node 23.2.0 & 23.3.0 (#390)
  • c8fbf00 feat(no-sync): Add ignores option (#386)
  • 2f60954 chore(master): release 17.13.2 (#385)
  • Additional commits viewable in compare view

Updates husky from 9.1.6 to 9.1.7

Release notes

Sourced from husky's releases.

v9.1.7

What's Changed

New Contributors

Full Changelog: typicode/husky@v9.1.6...v9.1.7

Commits

Updates lint-staged from 15.2.10 to 15.3.0

Release notes

Sourced from lint-staged's releases.

v15.3.0

Minor Changes

  • #1495 e69da9e Thanks @​iiroj! - Added more info to the debug logs so that "environment" info doesn't need to be added separately to GitHub issues.

  • #1493 fa0fe98 Thanks @​iiroj! - Added more help messages around the automatic git stash that lint-staged creates as a backup (by default). The console output also displays the short git hash of the stash so that it's easier to recover lost files in case some fatal errors are encountered, or the process is killed before completing.

    For example:

    % npx lint-staged
    ✔ Backed up original state in git stash (20addf8)
    ✔ Running tasks for staged files...
    ✔ Applying modifications from tasks...
    ✔ Cleaning up temporary files...
    

    where the backup can be seen with git show 20addf8, or git stash list:

    % git stash list
    stash@{0}: lint-staged automatic backup (20addf8)
    

v15.2.11

Patch Changes

  • #1484 bcfe309 Thanks @​wormsik! - Escape paths containing spaces when using the "shell" option.

  • #1487 7dd8caa Thanks @​iiroj! - Do not treat submodule root paths as "staged files". This caused lint-staged to fail to a Git error when only updating the revision of a submodule.

Changelog

Sourced from lint-staged's changelog.

15.3.0

Minor Changes

  • #1495 e69da9e Thanks @​iiroj! - Added more info to the debug logs so that "environment" info doesn't need to be added separately to GitHub issues.

  • #1493 fa0fe98 Thanks @​iiroj! - Added more help messages around the automatic git stash that lint-staged creates as a backup (by default). The console output also displays the short git hash of the stash so that it's easier to recover lost files in case some fatal errors are encountered, or the process is killed before completing.

    For example:

    % npx lint-staged
    ✔ Backed up original state in git stash (20addf8)
    ✔ Running tasks for staged files...
    ✔ Applying modifications from tasks...
    ✔ Cleaning up temporary files...
    

    where the backup can be seen with git show 20addf8, or git stash list:

    % git stash list
    stash@{0}: lint-staged automatic backup (20addf8)
    

15.2.11

Patch Changes

  • #1484 bcfe309 Thanks @​wormsik! - Escape paths containing spaces when using the "shell" option.

  • #1487 7dd8caa Thanks @​iiroj! - Do not treat submodule root paths as "staged files". This caused lint-staged to fail to a Git error when only updating the revision of a submodule.

Commits
  • 703002a chore(changeset): release
  • 4cee7d8 build(dependencies): update dependencies
  • ef9b02d Merge pull request #1495 from lint-staged/debug-info
  • e69da9e feat: add more info to debug logs, remove "environment" requirement from issu...
  • 1b36f55 docs: combine changesets
  • 6c9ab40 Merge pull request #1493 from lint-staged/help-messages
  • 22fe89d feat: add unique hash to backup stash message
  • c52cc92 docs: add a caution message about git stash
  • fa0fe98 feat: update first task message based on backup status
  • 7bd0447 feat: display "git stash list" message when restoring original state is skipped
  • Additional commits viewable in compare view

Updates npm-run-all2 from 7.0.1 to 7.0.2

Release notes

Sourced from npm-run-all2's releases.

v7.0.2

Merged

Commits

  • Raise cross-spawn version floor to ^7.0.6 45a9e19
  • Merge pull request #163 from bcomnes/dependabot/npm_and_yarn/mocha-11.0.1 285967a
  • Upgrade: Bump mocha from 10.8.2 to 11.0.1 5d1aea5
Changelog

Sourced from npm-run-all2's changelog.

v7.0.2

Merged

Commits

  • Raise cross-spawn version floor to ^7.0.6 45a9e19
  • Merge pull request #163 from bcomnes/dependabot/npm_and_yarn/mocha-11.0.1 285967a
  • Upgrade: Bump mocha from 10.8.2 to 11.0.1 5d1aea5
Commits
  • 935794c 7.0.2
  • 45a9e19 Raise cross-spawn version floor to ^7.0.6
  • ea8f831 Upgrade: Bump neostandard from 0.11.9 to 0.12.0 (#164)
  • 285967a Merge pull request #163 from bcomnes/dependabot/npm_and_yarn/mocha-11.0.1
  • 5d1aea5 Upgrade: Bump mocha from 10.8.2 to 11.0.1
  • 2710f7e Upgrade: Bump codecov/codecov-action from 4 to 5 (#161)
  • See full diff in compare view

Updates prettier from 3.3.3 to 3.4.2

Release notes

Sourced from prettier's releases.

3.4.2

🔗 Changelog

3.4.1

🔗 Changelog

3.4.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.4.2

diff

Treat U+30A0 & U+30FB in Katakana Block as CJK (#16796 by @​tats-u)

Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly used in Japanese to represent the delimitation of first and last names of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means “C language & C++ & Go & Rust” in Japanese.

<!-- Input (--prose-wrap=never) -->
C言
語
・
C++
・
Go
・
Rust
<!-- Prettier 3.4.1 -->
C言語・ C++ ・ Go ・ Rust
<!-- Prettier 3.4.2 -->
C言語・C++・Go・Rust

U+30A0 can be used as the replacement of the - in non-Japanese names (e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as “サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).

Fix comments print on class methods with decorators (#16891 by @​fisker)

// Input
class A {
  @decorator
  /** 
   * The method description
   *
  */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}
// Prettier 3.4.1
class A {
@​decorator
async /**
</tr></table>

... (truncated)

Commits

Updates typescript-eslint from 8.12.2 to 8.19.0

Release notes

Sourced from typescript-eslint's releases.

v8.19.0

8.19.0 (2024-12-30)

🚀 Features

  • eslint-plugin: [strict-boolean-expressions] check array predicate functions' return statements (#10106)

🩹 Fixes

  • eslint-plugin: add getConstraintInfo to handle generic constraints better (#10496)
  • eslint-plugin: [array-type] autofix with conditional types needs parentheses (#10522)
  • eslint-plugin: [consistent-indexed-object-style] don't report on indirect circular references (#10537)
  • eslint-plugin: [member-ordering] ignore method overloading (#10536)

❤️ Thank You

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

v8.18.2

8.18.2 (2024-12-23)

🩹 Fixes

  • eslint-plugin: [no-deprecated] not reporting usages of deprecated declared constants as object value (#10498)
  • eslint-plugin: [prefer-reduce-type-parameter] don't report cases in which the fix results in a type error (#10494)
  • eslint-plugin: [no-unnecessary-condition] don't flag values of an unconstrained or valid type parameter (#10473)
  • eslint-plugin: [consistent-indexed-object-style] use a suggestion over an auto-fix if can't reliably determine that produced index signature is valid (#10490)
  • eslint-plugin: [no-unsafe-type-assertion] fix for unsafe assertion to a constrained type parameter (#10461)
  • eslint-plugin: [no-unnecessary-type-arguments] handle type/value context (#10503)
  • eslint-plugin: [consistent-type-assertions] allow default assertionStyle option (#10512)
  • eslint-plugin: [no-unnecessary-condition] handle noUncheckedIndexedAccess true (#10514)
  • typescript-eslint: export types so that declarations can be named for dts files (#10513)

❤️ Thank You

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

v8.18.1

... (truncated)

Changelog

Sourced from typescript-eslint's changelog.

8.19.0 (2024-12-30)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

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

8.18.2 (2024-12-23)

🩹 Fixes

  • typescript-eslint: export types so that declarations can be named for dts files (#10513)

❤️ Thank You

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

8.18.1 (2024-12-16)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

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

8.18.0 (2024-12-09)

🩹 Fixes

  • typescript peer dependency (#10373)

❤️ Thank You

  • rtritto

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

8.17.0 (2024-12-02)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

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

8.16.0 (2024-11-25)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

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

8.15.0 (2024-11-18)

... (truncated)

Commits
  • e19f30f chore(release): publish 8.19.0
  • 157b781 chore(release): publish 8.18.2
  • d24a828 fix(typescript-eslint): export types so that declarations can be named for dt...
  • b2ce158 chore(release): publish 8.18.1
  • c60dbab chore(release): publish 8.18.0
  • 4cb2cf8 fix: typescript peer dependency (#10373)
  • 2c8a75e chore(release): publish 8.17.0
  • f74a8fa chore(release): publish 8.16.0
  • 2444351 chore(release): publish 8.15.0
  • b351703 feat(typescript-eslint): allow infinitely deep array nesting in config functi...
  • Additional commits viewable in compare view

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

…updates

Bumps the lint-tools group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [eslint-plugin-n](https://github.com/eslint-community/eslint-plugin-n) | `17.12.0` | `17.15.1` |
| [husky](https://github.com/typicode/husky) | `9.1.6` | `9.1.7` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `15.2.10` | `15.3.0` |
| [npm-run-all2](https://github.com/bcomnes/npm-run-all2) | `7.0.1` | `7.0.2` |
| [prettier](https://github.com/prettier/prettier) | `3.3.3` | `3.4.2` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.12.2` | `8.19.0` |



Updates `eslint-plugin-n` from 17.12.0 to 17.15.1
- [Release notes](https://github.com/eslint-community/eslint-plugin-n/releases)
- [Changelog](https://github.com/eslint-community/eslint-plugin-n/blob/master/CHANGELOG.md)
- [Commits](eslint-community/eslint-plugin-n@v17.12.0...v17.15.1)

Updates `husky` from 9.1.6 to 9.1.7
- [Release notes](https://github.com/typicode/husky/releases)
- [Commits](typicode/husky@v9.1.6...v9.1.7)

Updates `lint-staged` from 15.2.10 to 15.3.0
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v15.2.10...v15.3.0)

Updates `npm-run-all2` from 7.0.1 to 7.0.2
- [Release notes](https://github.com/bcomnes/npm-run-all2/releases)
- [Changelog](https://github.com/bcomnes/npm-run-all2/blob/master/CHANGELOG.md)
- [Commits](bcomnes/npm-run-all2@v7.0.1...v7.0.2)

Updates `prettier` from 3.3.3 to 3.4.2
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.3.3...3.4.2)

Updates `typescript-eslint` from 8.12.2 to 8.19.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.19.0/packages/typescript-eslint)

---
updated-dependencies:
- dependency-name: eslint-plugin-n
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: lint-tools
- dependency-name: husky
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: lint-tools
- dependency-name: lint-staged
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: lint-tools
- dependency-name: npm-run-all2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: lint-tools
- dependency-name: prettier
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: lint-tools
- dependency-name: typescript-eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: lint-tools
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependabot 🤖 Pull requests that update a dependency file label Jan 1, 2025
@dependabot dependabot bot added this to the vNext milestone Jan 1, 2025
Copy link

codecov bot commented Jan 1, 2025

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 100.00%. Comparing base (861965e) to head (896d8c8).
Report is 3 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff            @@
##              main     #1032   +/-   ##
=========================================
  Coverage   100.00%   100.00%           
=========================================
  Files            4         4           
  Lines           88        88           
  Branches        10        10           
=========================================
  Hits            88        88           

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

Copy link
Contributor

@nogic1008 nogic1008 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dependabot squash and merge

@dependabot dependabot bot merged commit 236100a into main Jan 3, 2025
17 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/lint-tools-7f87b0274f branch January 3, 2025 00:09
Copy link

github-actions bot commented Jan 3, 2025

LGTM

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependabot 🤖 Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant