Releases: bdwain/redux-action-enhancer
Releases · bdwain/redux-action-enhancer
3.0.0
Switch the order of the type params around in ActionEnhancer so that the most commonly used parameters are used first
2.2.0
Improve types by supporting all parameter combinations for action enhancers and adding a type for createActionEnhancerMiddleware
2.1.3
Remove unnecessary dependency on rollup plugin terser and make it a dev dependency
2.1.2
Added typescript types to package.json
2.1.1
Added typescript types
Upgraded build tools to use latest babel and rollup
2.0.0
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
Feature: Support action type matching (4d6e55)
1.0.1
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
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.