4.0.0 (2018-05-12)
- Actions: The way creating and registering action has been changed. Instead of declaring action as class, you can create them via
createAction
function. (It is changed since modifying uglify settings for a library does not make sense and it is more compatible with FSA standards.)
- mapDispatchToProps: This new method can be used for mapping actions to props in easy way. You can find the usage in readme.
3.0.0 (2018-05-08)
-
AsyncAction: There is no more
AsyncAction
. Instead of passing dispatch through actions, it is passing to reducer body. You can use async dispatch on reducer declaration viaReducerBuilder
. -
ReducerBuilder.build(): Dont need to build reducer, only passing declaration is enough.