Releases: olegman/redux-actions-helpers
Releases · olegman/redux-actions-helpers
1.1.1
1.1.0
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
First of all I want to say thanks for people who support me with ⭐️ on GitHub and help me with advices and good words, you are really awesome and help me a lot to stay motivated to bring this exciting release 🎉 🎊 🍾 Special thanks goes to: @lamo2k123, @izonder, @ramoona, @GrigoriyZander, @lutien, @ivan-hilckov, @abdusalamov.
Breaking changes
- Second argument of handleActions is now accepts options object instead of initialState (defaultState), so you need to pass initialState in that object, like this { initialState } this was affected by adding warning for unknown action
Major changes
- Added support for multiple actions in one handler, now you can combine actions by + operator, like so: [action + secondAction]: handlerFunction see details in corresponding issue (#8)
- Complete rewrite to TypeScript. Now it's easier to integrate in TypeScript projects and can be helpful with IDE suggestions, because we have d.ts files (f620fcf)
- Added warning for unknown action (69f82ba)
- Added warning when creating params with type property (104565d)