Skip to content

Update react dependencies#383

Open
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/react-dependencies
Open

Update react dependencies#383
renovate[bot] wants to merge 1 commit intomasterfrom
renovate/react-dependencies

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Dec 6, 2025

This PR contains the following updates:

Package Change Age Confidence
@tanstack/react-query (source) ^5.90.9^5.90.21 age confidence
eslint-plugin-react-refresh ^0.4.24^0.5.0 age confidence
lucide-react (source) ^0.553.0^0.564.0 age confidence
react (source) ^19.2.0^19.2.4 age confidence
react-dom (source) ^19.2.0^19.2.4 age confidence

Release Notes

TanStack/query (@​tanstack/react-query)

v5.90.21

Compare Source

Patch Changes
  • refactor(react-query/useQueries): remove unreachable 'willFetch' branch in suspense promise collection (#​10082)

v5.90.20

Compare Source

Patch Changes

v5.90.19

Compare Source

Patch Changes

v5.90.18

Compare Source

Patch Changes

v5.90.17

Compare Source

Patch Changes

v5.90.16

Compare Source

Patch Changes

v5.90.15

Compare Source

Patch Changes

v5.90.14

Patch Changes

v5.90.13

Patch Changes

v5.90.12

Compare Source

Patch Changes
ArnaudBarre/eslint-plugin-react-refresh (eslint-plugin-react-refresh)

v0.5.0

Compare Source

Breaking changes
  • The package now ships as ESM and requires ESLint 9 + node 20. Because legacy config doesn't support ESM, this requires to use flat config
  • A new reactRefresh export is available and prefered over the default export. It's an object with two properties:
    • plugin: The plugin object with the rules
    • configs: 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.
  • customHOCs option was renamed to extraHOCs
  • Validation of HOCs calls is now more strict, you may need to add some HOCs to the extraHOCs option

Config example:

import { defineConfig } from "eslint/config";
import { reactRefresh } from "eslint-plugin-react-refresh";

export default defineConfig(
  /* Main config */
  reactRefresh.configs.vite({ extraHOCs: ["someLibHOC"] }),
);

Config example without config:

import { defineConfig } from "eslint/config";
import { reactRefresh } from "eslint-plugin-react-refresh";

export default defineConfig({
  files: ["**/*.ts", "**/*.tsx"],
  plugins: {
    // other plugins
    "react-refresh": reactRefresh.plugin,
  },
  rules: {
    // other rules
    "react-refresh/only-export-components": [
      "warn",
      { extraHOCs: ["someLibHOC"] },
    ],
  },
});
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 like export 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"] }
  ]
}

[!NOTE]
Actually createRoute functions from TanStack Router are not React HOCs, they return route objects that fake to be a memoized component but are not. When only doing createRootRoute({ component: Foo }), HMR will work fine, but as soon as you add a prop to the options that is not a React component, HMR will not work. I would recommend to avoid adding any TanStack function to extraHOCs it you want to preserve good HMR in the long term. Bluesky thread.

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 connect from the rule. If you are using connect from react-redux, you should now add it to extraHOCs like this:

{
  "react-refresh/only-export-components": ["warn", { "extraHOCs": ["connect"] }]
}

v0.4.26

Compare Source

v0.4.25

Compare Source

  • Report cases like export const ENUM = Object.keys(TABLE) as EnumType[]; (fixes #​93)
  • Allow _ in component names (#​94)
lucide-icons/lucide (lucide-react)

v0.564.0: Version 0.564.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.563.1...0.564.0

v0.563.0: Version 0.563.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.562.0...0.563.0

v0.562.0

Compare Source

v0.561.0: Version 0.561.0

Compare Source

What's Changed

Full Changelog: lucide-icons/lucide@0.560.0...0.561.0

v0.560.0: Version 0.560.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.559.0...0.560.0

v0.559.0: Version 0.559.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.558.0...0.559.0

v0.558.0: Version 0.558.0

Compare Source

What's Changed

Full Changelog: lucide-icons/lucide@0.557.0...0.558.0

v0.557.0: Version 0.557.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.556.0...0.557.0

v0.556.0: Version 0.556.0

Compare Source

What's Changed

New Contributors

Full Changelog: lucide-icons/lucide@0.555.0...0.556.0

v0.555.0: Version 0.555.0

Compare Source

What's Changed

Full Changelog: lucide-icons/lucide@0.554.0...0.555.0

v0.554.0: Version 0.554.0

Compare Source

What's Changed

Breaking change

For lucide-react and lucide-solid, imports for Fingerprint icon are changed to FingerprintPattern.

Lucide React
- import { Fingerprint } from "lucide-react";
+ import { FingerprintPattern } from "lucide-react";
Lucide Solid
- import { Fingerprint } from "lucide/solid";
+ import { FingerprintPattern } from "lucide/solid";

// Or

- import Fingerprint from "lucide/solid/icons/fingerprint";
+ import FingerprintPattern from "lucide/solid/icons/fingerprint-pattern";

New Contributors

Full Changelog: lucide-icons/lucide@0.553.0...0.554.0

facebook/react (react)

v19.2.4: 19.2.4 (January 26th, 2026)

Compare Source

React Server Components

v19.2.3: 19.2.3 (December 11th, 2025)

Compare Source

React Server Components

v19.2.2: 19.2.2 (December 11th, 2025)

Compare Source

React Server Components

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.

👻 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 force-pushed the renovate/react-dependencies branch from 92b68d7 to cf0efe7 Compare December 7, 2025 13:58
@renovate renovate bot changed the title Update dependency @tanstack/react-query to ^5.90.10 Update react dependencies Dec 7, 2025
@renovate renovate bot force-pushed the renovate/react-dependencies branch 4 times, most recently from 3a9c3af to eb1ac58 Compare December 22, 2025 17:27
@renovate renovate bot force-pushed the renovate/react-dependencies branch 5 times, most recently from 81cce6c to 4a6edfe Compare December 25, 2025 16:54
@renovate renovate bot force-pushed the renovate/react-dependencies branch 6 times, most recently from 9826014 to ebcdf88 Compare January 6, 2026 01:08
@renovate renovate bot force-pushed the renovate/react-dependencies branch 4 times, most recently from 0c5d8e1 to 56ab611 Compare January 13, 2026 03:15
@renovate renovate bot force-pushed the renovate/react-dependencies branch 9 times, most recently from bdbe2d8 to 032546f Compare January 20, 2026 21:19
@renovate renovate bot force-pushed the renovate/react-dependencies branch 7 times, most recently from 93fbcf7 to f4fb5d5 Compare January 27, 2026 22:13
@renovate renovate bot force-pushed the renovate/react-dependencies branch 3 times, most recently from 337688e to 8067f89 Compare February 6, 2026 21:34
@renovate renovate bot force-pushed the renovate/react-dependencies branch 3 times, most recently from 08fe6b6 to f4e2b11 Compare February 15, 2026 21:32
@renovate renovate bot force-pushed the renovate/react-dependencies branch 4 times, most recently from 2a3c542 to 0623cc7 Compare February 27, 2026 09:38
@renovate renovate bot force-pushed the renovate/react-dependencies branch 3 times, most recently from 806c5be to c693666 Compare March 6, 2026 08:58
@renovate renovate bot force-pushed the renovate/react-dependencies branch from c693666 to ef1f254 Compare March 6, 2026 09:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants