Skip to content

fix: update package dependencies#155

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/package-dependencies
Open

fix: update package dependencies#155
renovate[bot] wants to merge 1 commit intomainfrom
renovate/package-dependencies

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Mar 1, 2026

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@changesets/changelog-github (source) ^0.5.2^0.6.0 age adoption passing confidence
@changesets/cli (source) ^2.29.8^2.30.0 age adoption passing confidence
@commitlint/cli (source) ^20.3.1^20.4.3 age adoption passing confidence
@commitlint/config-conventional (source) ^20.3.1^20.4.3 age adoption passing confidence
@eslint-react/eslint-plugin (source) ^2.8.1^2.13.0 age adoption passing confidence
@eslint/compat (source) ^2.0.1^2.0.3 age adoption passing confidence
@stylistic/eslint-plugin (source) ^5.7.1^5.10.0 age adoption passing confidence
@vitest/eslint-plugin ^1.6.6^1.6.9 age adoption passing confidence
eslint (source) ^9.39.2^9.39.4 age adoption passing confidence
eslint-plugin-depend ^1.4.0^1.5.0 age adoption passing confidence
eslint-plugin-mdx (source) ^3.6.2^3.7.0 age adoption passing confidence
eslint-plugin-n ^17.23.2^17.24.0 age adoption passing confidence
eslint-plugin-sonarjs (source) ^3.0.6^3.0.7 age adoption passing confidence
turbo (source) ^2.8.0^2.8.14 age adoption passing confidence
typescript-eslint (source) ^8.54.0^8.56.1 age adoption passing confidence

Release Notes

changesets/changesets (@​changesets/changelog-github)

v0.6.0

Compare Source

Minor Changes
Patch Changes
conventional-changelog/commitlint (@​commitlint/cli)

v20.4.3

Compare Source

Bug Fixes

v20.4.2

Compare Source

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

v20.4.1

Compare Source

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

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

v20.4.3

Compare Source

Bug Fixes

v20.4.2

Compare Source

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

v20.4.1

Compare Source

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

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

v2.13.0

Compare Source

✨ New
🐞 Fixes
📝 Changes you should be aware of
  1. The naming-convention/filename rule has been deprecated and will be removed in the next major version.
  2. The naming-convention/filename-extension rule has been deprecated and will be removed in the next major version.

Modern React frameworks each come with their own naming conventions that can differ or even conflict. A single predefined, framework-agnostic filename or filename extension rule no longer matches real-world usage. Please follow the official naming conventions of the specific React framework you are using.

For example, here are some references for popular frameworks:

Full Changelog: Rel1cx/eslint-react@v2.12.4...v2.13.0

v2.12.4

Compare Source

🐞 Fixes
🪄 Improvements

Full Changelog: Rel1cx/eslint-react@v2.12.2...v2.12.4

v2.12.2

Compare Source

🐞 Fixes
  • Reduce the sensitivity of component detection to prevent false positives in certain rules, closes #​1488 by @​Rel1cx in #​1489

Full Changelog: Rel1cx/eslint-react@v2.12.1...v2.12.2

v2.12.1

Compare Source

🐞 Fixes
  • Check all union constituents and allow all types under React namespace in no-implicit-key by @​Rel1cx in #​1487

Full Changelog: Rel1cx/eslint-react@v2.12.0...v2.12.1

v2.12.0

Compare Source

🪄 Improvements
📝 Changes you should be aware of

ESLint v10 is now supported and used throughout the repository. The minimum required ESLint version remains v8.57.0, but the project now supports and is tested against ESLint v10.

Full Changelog: Rel1cx/eslint-react@v2.11.2...v2.12.0

v2.11.2

Compare Source

🐞 Fixes
  • Implement a more robust check to handle cases that getFullyQualifiedName cannot handle in no-implicit-key, closes #​1476 by @​Rel1cx in #​1480
🪄 Improvements
  • Bump esbuild, node types, jsdoc plugin

Full Changelog: Rel1cx/eslint-react@v2.11.1...v2.11.2

v2.11.1

Compare Source

🐞 Fixes

Full Changelog: Rel1cx/eslint-react@v2.11.0...v2.11.1

v2.11.0

Compare Source

✨ New

Full Changelog: Rel1cx/eslint-react@v2.10.1...v2.11.0

v2.10.1

Compare Source

🐞 Fixes

Full Changelog: Rel1cx/eslint-react@v2.10.0...v2.10.1

v2.10.0

Compare Source

📝 Changes you should be aware of
  1. The no-implicit-key rule has been updated to use type checking and moved from recommended to type-checked presets.
  2. The no-unnecessary-use-ref rule has been moved to removed rules, because the rule is hard to get right.

