Download Latest Version v9.2.0 source code.zip (1.7 MB)
Email in envelope

Get an email when there's a new version of React Redux

Home / v9.1.2
Name Modified Size InfoDownloads / Week
Parent folder
README.md 2024-05-02 1.7 kB
v9.1.2 source code.tar.gz 2024-05-02 1.6 MB
v9.1.2 source code.zip 2024-05-02 1.7 MB
Totals: 3 Items   3.3 MB 0

This bugfix release removes the no-longer-necessary peer dependency on react-native, and tweaks a few TS types for compat with the upcoming React 19 release.

Changes

React Native Peer Dependency Removed

We've always had an awkward peer dependency on both ReactDOM and React Native, because of the need to import the unstable_batchedUpdates API directly from each reconciler. That's part of what led to the sequence of 9.x patch releases to deal with RN compat.

As of 9.0.3, we dropped the batching imports completely, since React 18 now batches by default. That means we didn't even have any remaining imports from react-native.

Meanwhile, React 18.3 just came out, but so did React Native 0.74. RN 0.74 still requires React 18.2.

This caused NPM users to have installation failures when trying to use React-Redux:

  • React-Redux has a peer dep on RN
  • RN has a peer dep on React 18.2
  • But the latest React, 18.3 would get installed in the app
  • NPM errors with a peer dep mismatch

We no longer need to list RN as a peer dep, and dropping that also fixes the NPM installation issues as well.

What's Changed

Full Changelog: https://github.com/reduxjs/react-redux/compare/v9.1.1...v9.1.2

Source: README.md, updated 2024-05-02