redux 3.0.0 copy "redux: ^3.0.0" to clipboard
redux: ^3.0.0 copied to clipboard

outdated

Redux for Dart

3.0.0 #

  • Dart 2 support
  • Remove ReducerBinding, use TypedReducer
  • Remove combineTypedReducer. Use combineReducers with normal reducers & TypedReducers.
  • Remove MiddlewareBinding, use TypedMiddleware.
  • Remove combineTypedMiddleware -- no longer needed! Just create a normal List<Middleware<State>>!

2.1.1 #

  • Ensure the repo is 100% healthy.

2.1.0 #

  • 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.

2.0.4 #

  • Use absolute urls to fix broken links in documentation on Pub.

2.0.3 #

  • Add MOAR documentation

2.0.2 #

  • Add type-safe combineTypedReducers and combineTypedMiddleware functions

2.0.1 #

  • Add documentation highlighting the redux ecosystem

2.0.0 #

  • Breaking API Changes:
    • Reducer is now a typedef. Use ReducerClass<State> if you'd like to continue to use a class interface.
    • Middleware is now a typedef. Use MiddlewareClass<State> as a replacement for the old Middleware<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