Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 13, 2025

Bumps the lint group with 6 updates:

Package From To
eslint 8.57.1 9.37.0
eslint-plugin-cypress 3.6.0 5.2.0
eslint-plugin-react-hooks 4.6.2 7.0.0
eslint-plugin-testing-library 6.5.0 7.13.2
stylelint 16.22.0 16.25.0
stylelint-config-recommended-scss 14.1.0 16.0.2

Updates eslint from 8.57.1 to 9.37.0

Release notes

Sourced from eslint's releases.

v9.37.0

Features

  • 39f7fb4 feat: preserve-caught-error should recognize all static "cause" keys (#20163) (Pixel998)
  • f81eabc feat: support TS syntax in no-restricted-imports (#19562) (Nitin Kumar)

Bug Fixes

  • a129cce fix: correct no-loss-of-precision false positives for leading zeros (#20164) (Francesco Trotta)
  • 09e04fc fix: add missing AST token types (#20172) (Pixel998)
  • 861c6da fix: correct ESLint typings (#20122) (Pixel998)

Documentation

  • b950359 docs: fix typos across the docs (#20182) (루밀LuMir)
  • 42498a2 docs: improve ToC accessibility by hiding non-semantic character (#20181) (Percy Ma)
  • 29ea092 docs: Update README (GitHub Actions Bot)
  • 5c97a04 docs: show availableUntil in deprecated rule banner (#20170) (Pixel998)
  • 90a71bf docs: update README files to add badge and instructions (#20115) (루밀LuMir)
  • 1603ae1 docs: update references from master to main (#20153) (루밀LuMir)

Chores

  • afe8a13 chore: update @eslint/js dependency to version 9.37.0 (#20183) (Francesco Trotta)
  • abee4ca chore: package.json update for @​eslint/js release (Jenkins)
  • fc9381f chore: fix typos in comments (#20175) (overlookmotel)
  • e1574a2 chore: unpin jiti (#20173) (renovate[bot])
  • e1ac05e refactor: mark ESLint.findConfigFile() as async, add missing docs (#20157) (Pixel998)
  • 347906d chore: update eslint (#20149) (renovate[bot])
  • 0cb5897 test: remove tmp dir created for circular fixes in multithread mode test (#20146) (Milos Djermanovic)
  • bb99566 ci: pin jiti to version 2.5.1 (#20151) (Pixel998)
  • 177f669 perf: improve worker count calculation for "auto" concurrency (#20067) (Francesco Trotta)
  • 448b57b chore: Mark deprecated formatting rules as available until v11.0.0 (#20144) (Milos Djermanovic)

v9.36.0

Features

  • 47afcf6 feat: correct preserve-caught-error edge cases (#20109) (Francesco Trotta)

Bug Fixes

  • 75b74d8 fix: add missing rule option types (#20127) (ntnyq)
  • 1c0d850 fix: update eslint-all.js to use Object.freeze for rules object (#20116) (루밀LuMir)
  • 7d61b7f fix: add missing scope types to Scope.type (#20110) (Pixel998)
  • 7a670c3 fix: correct rule option typings in rules.d.ts (#20084) (Pixel998)

Documentation

  • b73ab12 docs: update examples to use defineConfig (#20131) (sethamus)
  • 31d9392 docs: fix typos (#20118) (Pixel998)
  • c7f861b docs: Update README (GitHub Actions Bot)
  • 6b0c08b docs: Update README (GitHub Actions Bot)
  • 91f97c5 docs: Update README (GitHub Actions Bot)

Chores

  • 12411e8 chore: upgrade @​eslint/js@​9.36.0 (#20139) (Milos Djermanovic)
  • 488cba6 chore: package.json update for @​eslint/js release (Jenkins)

... (truncated)

Commits

Updates eslint-plugin-cypress from 3.6.0 to 5.2.0

Release notes

Sourced from eslint-plugin-cypress's releases.

v5.2.0

5.2.0 (2025-10-01)

Features

v5.1.1

5.1.1 (2025-08-14)

Bug Fixes

  • dont throw warning on variable data selector (#272) (0508b75)

v5.1.0

5.1.0 (2025-06-03)

Features

  • publish only core files to npm package (#263) (e622a58)

v5.0.1

5.0.1 (2025-05-30)

Bug Fixes

  • stylistic: apply javascript formatting conventions (#262) (bbd33fd)

v5.0.0

5.0.0 (2025-05-29)

Breaking Changes

  • Support for non-flat legacy configurations is removed. The default configuration eslint-plugin-cypress now resolves to the flat configuration instead of to the legacy configuration

Deprecations

  • eslint-plugin-cypress/flat is deprecated and should be replaced by eslint-plugin-cypress

Other

  • remove legacy eslintrc configuration (#260) (618bd21)
  • globals dependency is updated to 16.2.0
  • semantic-release dependency is update to 24.2.5

... (truncated)

Commits

Updates eslint-plugin-react-hooks from 4.6.2 to 7.0.0

Release notes

Sourced from eslint-plugin-react-hooks's releases.

[email protected] (Oct 11, 2024)

This release only contains eslint-plugin-react-hooks. Notably, new violations and support for ESLint v9 were added.

eslint-plugin-react-hooks

  • New Violations: Component names now need to start with an uppercase letter instead of a non-lowercase letter. This means _Button or _component are no longer valid. (@​kassens) in #25162 For example, in
    function _Component() {
      useState()
      ^^^^^^^^ A React Hook "useState" is called in function "_Component" which is neither a Component nor a custom React Hook function.
    }
    _Component should be renamed to Component.
Changelog

Sourced from eslint-plugin-react-hooks's changelog.

7.0.0

This release slims down presets to just 2 configurations (recommended and recommended-latest), and all compiler rules are enabled by default.

  • Breaking: Removed recommended-latest-legacy and flat/recommended configs. The plugin now provides recommended (legacy and flat configs with all recommended rules), and recommended-latest (legacy and flat configs with all recommended rules plus new bleeding edge experimental compiler rules). (@​poteto in #34757)

6.1.1

Note: 6.1.0 accidentally allowed use of recommended without flat config, causing errors when used with ESLint v9's defineConfig() helper. This has been fixed in 6.1.1.

6.1.0

Note: Version 6.0.0 was mistakenly released and immediately deprecated and untagged on npm. This is the first official 6.x major release and includes breaking changes.

  • Breaking: Require Node.js 18 or newer. (@​michaelfaith in #32458)
  • Breaking: Flat config is now the default recommended preset. Legacy config moved to recommended-legacy. (@​michaelfaith in #32457)
  • New Violations: Disallow calling use within try/catch blocks. (@​poteto in #34040)
  • New Violations: Disallow calling useEffectEvent functions in arbitrary closures. (@​jbrown215 in #33544)
  • Handle React.useEffect in addition to useEffect in rules-of-hooks. (@​Ayc0 in #34076)
  • Added react-hooks settings config option that to accept additionalEffectHooks that are used across exhaustive-deps and rules-of-hooks rules. (@​jbrown215) in #34497

6.0.0

Accidentally released. See 6.1.0 for the actual changes.

5.2.0

5.1.0

5.0.0

  • New Violations: Component names now need to start with an uppercase letter instead of a non-lowercase letter. This means _Button or _component are no longer valid. (@​kassens) in #25162

... (truncated)

Commits

Updates eslint-plugin-testing-library from 6.5.0 to 7.13.2

Release notes

Sourced from eslint-plugin-testing-library's releases.

v7.13.2

7.13.2 (2025-10-13)

Bug Fixes

  • no-unnecessary-act: report userEvent with a different variable name (#1103) (164fa0e), closes #758

v7.13.1

7.13.1 (2025-10-09)

Bug Fixes

  • prefer-screen-queries: support aliased screen imports (#1101) (af8c8d9), closes #776

v7.13.0

7.13.0 (2025-10-08)

Features

v7.12.0

7.12.0 (2025-10-06)

Features

  • no-wait-for-multiple-assertions: avoid reporting unrelated assertions (#1097) (db8756c), closes #1084

v7.11.0

7.11.0 (2025-09-29)

Features

v7.10.0

7.10.0 (2025-09-25)

Features

  • no-wait-for-multiple-assertions: add partial fix support (#1090) (bd01e08)

v7.9.2

7.9.2 (2025-09-24)

... (truncated)

Commits
  • 164fa0e fix(no-unnecessary-act): report userEvent with a different variable name (#1103)
  • af8c8d9 fix(prefer-screen-queries): support aliased screen imports (#1101)
  • 875651e chore: remove eslint-plugin-jest-formatting (#1100)
  • c9fcf83 feat(no-wait-for-multiple-assertions): add auto-fix (#1099)
  • db8756c feat(no-wait-for-multiple-assertions): avoid reporting unrelated assertions (...
  • 95b88d5 feat(no-wait-for-multiple-assertions): improve autofix (#1091)
  • bd01e08 feat(no-wait-for-multiple-assertions): add partial fix support (#1090)
  • 54ee4ae fix(await-async-event): prevent adding async/await in forEach loops (#1075)
  • 1477f21 docs: add bonkevin as a contributor for code, and test (#1088)
  • 2d24966 fix: declare .finally(...) usages as handled in async rules (#1074)
  • Additional commits viewable in compare view

Updates stylelint from 16.22.0 to 16.25.0

Release notes

Sourced from stylelint's releases.

16.25.0

It adds 3 new features, including experimental support for bulk suppressions. It's also our first immutable release, with the package published to npm using trusted publishing and our dependencies updated on a cool down for improved supply chain security.

16.24.0

It adds 1 new rule, adds 1 option to a rule and fixes 2 bugs.

  • Added: rule-nesting-at-rule-required-list rule (#8680) (@​sw1tch3roo).
  • Added: ignoreAtRules: [] to nesting-selector-no-missing-scoping-root (#8743) (@​karlhorky).
  • Fixed: function-no-unknown false positives for contrast-color() and sibling-*() (#8729) (@​Mouvedia).
  • Fixed: selector-pseudo-class-no-unknown false positives for :heading (#8749) (@​Mouvedia).

16.23.1

It fixes 7 bugs.

  • Fixed: no-invalid-position-declaration false positives for embedded styles (#8701) (@​sw1tch3roo).
  • Fixed: property-no-deprecated erroneously autofixing clip (#8699) (@​immitsu).
  • Fixed: property-no-deprecated false positives for -webkit-box-orient: vertical; (#8699) (@​immitsu).
  • Fixed: selector-pseudo-*-no-unknown false positives for some meter pseudo classes/elements (#8708) (@​Mouvedia).
  • Fixed: selector-pseudo-class-no-unknown false positives for :unchecked (#8705) (@​Mouvedia).
  • Fixed: selector-pseudo-element-no-unknown false positives for ::search-text (#8707) (@​Mouvedia).
  • Fixed: selector-type-no-unknown false positives for selectedcontent (#8716) (@​Mouvedia).

16.23.0

It adds 5 new rules, 1 option to a rule and fixes 3 bugs. We've turned on the new rules in our standard config.

Changelog

Sourced from stylelint's changelog.

16.25.0 - 2025-10-03

It adds 3 new features, including experimental support for bulk suppressions. It's also our first immutable release, with the package published to npm using trusted publishing and our dependencies updated on a cool down for improved supply chain security.

16.24.0 - 2025-09-07

It adds 1 new rule, adds 1 option to a rule and fixes 2 bugs.

  • Added: rule-nesting-at-rule-required-list rule (#8680) (@​sw1tch3roo).
  • Added: ignoreAtRules: [] to nesting-selector-no-missing-scoping-root (#8743) (@​karlhorky).
  • Fixed: function-no-unknown false positives for contrast-color() and sibling-*() (#8729) (@​Mouvedia).
  • Fixed: selector-pseudo-class-no-unknown false positives for :heading (#8749) (@​Mouvedia).

16.23.1 - 2025-08-07

It fixes 7 bugs.

  • Fixed: no-invalid-position-declaration false positives for embedded styles (#8701) (@​sw1tch3roo).
  • Fixed: property-no-deprecated erroneously autofixing clip (#8699) (@​immitsu).
  • Fixed: property-no-deprecated false positives for -webkit-box-orient: vertical; (#8699) (@​immitsu).
  • Fixed: selector-pseudo-*-no-unknown false positives for some meter pseudo classes/elements (#8708) (@​Mouvedia).
  • Fixed: selector-pseudo-class-no-unknown false positives for :unchecked (#8705) (@​Mouvedia).
  • Fixed: selector-pseudo-element-no-unknown false positives for ::search-text (#8707) (@​Mouvedia).
  • Fixed: selector-type-no-unknown false positives for selectedcontent (#8716) (@​Mouvedia).

16.23.0 - 2025-07-29

It adds 5 new rules, 1 option to a rule and fixes 3 bugs. We've turned on the new rules in our standard config.

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for stylelint since your current version.


Updates stylelint-config-recommended-scss from 14.1.0 to 16.0.2

Release notes

Sourced from stylelint-config-recommended-scss's releases.

16.0.2

  • Removed: stylelint less than 16.24.0 from peer dependencies. Fixes incorrect minimum peer dependency version.

16.0.1

  • Fixed: false positive for nesting-selector-no-missing-scoping-root.

16.0.0

15.0.1

  • Fixed: change minimum supported Node.js version to 20.

15.0.0

  • Changed: updated to [email protected].
  • Changed: updated to [email protected].
  • Removed: stylelint less than 16.16.0 from peer dependencies.
  • Removed: Node.js less than 22 support.
Changelog

Sourced from stylelint-config-recommended-scss's changelog.

16.0.2

  • Removed: stylelint less than 16.24.0 from peer dependencies. Fixes incorrect minimum peer dependency version.

16.0.1

  • Fixed: false positive for nesting-selector-no-missing-scoping-root.

16.0.0

15.0.1

  • Fixed: change minimum supported Node.js version to 20.

15.0.0

  • Changed: updated to [email protected].
  • Changed: updated to [email protected].
  • Removed: stylelint less than 16.16.0 from peer dependencies.
  • Removed: Node.js less than 22 support.
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 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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file major Major dependency update labels Oct 13, 2025
@jira-linking
Copy link

jira-linking bot commented Oct 13, 2025

Commits missing Jira IDs:
1514321

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/lint-cdae47c898 branch from 7e01c31 to 1514321 Compare October 20, 2025 17:16
@dependabot dependabot bot requested a review from a team as a code owner October 20, 2025 17:16
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/lint-cdae47c898 branch from 1514321 to e483a09 Compare October 27, 2025 17:22
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/lint-cdae47c898 branch 2 times, most recently from 46c6e3c to 5589d28 Compare November 4, 2025 12:22
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/lint-cdae47c898 branch 2 times, most recently from ecd3376 to e4fcfe8 Compare November 17, 2025 17:02
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/lint-cdae47c898 branch from e4fcfe8 to bf3de0a Compare November 24, 2025 17:23
Bumps the lint group with 6 updates:

| Package | From | To |
| --- | --- | --- |
| [eslint](https://github.com/eslint/eslint) | `8.57.1` | `9.37.0` |
| [eslint-plugin-cypress](https://github.com/cypress-io/eslint-plugin-cypress) | `3.6.0` | `5.2.0` |
| [eslint-plugin-react-hooks](https://github.com/facebook/react/tree/HEAD/packages/eslint-plugin-react-hooks) | `4.6.2` | `7.0.0` |
| [eslint-plugin-testing-library](https://github.com/testing-library/eslint-plugin-testing-library) | `6.5.0` | `7.13.2` |
| [stylelint](https://github.com/stylelint/stylelint) | `16.22.0` | `16.25.0` |
| [stylelint-config-recommended-scss](https://github.com/stylelint-scss/stylelint-config-recommended-scss) | `14.1.0` | `16.0.2` |


Updates `eslint` from 8.57.1 to 9.37.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Commits](eslint/eslint@v8.57.1...v9.37.0)

Updates `eslint-plugin-cypress` from 3.6.0 to 5.2.0
- [Release notes](https://github.com/cypress-io/eslint-plugin-cypress/releases)
- [Commits](cypress-io/eslint-plugin-cypress@v3.6.0...v5.2.0)

Updates `eslint-plugin-react-hooks` from 4.6.2 to 7.0.0
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/packages/eslint-plugin-react-hooks/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/HEAD/packages/eslint-plugin-react-hooks)

Updates `eslint-plugin-testing-library` from 6.5.0 to 7.13.2
- [Release notes](https://github.com/testing-library/eslint-plugin-testing-library/releases)
- [Changelog](https://github.com/testing-library/eslint-plugin-testing-library/blob/main/.releaserc.json)
- [Commits](testing-library/eslint-plugin-testing-library@v6.5.0...v7.13.2)

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

Updates `stylelint-config-recommended-scss` from 14.1.0 to 16.0.2
- [Release notes](https://github.com/stylelint-scss/stylelint-config-recommended-scss/releases)
- [Changelog](https://github.com/stylelint-scss/stylelint-config-recommended-scss/blob/master/CHANGELOG.md)
- [Commits](stylelint-scss/stylelint-config-recommended-scss@v14.1.0...v16.0.2)

---
updated-dependencies:
- dependency-name: eslint
  dependency-version: 9.37.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: lint
- dependency-name: eslint-plugin-cypress
  dependency-version: 5.2.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: lint
- dependency-name: eslint-plugin-react-hooks
  dependency-version: 7.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: lint
- dependency-name: eslint-plugin-testing-library
  dependency-version: 7.13.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: lint
- dependency-name: stylelint
  dependency-version: 16.25.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: lint
- dependency-name: stylelint-config-recommended-scss
  dependency-version: 16.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: lint
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/lint-cdae47c898 branch from bf3de0a to b88af75 Compare December 1, 2025 20:22
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 major Major dependency update

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants