Skip to content

Releases: bdwain/redux-action-enhancer

3.0.0

09 Jun 20:57
Compare
Choose a tag to compare

Switch the order of the type params around in ActionEnhancer so that the most commonly used parameters are used first

2.2.0

09 Jun 20:56
Compare
Choose a tag to compare

Improve types by supporting all parameter combinations for action enhancers and adding a type for createActionEnhancerMiddleware

2.1.3

28 Apr 17:29
Compare
Choose a tag to compare

Remove unnecessary dependency on rollup plugin terser and make it a dev dependency

2.1.2

28 Apr 17:10
Compare
Choose a tag to compare

Added typescript types to package.json

2.1.1

28 Apr 16:57
Compare
Choose a tag to compare

Added typescript types

Upgraded build tools to use latest babel and rollup

2.1.0

28 Apr 16:57
Compare
Choose a tag to compare

Unreleased

2.0.0

01 Apr 22:53
Compare
Choose a tag to compare

BREAKING CHANGE: Switch action type matcher from a single actionType to an array of actionTypes. (d6e08e)

Feature: allow passing an array instead of a function to createActionEnhancerMiddleware (d6e08e)

1.1.0

01 Apr 22:51
Compare
Choose a tag to compare

Feature: Support action type matching (4d6e55)

1.0.1

01 Apr 22:49
Compare
Choose a tag to compare

Bugfix: There was an issue with symbol polyfills not supporting the in operator, so the code was changed to check for undefined instead.

1.0.0

01 Oct 06:00
Compare
Choose a tag to compare

Breaking Changes:

  • middleware takes a function that returns enhancers rather than an array of enhancers. This allows the app to dynamically load more enhancers without having to explicitly notify the middleware of changes. Also, since the function is passed the current redux state, enhancers can be chosen based on state if desired.

  • Build changes: Redux Action Enhancers now build UMD, commonJS, and transpiled es6 modules, similar to redux and other popular libraries.