Skip to content

Releases: reduxjs/react-redux

v4.3.0

04 Feb 19:23
Compare
Choose a tag to compare
  • Adds per-instance memoization API. If your mapStateToProps or mapDispatchToProps 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

02 Feb 11:35
Compare
Choose a tag to compare

v4.2.0

01 Feb 18:13
Compare
Choose a tag to compare
  • 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

29 Jan 17:38
Compare
Choose a tag to compare

v4.1.1

28 Jan 20:02
Compare
Choose a tag to compare
  • Adds loose-envify as a dependency to fix builds for Browserify users. (#1304 & #1306)

v4.1.0

28 Jan 18:14
Compare
Choose a tag to compare
  • For Browserify users, Redux should now be properly envified without extra configuration (#274)

v4.0.6

28 Dec 22:20
Compare
Choose a tag to compare

v4.0.5

24 Dec 16:23
Compare
Choose a tag to compare

v4.0.4

23 Dec 11:20
Compare
Choose a tag to compare
  • Avoids use of Object.defineProperty() to prevent errors in IE8 (#227)

v4.0.3

22 Dec 12:45
Compare
Choose a tag to compare
  • 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 as componentWillReceiveProps(), handleChange(), and render(). (#224, #225)