chore(deps): update dependency eslint-plugin-react-refresh to v0.5.3 - #168
Open
renovate[bot] wants to merge 1 commit into
Open
chore(deps): update dependency eslint-plugin-react-refresh to v0.5.3#168renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
renovate
Bot
force-pushed
the
renovate/eslint-plugin-react-refresh-0.x
branch
2 times, most recently
from
July 20, 2025 13:12
34fdb58 to
3c3c0ad
Compare
renovate
Bot
force-pushed
the
renovate/eslint-plugin-react-refresh-0.x
branch
from
August 10, 2025 14:28
3c3c0ad to
50b03ba
Compare
renovate
Bot
force-pushed
the
renovate/eslint-plugin-react-refresh-0.x
branch
from
September 23, 2025 01:30
50b03ba to
6a62bea
Compare
renovate
Bot
force-pushed
the
renovate/eslint-plugin-react-refresh-0.x
branch
2 times, most recently
from
October 2, 2025 01:10
9bc4ebc to
910db62
Compare
renovate
Bot
force-pushed
the
renovate/eslint-plugin-react-refresh-0.x
branch
2 times, most recently
from
October 21, 2025 09:08
6263b64 to
902aada
Compare
renovate
Bot
force-pushed
the
renovate/eslint-plugin-react-refresh-0.x
branch
from
December 20, 2025 00:36
902aada to
de15333
Compare
renovate
Bot
force-pushed
the
renovate/eslint-plugin-react-refresh-0.x
branch
from
January 19, 2026 19:50
de15333 to
32879d5
Compare
renovate
Bot
force-pushed
the
renovate/eslint-plugin-react-refresh-0.x
branch
from
February 4, 2026 14:01
32879d5 to
9c489a8
Compare
renovate
Bot
force-pushed
the
renovate/eslint-plugin-react-refresh-0.x
branch
from
February 26, 2026 11:05
9c489a8 to
c42d582
Compare
renovate
Bot
force-pushed
the
renovate/eslint-plugin-react-refresh-0.x
branch
from
February 26, 2026 20:54
c42d582 to
18242f6
Compare
renovate
Bot
force-pushed
the
renovate/eslint-plugin-react-refresh-0.x
branch
from
May 12, 2026 17:53
18242f6 to
66fe22f
Compare
renovate
Bot
force-pushed
the
renovate/eslint-plugin-react-refresh-0.x
branch
from
June 17, 2026 18:47
66fe22f to
f1b4254
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
0.4.19→0.5.3Release Notes
ArnaudBarre/eslint-plugin-react-refresh (eslint-plugin-react-refresh)
v0.5.3Compare Source
export { }#110 (fixes #109)v0.5.2Compare Source
v0.5.1Compare Source
v0.5.0Compare Source
Breaking changes
reactRefreshexport is available and prefered over the default export. It's an object with two properties:plugin: The plugin object with the rulesconfigs: An object containing configuration presets, each exposed as a function. These functions accept your custom options, merge them with sensible defaults for that config, and return the final config object.customHOCsoption was renamed toextraHOCsextraHOCsoptionConfig example:
Config example without config:
Why
This version follows a revamp of the internal logic to better make the difference between random call expressions like
export const Enum = Object.keys(Record)and actual React HOC calls likeexport const MemoComponent = memo(Component). (fixes #93)The rule now handles ternaries and patterns like
export default customHOC(props)(Component)which makes it able to correctly support files like this one given this config:{ "react-refresh/only-export-components": [ "warn", { "extraHOCs": ["createRootRouteWithContext"] } ] }Because I'm not 100% sure this new logic doesn't introduce any false positive, this is done in a major-like version. This also give me the occasion to remove the hardcoded
connectfrom the rule. If you are usingconnectfromreact-redux, you should now add it toextraHOCslike this:{ "react-refresh/only-export-components": ["warn", { "extraHOCs": ["connect"] }] }v0.4.26Compare Source
v0.4.25Compare Source
export const ENUM = Object.keys(TABLE) as EnumType[];(fixes #93) (reverted in 0.4.26)_in component names (#94)v0.4.24Compare Source
"generateImageMetadata","generateSitemaps"&"generateStaticParams"toallowExportNamesin Next configv0.4.23Compare Source
"metadata","generateMetadata"&"generateViewport"toallowExportNamesin Next configv0.4.22Compare Source
"viewport"toallowExportNamesin Next config (#89)v0.4.21Compare Source
This allows exports like
fetchCacheandrevalidatewhich are used in Page or Layout components and don't trigger a full page reload.v0.4.20Compare Source
as const(fixes #80)Configuration
📅 Schedule: (UTC)
🚦 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.
This PR was generated by Mend Renovate. View the repository job log.