- Update README based on feedback
- Dart 2 support
- Remove
ReducerBinding
, useTypedReducer
- Remove
combineTypedReducer
. UsecombineReducers
with normal reducers &TypedReducer
s. - Remove
MiddlewareBinding
, useTypedMiddleware
. - Remove
combineTypedMiddleware
-- no longer needed! Just create a normalList<Middleware<State>>
!
- Ensure the repo is 100% healthy.
- Add the
distinct
option. If set to true, the Store will not emit onChange events if the new State that is returned from your [reducer] in response to an Action is equal to the previous state. False by default.
- Use absolute urls to fix broken links in documentation on Pub.
- Add MOAR documentation
- Add type-safe
combineTypedReducers
andcombineTypedMiddleware
functions
- Add documentation highlighting the redux ecosystem
- Breaking API Changes:
Reducer
is now atypedef
. UseReducerClass<State>
if you'd like to continue to use a class interface.Middleware
is now atypedef
. UseMiddlewareClass<State>
as a replacement for the oldMiddleware<State, Action>
- A
teardown
method has been added. Use it to shut down the store in the middle of your application lifecycle if you no longer need the store.
- Added more docs