chore(deps): update dependency @eslint-react/eslint-plugin to v2.9.3 #316

Merged
alexlebens merged 1 commits from renovate/eslint-react-eslint-plugin-2.x-lockfile into main 2026-02-03 00:15:15 +00:00
Collaborator

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@eslint-react/eslint-plugin (source) 2.8.42.9.3 age adoption passing confidence

Release Notes

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

v2.9.3

Compare Source

🪄 Improvements
📝 Changes you should be aware of

The following rules have been deprecated:

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

If you are working with legacy codebases that still require these rules, you can use a no-restricted-syntax rule to enforce these restrictions:

{
    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."
            }
        ]
    }
}

(The rules that were deprecated in this release will still be available until the next major update to avoid breaking changes.)

Full Changelog: https://github.com/Rel1cx/eslint-react/compare/v2.9.2...v2.9.3

v2.9.2

🐞 Fixes
🪄 Improvements

Full Changelog: https://github.com/Rel1cx/eslint-react/compare/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: https://github.com/Rel1cx/eslint-react/compare/v2.8.4...v2.9.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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

🔕 Ignore: Close this PR and you won't be reminded about this update again.


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

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Adoption](https://docs.renovatebot.com/merge-confidence/) | [Passing](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---|---|---| | [@eslint-react/eslint-plugin](https://github.com/Rel1cx/eslint-react) ([source](https://github.com/Rel1cx/eslint-react/tree/HEAD/packages/plugins/eslint-plugin)) | [`2.8.4` → `2.9.3`](https://renovatebot.com/diffs/npm/@eslint-react%2feslint-plugin/2.8.4/2.9.3) | ![age](https://developer.mend.io/api/mc/badges/age/npm/@eslint-react%2feslint-plugin/2.9.3?slim=true) | ![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@eslint-react%2feslint-plugin/2.9.3?slim=true) | ![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@eslint-react%2feslint-plugin/2.8.4/2.9.3?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@eslint-react%2feslint-plugin/2.8.4/2.9.3?slim=true) | --- ### Release Notes <details> <summary>Rel1cx/eslint-react (@&#8203;eslint-react/eslint-plugin)</summary> ### [`v2.9.3`](https://github.com/Rel1cx/eslint-react/blob/HEAD/CHANGELOG.md#v293-2026-02-02) [Compare Source](https://github.com/Rel1cx/eslint-react/compare/v2.9.2...v2.9.3) ##### 🪄 Improvements - Deprecated `no-default-props` rule by [@&#8203;Rel1cx](https://github.com/Rel1cx) in [#&#8203;1464](https://github.com/Rel1cx/eslint-react/pull/1464) - Deprecated `no-prop-types` rule by [@&#8203;Rel1cx](https://github.com/Rel1cx) in [#&#8203;1464](https://github.com/Rel1cx/eslint-react/pull/1464) - Deprecated `no-string-refs` rule by [@&#8203;Rel1cx](https://github.com/Rel1cx) in [#&#8203;1464](https://github.com/Rel1cx/eslint-react/pull/1464) ##### 📝 Changes you should be aware of The following rules have been deprecated: - `no-default-props` - `no-prop-types` - `no-string-refs` If you are working with legacy codebases that still require these rules, you can use a [`no-restricted-syntax`](https://eslint.org/docs/latest/rules/no-restricted-syntax) rule to enforce these restrictions: ```ts { 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." } ] } } ``` (The rules that were deprecated in this release will still be available until the next major update to avoid breaking changes.) **Full Changelog**: <https://github.com/Rel1cx/eslint-react/compare/v2.9.2...v2.9.3> ### [`v2.9.2`](https://github.com/Rel1cx/eslint-react/blob/HEAD/CHANGELOG.md#v292-2026-02-02) ##### 🐞 Fixes - Fix directives checks by [@&#8203;Rel1cx](https://github.com/Rel1cx) in [#&#8203;1461](https://github.com/Rel1cx/eslint-react/pull/1461) - Add missing rsc plugin to `all` config, closes [#&#8203;1462](https://github.com/Rel1cx/eslint-react/issues/1462) by [@&#8203;Rel1cx](https://github.com/Rel1cx) in [#&#8203;1463](https://github.com/Rel1cx/eslint-react/pull/1463) ##### 🪄 Improvements - Separate message ids for `rsc/function-definition` by [@&#8203;SukkaW](https://github.com/SukkaW) in [#&#8203;1460](https://github.com/Rel1cx/eslint-react/pull/1460) **Full Changelog**: <https://github.com/Rel1cx/eslint-react/compare/v2.9.0...v2.9.2> ### [`v2.9.0`](https://github.com/Rel1cx/eslint-react/blob/HEAD/CHANGELOG.md#v290-2026-02-02) [Compare Source](https://github.com/Rel1cx/eslint-react/compare/v2.8.4...v2.9.0) ##### ✨ New - Migrate `no-non-async-server-functions` rule to `rsc/function-definition` by [@&#8203;Rel1cx](https://github.com/Rel1cx) in [#&#8203;1457](https://github.com/Rel1cx/eslint-react/pull/1457) - Add a new `eslint-plugin-react-rsc` sub-plugin for React Server Components (RSC) rules by [@&#8203;Rel1cx](https://github.com/Rel1cx) in [#&#8203;1457](https://github.com/Rel1cx/eslint-react/pull/1457) - Add a new `rsc` preset to enable RSC rules by [@&#8203;Rel1cx](https://github.com/Rel1cx) in [#&#8203;1457](https://github.com/Rel1cx/eslint-react/pull/1457) - Add a new `disable-rsc` preset to disable RSC rules by [@&#8203;Rel1cx](https://github.com/Rel1cx) in [#&#8203;1457](https://github.com/Rel1cx/eslint-react/pull/1457) ##### 🪄 Improvements - Move grouped docs from the global overview to per-plugin READMEs by [@&#8203;Rel1cx](https://github.com/Rel1cx) in [#&#8203;1449](https://github.com/Rel1cx/eslint-react/pull/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**: <https://github.com/Rel1cx/eslint-react/compare/v2.8.4...v2.9.0> </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4wLjIiLCJ1cGRhdGVkSW5WZXIiOiI0My4wLjIiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbImRlcGVuZGVuY3kiXX0=-->
renovate-bot added the dependency label 2026-02-03 00:08:49 +00:00
renovate-bot added 1 commit 2026-02-03 00:08:53 +00:00
chore(deps): update dependency @eslint-react/eslint-plugin to v2.9.3
Some checks are pending
renovate/stability-days Updates have not met minimum release age requirement
test-build / build (pull_request) Successful in 3m11s
0d53376c80
alexlebens merged commit 3fe324d4c2 into main 2026-02-03 00:15:15 +00:00
Sign in to join this conversation.
No Reviewers
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: alexlebens/site-profile#316