#4798·redux-form

Add React 19 Support

Author: CMLCNLCreated Jul 23, 2025Updated Jun 7, 2026
Labelsfeature

I’m attempting to upgrade my app to React 19, but installing redux-form (v8.x) triggers peer dependency warnings/errors because it only declares support up to React 18:

npm ERR! peer react@"^16.3.0 || ^17.0.0 || ^18.0.0" from [email protected]

As React 19 is now officially released, it would be great to have an update that:

  1. Adjusts the peerDependencies in package.json to include React 19 (e.g. ^16.3.0 || ^17.0.0 || ^18.0.0 || ^19.0.0).
  2. Confirms compatibility with React 19’s new APIs and lifecycle behavior.
  3. Provides any migration guidance if there are breaking changes.

Environment

  • redux-form: v8.x (latest)
  • React: 19.x
  • Node/npm: node v18 / npm 10

Steps to Reproduce

  1. Create a new React app with React 19:

    bash
    npx create-react-app my-app --template cra-template
    cd my-app
    npm install react@19 react-dom@19
  2. Attempt to install redux-form:

    bash
    npm install redux-form
  3. Observe peer dependency error:

    bash
    npm ERR! peer react@"^16.3.0 || ^17.0.0 || ^18.0.0" from [email protected]

Request

Could you please release a new patch/minor version of redux-form that officially supports React 19? If there are any known compatibility issues or required code changes, guidance would be much appreciated.

Thank you for maintaining this library and for considering React 19 support!