Skip to content

fix: update package dependencies#153

Merged
renovate[bot] merged 1 commit intomainfrom
renovate/package-dependencies
Feb 2, 2026
Merged

fix: update package dependencies#153
renovate[bot] merged 1 commit intomainfrom
renovate/package-dependencies

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 1, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@commitlint/cli (source) ^20.1.0^20.3.1 age adoption passing confidence
@commitlint/config-conventional (source) ^20.0.0^20.3.1 age adoption passing confidence
@eslint-react/eslint-plugin (source) ^2.3.12^2.8.1 age adoption passing confidence
@eslint/compat (source) ^2.0.0^2.0.1 age adoption passing confidence
@stylistic/eslint-plugin (source) ^5.6.1^5.7.1 age adoption passing confidence
@vitest/eslint-plugin ^1.5.1^1.6.6 age adoption passing confidence
eslint (source) ^9.39.1^9.39.2 age adoption passing confidence
eslint-plugin-jsdoc ^61.4.1^61.7.1 age adoption passing confidence
eslint-plugin-n ^17.23.1^17.23.2 age adoption passing confidence
eslint-plugin-prettier ^5.5.4^5.5.5 age adoption passing confidence
eslint-plugin-sonarjs (source) ^3.0.5^3.0.6 age adoption passing confidence
prettier (source) ^3.7.4^3.8.1 age adoption passing confidence
prettier-plugin-packagejson ^2.5.20^2.5.22 age adoption passing confidence
turbo (source) ^2.6.2^2.8.0 age adoption passing confidence
typescript-eslint (source) ^8.48.1^8.54.0 age adoption passing confidence

Release Notes

conventional-changelog/commitlint (@​commitlint/cli)

v20.3.1

Compare Source

Note: Version bump only for package @​commitlint/cli

v20.3.0

Compare Source

Note: Version bump only for package @​commitlint/cli

v20.2.0

Compare Source

Note: Version bump only for package @​commitlint/cli

conventional-changelog/commitlint (@​commitlint/config-conventional)

v20.3.1

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

v20.3.0

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

v20.2.0

Compare Source

Note: Version bump only for package @​commitlint/config-conventional

Rel1cx/eslint-react (@​eslint-react/eslint-plugin)

v2.8.1

Compare Source

✨ New
  • Function component detection now supports identifying components that don't return a ReactNode but have a 'use memo' or 'use no memo' directive by @​Rel1cx in #​1440
    The function in below example will be detected as a function component in relevant rules:
    function App() {
      "use memo";
    }
    
    function App() {
      "use no memo";
    }
🐞 Fixes

Full Changelog: Rel1cx/eslint-react@v2.8.0...v2.8.1

v2.8.0

Compare Source

✨ New
  • Function component detection now supports identifying components that don't return a ReactNode but call React Hooks by @​Rel1cx in #​1438
    The function in below example will be detected as a function component in relevant rules:
    function App() {
      useEffect(() => {}, []);
    }
🐞 Fixes

Full Changelog: Rel1cx/eslint-react@v2.7.4...v2.8.0

v2.7.4

Compare Source

✨ New
🐞 Fixes
🪄 Improvements

Full Changelog: Rel1cx/eslint-react@v2.7.2...v2.7.3

v2.7.2

Compare Source

🪄 Improvements
  • Reimplement the prefer-destructuring-assignment rule for better performance by @​Rel1cx in #​1423

Full Changelog: Rel1cx/eslint-react@v2.7.1...v2.7.2

v2.7.1

Compare Source

🐞 Fixes
  • Fix misdetected functions inside array expressions as function components; closes #​1416 by @​Rel1cx in #​1418
  • Remove unnecessary no-unnecessary-use-ref rule from strict configurations and update documentation by @​Rel1cx in #​1419
📝 Changes you should be aware of

The no-unnecessary-use-ref rule has been removed from the strict presets, as it was causing false positives in certain scenarios. You can still enable it manually if needed, but please be aware of its current limitations.

Full Changelog: Rel1cx/eslint-react@v2.7.0...v2.7.1

v2.7.0

Compare Source

✨ New
🐞 Fixes

Full Changelog: Rel1cx/eslint-react@v2.6.4...v2.7.0

v2.6.4

Compare Source

✨ New
  • feat: add a disable-experimental preset to quickly opt out of experimental rules by @​Rel1cx in #​1403

