2.0.0
版本发布时间: 2015-11-03 22:47:28
pburtchaell/redux-promise-middleware最新发布版本:6.2.0(2023-12-28 03:07:18)
Adds
- Custom type suffixes
- promiseMiddleware is now a function that accepts options and returns the middleware to apply
- Action.type now expects a single type value instead of an array
- Minor bug fixes
Breaking Changes :fire:
The middleware must now be initiliazed like this:
composeStoreWithMiddleware = applyMiddleware(
promiseMiddleware()
)(createStore);
Previously it was:
composeStoreWithMiddleware = applyMiddleware(
promiseMiddleware
)(createStore);