Skip to content

Releases: reduxjs/redux

v3.5.2

24 Apr 12:27
Compare
Choose a tag to compare
  • Enforces a newer version of symbol-observable that works in IE8 (#1659)

v3.5.1

20 Apr 10:31
Compare
Choose a tag to compare
  • Fixes a regression introduced in 3.5.0 that caused dispatch to not be available while middleware is initializing. (#1644, #1647)

v3.5.0

20 Apr 00:05
Compare
Choose a tag to compare
  • Adds interop with observable libraries (#1632)

v3.4.0

08 Apr 22:58
Compare
Choose a tag to compare

v3.3.1

06 Feb 22:08
Compare
Choose a tag to compare
  • ES Modules build now uses the ES Modules build of Lodash. This makes vanilla Redux code include zero CommonJS interop for Rollup users. (#1372)

v3.3.0

05 Feb 22:05
Compare
Choose a tag to compare
  • Fixes jsnext:main to point to a Rollup-friendly ES Modules build in redux/es. It still depends on Lodash so you can’t use without rollup-plugin-commonjs, but importing individual functions like import { createStore } from 'redux' should now work, and you shouldn’t be getting an error when you use npm({ jsnext: true }) anymore due to a broken jsnext:main. (#1369, #1042, #1327)

v3.2.1

02 Feb 11:54
Compare
Choose a tag to compare
  • Force Lodash to be >= 4.2.0 to avoid global issues that were fixed in it (#1346, #1349)

v3.2.0

01 Feb 17:38
Compare
Choose a tag to compare
  • isPlainObject that we use internally is now outsourced to Lodash 4.1 (#1339). Note that this does not mean we depend on Lodash itself. We only use a tiny module from it. We will be able to reuse the same module in React Redux.

v3.1.7

31 Jan 23:15
Compare
Choose a tag to compare
  • Fix an issue with setInterval unavailable in certain environments (#1335)
  • Performance and memory usage optimizations (5b58608, c031c0a)
  • Slightly more aggressive minification (6e8d9d4)

v3.1.6

31 Jan 02:01
Compare
Choose a tag to compare
  • subscribe() now throws a descriptive error when the listener argument is not a function (#1325)
  • bindActionCreators() now ignores anything but functions on the input object (#1329)