Full Changelog: Rel1cx/eslint-react@v2.6.2...v2.6.4

v2.6.2

🐞 Fixes

v2.6.0

✨ New
📝 Changes you should be aware of

The new no-unnecessary-use-ref rule is included in the strict presets.

This rule reports unnecessary uses of useRef when the ref is only used within a single effect which the value can be co-located inside the effect itself. Thanks to @​SukkaW for purposing it!

Full Changelog: Rel1cx/eslint-react@v2.5.7...v2.6.0

v2.5.7

Compare Source

🪄 Improvements
🐞 Fixes
📝 Changes you should be aware of

The no-implicit-key rule has been re-added to the recommended presets.

Full Changelog: Rel1cx/eslint-react@v2.5.5...v2.5.7

v2.5.5

🐞 Fixes
📝 Changes you should be aware of

The following rules have been removed from the strict and recommended presets:

  • no-unnecessary-key
  • no-duplicate-key
  • no-implicit-key

Full Changelog: Rel1cx/eslint-react@v2.5.3...v2.5.5

v2.5.3

Compare Source

🐞 Fixes
  • Enhance context and ref naming rules with additional cases covered by @​Rel1cx in #​1378
  • Update naming-convention/context-name rule to include React version checks; closes #​1382 by @​Rel1cx in #​1384
  • Update naming-convention/ref-name to allow "ref" as a ref name by @​ocavue in #​1380
  • Fix jsx-key-before-spread: should only be enabled in JSX automatic runtime; update related docs and tests; closes #​1381 by @​Rel1cx in #​1383

v2.5.1

Compare Source

🐞 Fixes

Full Changelog: Rel1cx/eslint-react@v2.5.0...v2.5.1

v2.5.0

Compare Source

✨ New
🪄 Improvements

v2.4.0

Compare Source

✨ New
  • Add enforceAssignment and enforceSetterName options to naming-convention/use-state by @​Rel1cx in #​1346
🐞 Fixes
🪄 Improvements
  • Update typescript-eslint to 8.50.1 across all packages

Full Changelog: Rel1cx/eslint-react@v2.3.13...v2.4.0

v2.3.13

Compare Source

🐞 Fixes
  • Clean up the code structure of the AST utils and fix an issue where isNodeEqual did not handle as expressions correctly, closes #​1340 by @​Rel1cx in #​1341
🪄 Improvements
  • Update next and react to latest versions across all packages

Full Changelog: Rel1cx/eslint-react@v2.3.12...v2.3.13

eslint/rewrite (@​eslint/compat)

v2.0.1

Compare Source

Dependencies
  • The following workspace dependencies were updated
eslint-stylistic/eslint-stylistic (@​stylistic/eslint-plugin)

v5.7.1

Compare Source

Bug Fixes
Documentation
Chores

v5.7.0

Compare Source