Full Changelog: Rel1cx/eslint-react@v2.9.4...v2.10.0

v2.9.4

Compare Source

🐞 Fixes

Full Changelog: Rel1cx/eslint-react@v2.9.3...v2.9.4

v2.9.3

Compare Source

📝 Changes you should be aware of

The following rules have been deprecated and will be removed in the next major version:

  • no-default-props
  • no-prop-types
  • no-string-refs

For legacy codebases, use no-restricted-syntax as an alternative:

{
    files: ['**/*.jsx', '**/*.tsx'],
    rules: {
        "no-restricted-syntax": [
            "error",
            {
                "selector": "AssignmentExpression[operator='='][left.property.name='defaultProps']",
                "message": "[Deprecated] Use ES6 default parameters instead."
            },
            {
                "selector": "AssignmentExpression[operator='='][left.property.name='propTypes']",
                "message": "[Deprecated] Use TypeScript or another type-checking solution instead."
            },
            {
                "selector": "JSXAttribute[name.name='ref'][value.type='Literal']",
                "message": "[Deprecated] Use callback refs instead."
            }
        ]
    }
}

Full Changelog: Rel1cx/eslint-react@v2.9.2...v2.9.3

v2.9.2

🐞 Fixes
🪄 Improvements

Full Changelog: Rel1cx/eslint-react@v2.9.0...v2.9.2

v2.9.0

Compare Source

✨ New
🪄 Improvements
  • Move grouped docs from the global overview to per-plugin READMEs by @​Rel1cx in #​1449
📝 Changes you should be aware of

The no-non-async-server-functions rule has been migrated to rsc/function-definition. Please update your configuration accordingly if you are using it.

Full Changelog: Rel1cx/eslint-react@v2.8.4...v2.9.0

v2.8.4

Compare Source

🐞 Fixes

v2.8.3

Compare Source

✨ New

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

eslint/rewrite (@​eslint/compat)

v2.0.3

Compare Source

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

v5.10.0

Compare Source

