All Versions
11
Latest Version
Avg Release Cycle
91 days
Latest Release
1577 days ago

Changelog History
Page 1

  • v4.0.5 Changes

    December 24, 2019

    ๐Ÿš€ This release includes a memory leak fix, and a fix for removing reducers with replaceReducer and combineReducers.

    ๐Ÿ“ฆ There are also some TypeScript changes, which require version 3.5 or higher. This also removes our DeepPartial type, which wasn't intended to be a public API. If you need this type, you can find an equivalent of likely higher quality in the utility-types package.

    ๐Ÿ†“ Speaking of TypeScript, we are done with converting the code to TypeScript on master and are looking to get some TS improvements in before launching 5.0. If you're interested in helping, feel free to submit a PR with anything you'd like to contribute.

    Changes

  • v4.0.4 Changes

    July 10, 2019

    โšก๏ธ This is a republish of 4.0.3 with an updated version of Babel to fix #3468

    Changes

  • v4.0.3 Changes

    July 09, 2019

    โช This is a quick revert of a change to our typings that broke compatibility. Apologies for the problems.

    Also, if you are experiencing type errors related to [Symbol.observable], please ensure you have the same version of redux installed for all your dependencies with npm ls redux.

    Changes

    • โช Reverts the change to combineReducers' type parameters (#3467 by @timdorr)
  • v4.0.2 Changes

    July 09, 2019

    ๐Ÿš€ This is a very minor release with some nice improvements to our TypeScript type definitions. Enjoy!

    Changes

  • v4.0.1 Changes

    October 13, 2018

    ๐Ÿš€ A very minor release. We've upgraded to Babel 7 internally and now provide a .mjs file which you can import cleanly into browsers that support ES modules natively. Enjoy!

    Changes

  • v4.0.0 Changes

    April 17, 2018

    ๐Ÿฑ Redux 4 is here! ๐ŸŽ‰

    If you're a React user, this is going to be a lot like going from 15 to 16. Not a lot of user-facing changes, but some interesting improvements under the hood.

    ๐Ÿ— The major changes (#1342) are around our TypeScript definitions, bundled CommonJS and ES builds, throwing if you subscribe or getState from a reducer, and a bunch of other smaller things. The full changes are listed below.

    Enjoy!

    Changes

    • โšก๏ธ Tons of docs updates. Thanks @markerikson and the Redux community for all your PRs!
    • ๐Ÿ‘‰ Make middleware API dispatch pass through all call arguments (#2560 by @Asvarox)
    • ๐Ÿ”จ Refactor applyMiddleware to reduce confusion around createStore args (#2201 by @jimbolla)
    • ๐Ÿ‘‰ Make bindActionCreators transparently pass this (#2641 by @Parakleta)
    • โœ‚ Remove @Private flag on AnyAction type definition (#2510 by @alexmngn)
    • ๐Ÿ›  Fixed quote types inconsistency in a warning message (#2297 by @Andarist)
    • ๐Ÿšš Move ActionTypes to a private export (b62248b by @timdorr)
    • Throw if getState, subscribe, or unsubscribe called while dispatching (including inside a reducer) (#1569 by @mjw56)
    • Warn when dispatching during Middleware setup (#1485 by @timdorr)
    • Mapped type for combineReducers in index.d.ts (#2182 by @mkusher)
    • โœ‚ Remove legacy jsnext entry (#2284 by @TrySound)
    • Revamp TypeScript typing with more type safety (#2563 by @pelotom)
    • ๐Ÿ›  Fix TS definitions test for new Dispatch typing (#2674 by @pelotom)
    • โž• Add DeepPartial type for preloaded state (#2679 by @aikoven)
    • Bundle cjs and es formats (#2358 by @TrySound)
    • REPLACE action for replaceReducers (#2673 by @timdorr)
    • โšก๏ธ Update build to use babel-preset-env (#2696 by @hmillison)
    • โšก๏ธ Optimize dispatch plain object check (#2599 by @timdorr)
    • โšก๏ธ Update TypeScript typings (#2773 by @aikoven)
    • โž• Added prettier formatting (#2676 by @adityavohra7)
    • โž• Add a sideEffects: false flag for Webpack 4 (#2865 by @timdorr)
    • ๐Ÿ›  Fix missed case in "observe" type check (#2919 by @zerobias)
  • v4.0.0-rc.1 Changes

    April 10, 2018

    npm install redux@next

    ๐Ÿš€ There haven't been any big complaints with the previous beta, so it's time to graduate to a release candidate. Please give this a try in your applications and let us know if you see any issues. If we're all clear, I'll get 4.0 released in the next week!

    Changes

    • โž• Add a sideEffects: false flag for Webpack 4 (#2865 by @timdorr)
    • ๐Ÿ›  Fix missed case in "observe" type check (#2919 by @zerobias)
  • v4.0.0-beta.2 Changes

    February 15, 2018

    npm install redux@next

    ๐Ÿš€ Another beta release to test our TypeScript typings. Feedback is greatly appreciated!

    Changes

  • v4.0.0-beta.1 Changes

    November 16, 2017

    ๐Ÿฑ It's time to bump the major version on Redux! ๐ŸŽ‰

    ๐Ÿš€ This is the first beta release of 4.0.0. Despite the version bump, the changes are relatively minor. Most of it was covered in the 4.0 tracking issue: #1342.

    The largest amount of work was done with our Typescript definitions. They have been completely overhauled, so they should work better and take advantage of all the new stuff in TS 2.x.

    ๐Ÿ— The other big change is we are now bundling our CommonJS and ES builds like React has done recently. This means direct, private imports (import createStore from 'redux/lib/createStore') will no longer work. This ensures our modules are maintaining a consistent contract with your apps and that any reorganization we choose to do internally has no effect on your usage of Redux.

    ๐Ÿš€ We've also tightened up some behavior quirks and dropped support for IE < 11. The vast majority of apps should require no changes. But we will run through a standard RC process to gradually release this out to the world and ensure no big headaches for everyone during the holiday season.

    Enjoy!

    Changes

    • โšก๏ธ Tons of docs updates. Thanks @markerikson and the Redux community for all your PRs!
    • ๐Ÿ‘‰ Make middleware API dispatch pass through all call arguments (#2560 by @Asvarox)
    • ๐Ÿ”จ Refactor applyMiddleware to reduce confusion around createStore args (#2201 by @jimbolla)
    • ๐Ÿ‘‰ Make bindActionCreators transparently pass this (#2641 by @Parakleta)
    • โœ‚ Remove @Private flag on AnyAction type definition (#2510 by @alexmngn)
    • ๐Ÿ›  Fixed quote types inconsistency in a warning message (#2297 by @Andarist)
    • ๐Ÿšš Move ActionTypes to a private export (b62248b by @timdorr)
    • Throw if getState, subscribe, or unsubscribe called while dispatching (#1569 by @mjw56)
    • Warn when dispatching during Middleware setup (#1485 by @timdorr)
    • Mapped type for combineReducers in index.d.ts (#2182 by @mkusher)
    • โœ‚ Remove legacy jsnext entry (#2284 by @TrySound)
    • Revamp TypeScript typing with more type safety (#2563 by @pelotom)
    • ๐Ÿ›  Fix TS definitions test for new Dispatch typing (#2674 by @pelotom)
    • โž• Add DeepPartial type for preloaded state (#2679 by @aikoven)
    • Bundle cjs and es formats (#2358 by @TrySound)
    • REPLACE action for replaceReducers (#2673 by @timdorr)
    • โšก๏ธ Update build to use babel-preset-env (#2696 by @hmillison)
    • โšก๏ธ Optimize dispatch plain object check (#2599 by @timdorr)
  • v3.7.2 Changes

    July 13, 2017

    Changes