Features
Bug Fixes
  • list-style: replace text range with delimiter directly (#​1062) (c2ac348)
  • object-curly-spacing: allow space before comment in multi-line objects (#​1076) (d73c03e)
Documentation
Build Related
Chores
vitest-dev/eslint-plugin-vitest (@​vitest/eslint-plugin)

v1.6.6

Compare Source

   🚀 Features
    View changes on GitHub

v1.6.5

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

What's Changed

New Contributors

Full Changelog: vitest-dev/eslint-plugin-vitest@v1.6.4...v1.6.5

v1.6.4

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

What's Changed

  • docs(no-conditional-expect): add asymmetric matchers to example usage by @​wjhsf in #​847
  • fix(unbound-method): ignore functions passed to vi.mocked by @​G-Rath in #​849
  • feat: create new prefer-mock-return-shorthand rule by @​G-Rath in #​848

New Contributors

Full Changelog: vitest-dev/eslint-plugin-vitest@v1.6.3...v1.6.4

v1.6.3

Compare Source

   🚀 Features
    View changes on GitHub

What's Changed

New Contributors

Full Changelog: vitest-dev/eslint-plugin-vitest@v1.6.1...v1.6.2

v1.6.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

What's Changed

Full Changelog: vitest-dev/eslint-plugin-vitest@v1.5.4...v1.6.0

v1.5.4

Compare Source

No significant changes

    View changes on GitHub

v1.5.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
eslint/eslint (eslint)

v9.39.2

Compare Source

gajus/eslint-plugin-jsdoc (eslint-plugin-jsdoc)

v61.7.1

Compare Source

Bug Fixes

v61.5.0

Compare Source

Features
  • check-tag-names, require-template, check-template-names: make typeParam a non-preferred alias for template (3cd7cbd)
eslint-community/eslint-plugin-n (eslint-plugin-n)

v17.23.2

Compare Source

🩹 Fixes
  • avoid any type for no-top-level-await listener node (build issue) (#​498) (f071703)
  • file-extension-in-import: handle directory index imports (#​499) (754a1a6)
  • file-extension-in-import: handle files with dots in basename (#​506) (600f3f2)
  • no-sync: resolve full typed names for ignores (#​501) (047301a)
📚 Documentation
🧹 Chores
  • no-missing-import: align fixture message with latest resolver output (#​500) (a3719d2)
prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.5.5

Compare Source

Patch Changes
SonarSource/SonarJS (eslint-plugin-sonarjs)

v3.0.6

Compare Source

prettier/prettier (prettier)

v3.8.1

Compare Source

v3.8.0

Compare Source

diff

🔗 Release note

matzkoh/prettier-plugin-packagejson (prettier-plugin-packagejson)

v2.5.22

Compare Source

Bug Fixes

v2.5.21

Compare Source

Bug Fixes
  • add type declaration file and document packageSortOrder option (14f93e6), closes #​188
vercel/turborepo (turbo)

v2.8.0: Turborepo v2.8.0

Compare Source

What's Changed

Docs
@​turbo/repository
Changelog

New Contributors

Full Changelog: vercel/turborepo@v2.7.6...v2.8.0

v2.7.6

Compare Source

v2.7.5: Turborepo v2.7.5

Compare Source

What's Changed

Docs
  • docs(fix): Add loading state afte

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, on day 1 of the month ( * 0-3 1 * * ) in timezone Europe/Paris, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Feb 1, 2026
@changeset-bot
Copy link

changeset-bot bot commented Feb 1, 2026

🦋 Changeset detected

Latest commit: 9db92c2

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 2 packages
Name Type
@adbayb/stack Minor
@adbayb/create Minor

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@github-actions github-actions bot force-pushed the renovate/package-dependencies branch from 2940584 to ffa92d4 Compare February 1, 2026 00:54
@renovate renovate bot force-pushed the renovate/package-dependencies branch from ffa92d4 to feecfeb Compare February 1, 2026 14:49
@github-actions github-actions bot force-pushed the renovate/package-dependencies branch from feecfeb to 082950d Compare February 1, 2026 14:49
@renovate renovate bot force-pushed the renovate/package-dependencies branch from 082950d to ab2c705 Compare February 1, 2026 14:50
| datasource | package                         | from    | to      |
| ---------- | ------------------------------- | ------- | ------- |
| npm        | @commitlint/cli                 | 20.1.0  | 20.3.1  |
| npm        | @commitlint/config-conventional | 20.0.0  | 20.3.1  |
| npm        | @eslint-react/eslint-plugin     | 2.3.12  | 2.8.1   |
| npm        | @eslint/compat                  | 2.0.0   | 2.0.1   |
| npm        | @stylistic/eslint-plugin        | 5.6.1   | 5.7.1   |
| npm        | @vitest/eslint-plugin           | 1.5.1   | 1.6.6   |
| npm        | eslint                          | 9.39.1  | 9.39.2  |
| npm        | eslint-plugin-jsdoc             | 61.4.2  | 61.7.1  |
| npm        | eslint-plugin-n                 | 17.23.1 | 17.23.2 |
| npm        | eslint-plugin-prettier          | 5.5.4   | 5.5.5   |
| npm        | eslint-plugin-sonarjs           | 3.0.5   | 3.0.6   |
| npm        | prettier                        | 3.7.4   | 3.8.1   |
| npm        | prettier-plugin-packagejson     | 2.5.20  | 2.5.22  |
| npm        | turbo                           | 2.6.3   | 2.8.0   |
| npm        | typescript-eslint               | 8.48.1  | 8.54.0  |
@github-actions github-actions bot force-pushed the renovate/package-dependencies branch from ab2c705 to 9db92c2 Compare February 1, 2026 14:50
@renovate renovate bot merged commit 1af675f into main Feb 2, 2026
2 checks passed
@renovate renovate bot deleted the renovate/package-dependencies branch February 2, 2026 09:02
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