Skip to content

Releases: redux-utilities/redux-actions

1.2.2

25 Feb 21:09
Compare
Choose a tag to compare

v1.2.1

26 Jan 05:50
Compare
Choose a tag to compare

Enhancements

This approximately halves the minified bundle size. Original credit goes to @lxe.

v1.2.0

13 Dec 04:46
Compare
Choose a tag to compare

Mostly, this release adds a new ES2015 build in the es/ folder for tree-shaking bundlers like Webpack2 and Rollup.

v1.1.0

23 Nov 18:25
Compare
Choose a tag to compare

We found that lots of library users were specifying null payload creators in createActions and createAction. Rather than force them into a strict paradigm of passing just undefined, we decided to continue allowing this behavior. See #170, #169.

Also, this adds an example of how to use combineActions with createActions in the README, in response to #163.

Fixes

Documentation

v1.0.1

21 Nov 20:06
Compare
Choose a tag to compare

With #141 we have made other libraries incompatible with redux-actions and it resulted to an unexpected behavior (#164, #167). If an action is not a FSA, handleAction should not handle it and just pass it to the next reducer. This fix will remove the FSA check to support Non-FSA.

Fixes

v1.0.0

18 Nov 19:18
Compare
Choose a tag to compare

This is our first major release. If you experience any undocumented issues, please let us know immediately in the issues or feel free to open a pull request. Any contribution is much appreciated. We try our best to ship new fix releases as fast as we can.

From now on we are checking heavily for correct usage of this library and using invariant for throwing errors. It is a mirror of Facebooks invariant in React and makes use of the process.env.NODE_ENV value as well.

Another big change is that the payload can only be omitted with undefined. That allows us to pass null as payload, which has been requested many times by the community. We also had a long discussion on the proper usage of null and undefined for omitting values in general. You can read it in #115 and #128.

If you want to have a quick chat with us, tweet us @yangmillstheory or @timche_.

BREAKING CHANGES

Enhancements

v0.13.0

30 Oct 20:19
Compare
Choose a tag to compare

New Features & Enhancements

Internal Improvements

v0.12.0

01 Sep 18:10
Compare
Choose a tag to compare

New Features & Enhancements

Notes

npmcdn.com is moving to unpkg.com, so if you are using our UMD build, please update your URL to http://unpkg.com or take a look at the README.

v0.11.0

19 Aug 08:03
Compare
Choose a tag to compare

New Features & Enhancements

Internal

v0.10.1

09 Jul 09:56
Compare
Choose a tag to compare

Fixes