Features
  • list-style: allow 'off' in overrides (#​1144) (c43bd4b)
  • padding-line-between-statements: introduce lineMode for selector matcher (#​1143) (1ebd6d8)
Build Related
Performance

v5.9.0

Compare Source

Features
Bug Fixes
  • comma-dangle: check tsx file correctly (#​1127) (271da42)
  • comma-dangle: prevent crash when linting non-js files (#​1140) (4a96eae)
  • indent: ignore when source code is not ESTree (#​1139) (9e7f422)
  • no-extra-parens: don't report jsdoc type assertion by default (#​1100) (cfb6296)
  • object-curly-spacing: correctly handle object patterns with type annotations (#​1129) (5aaaec6)
Chores

v5.8.0

Compare Source

Features
Bug Fixes
  • list-style: correctly get ( for optional call expressions (#​1114) (2090a72)
vitest-dev/eslint-plugin-vitest (@​vitest/eslint-plugin)

v1.6.9

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v1.6.8

Compare Source

No significant changes

    View changes on GitHub

What's Changed

Full Changelog: vitest-dev/eslint-plugin-vitest@v1.6.7...v1.6.8

v1.6.7

Compare Source

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

v9.39.4

Compare Source

Bug Fixes

Documentation

Chores

v9.39.3

Compare Source

Bug Fixes

  • 791bf8d fix: restore TypeScript 4.0 compatibility in types (#​20504) (sethamus)

Chores

es-tooling/eslint-plugin-depend (eslint-plugin-depend)

v1.5.0

Compare Source

What's Changed

New Contributors

Full Changelog: es-tooling/eslint-plugin-depend@1.4.0...1.5.0

mdx-js/eslint-mdx (eslint-plugin-mdx)

v3.7.0

Compare Source

Minor Changes
Patch Changes
eslint-community/eslint-plugin-n (eslint-plugin-n)

v17.24.0

Compare Source

🌟 Features
🧹 Chores
  • add v17.x to release-please (9c5e437)
SonarSource/SonarJS (eslint-plugin-sonarjs)

v3.0.7

Compare Source

vercel/turborepo (turbo)

v2.8.14

Compare Source

v2.8.13: Turborepo v2.8.13

Compare Source

What's Changed

@​turbo/repository
Examples
Changelog

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 Mar 1, 2026
@changeset-bot
Copy link

changeset-bot bot commented Mar 1, 2026

🦋 Changeset detected

Latest commit: 48f2911

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 62301a2 to 8d268f4 Compare March 1, 2026 00:35
@renovate renovate bot force-pushed the renovate/package-dependencies branch from 8d268f4 to 6f297d5 Compare March 2, 2026 10:03
@github-actions github-actions bot force-pushed the renovate/package-dependencies branch from 6f297d5 to 737602c Compare March 2, 2026 10:03
@renovate renovate bot force-pushed the renovate/package-dependencies branch from 737602c to 731357f Compare March 2, 2026 21:21
@github-actions github-actions bot force-pushed the renovate/package-dependencies branch from 731357f to 7cb0935 Compare March 2, 2026 21:21
@renovate renovate bot force-pushed the renovate/package-dependencies branch from 7cb0935 to ac0e788 Compare March 5, 2026 19:53
@github-actions github-actions bot force-pushed the renovate/package-dependencies branch from ac0e788 to 4420618 Compare March 5, 2026 19:54
@renovate renovate bot force-pushed the renovate/package-dependencies branch from 4420618 to 787dccf Compare March 6, 2026 05:11
@github-actions github-actions bot force-pushed the renovate/package-dependencies branch from 787dccf to 330407b Compare March 6, 2026 05:12
@renovate renovate bot force-pushed the renovate/package-dependencies branch from 330407b to 51ec4c1 Compare March 6, 2026 10:07
@github-actions github-actions bot force-pushed the renovate/package-dependencies branch from 51ec4c1 to 2a4b3b4 Compare March 6, 2026 10:08
@renovate renovate bot force-pushed the renovate/package-dependencies branch from 2a4b3b4 to 661e98c Compare March 6, 2026 13:18
@github-actions github-actions bot force-pushed the renovate/package-dependencies branch from 661e98c to b77320b Compare March 6, 2026 13:18
@renovate renovate bot force-pushed the renovate/package-dependencies branch from b77320b to c5d4153 Compare March 6, 2026 18:09
@github-actions github-actions bot force-pushed the renovate/package-dependencies branch from c5d4153 to 39ba36b Compare March 6, 2026 18:10
@renovate renovate bot force-pushed the renovate/package-dependencies branch from 39ba36b to f149c69 Compare March 6, 2026 21:35
@github-actions github-actions bot force-pushed the renovate/package-dependencies branch from f149c69 to efaafa9 Compare March 6, 2026 21:35
@renovate renovate bot force-pushed the renovate/package-dependencies branch from efaafa9 to 92db703 Compare March 9, 2026 04:36
@github-actions github-actions bot force-pushed the renovate/package-dependencies branch from 92db703 to 72e84a6 Compare March 9, 2026 04:36
@renovate renovate bot force-pushed the renovate/package-dependencies branch from 72e84a6 to 25550d8 Compare March 9, 2026 18:59
@github-actions github-actions bot force-pushed the renovate/package-dependencies branch from 25550d8 to ffdb02f Compare March 9, 2026 19:00
@renovate renovate bot force-pushed the renovate/package-dependencies branch from ffdb02f to 67bd841 Compare March 9, 2026 22:11
@github-actions github-actions bot force-pushed the renovate/package-dependencies branch from 67bd841 to 02d441a Compare March 9, 2026 22:11
@renovate renovate bot force-pushed the renovate/package-dependencies branch from 02d441a to 05c51c8 Compare March 10, 2026 02:13
| datasource | package                         | from    | to      |
| ---------- | ------------------------------- | ------- | ------- |
| npm        | @changesets/changelog-github    | 0.5.2   | 0.6.0   |
| npm        | @changesets/cli                 | 2.29.8  | 2.30.0  |
| npm        | @commitlint/cli                 | 20.4.0  | 20.4.3  |
| npm        | @commitlint/config-conventional | 20.4.0  | 20.4.3  |
| npm        | @eslint-react/eslint-plugin     | 2.8.1   | 2.13.0  |
| npm        | @eslint/compat                  | 2.0.2   | 2.0.3   |
| npm        | @stylistic/eslint-plugin        | 5.7.1   | 5.10.0  |
| npm        | @vitest/eslint-plugin           | 1.6.6   | 1.6.9   |
| npm        | eslint                          | 9.39.2  | 9.39.4  |
| npm        | eslint-plugin-depend            | 1.4.0   | 1.5.0   |
| npm        | eslint-plugin-mdx               | 3.6.2   | 3.7.0   |
| npm        | eslint-plugin-n                 | 17.23.2 | 17.24.0 |
| npm        | eslint-plugin-sonarjs           | 3.0.6   | 3.0.7   |
| npm        | turbo                           | 2.8.1   | 2.8.14  |
| npm        | typescript-eslint               | 8.54.0  | 8.56.1  |
@github-actions github-actions bot force-pushed the renovate/package-dependencies branch from 05c51c8 to 48f2911 Compare March 10, 2026 02:13
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