Releases: reduxjs/react-redux
Releases · reduxjs/react-redux
v4.3.0
- Adds per-instance memoization API. If your
mapStateToProps
ormapDispatchToProps
returns a function, that function will be used instead for the given component instance. Most apps never need this, but it can be handy for custom memoization logic in apps with large component trees. It can bring significant performance improvements when used together with Reselect. (#279, 7ee928b, #179)
v4.2.1
- Bump Lodash to 4.2.0 (reduxjs/redux#1346, reduxjs/redux#1349)
v4.2.0
isPlainObject
that we use internally is now outsourced to Lodash 4.1 (reduxjs/redux#1339). Note that this does not mean we depend on Lodash itself. We only use a tiny module from it. We also use the same module in Redux >= 3.2.0.
v4.1.2
v4.1.1
v4.1.0
v4.0.6
v4.0.5
v4.0.4
v4.0.3
- Fixes a bug that caused the props of connected components to not updated during a hot update with something like React Hot Loader. Internally, it involved moving the memoized calculations from
shouldComponentUpdate()
into more appropriate places such ascomponentWillReceiveProps()
,handleChange()
, andrender()
. (#224, #225)