Redux Recompose Versions Save

A Redux utility belt for reducers and actions. Inspired by acdlite/recompose.

v3.0.0

3 years ago

Summary

Version 3 is finally here!

Introduces some changes in:

  • Modified some APIs: completeState({a:1,b:2}, ['b']) is now completeState({description: {a: 1}, ignoredTargets: {b: 2}) completeTypes(['LOGIN'], ['AUTH_INIT', 'LOGOUT']) is now completeTypes({primaryActions: ['LOGIN'], ignoredActions: ['AUTH_INIT', 'LOGOUT'])
  • Introduced polling actions. You can read more about them here
  • Deleted modal-related completers
  • Deleted onSubscribe and onUnsubscribe effects
  • Updated dependencies
  • Optimized building configuration

Check the docs for details.

v1.0.0

6 years ago

Summary

First official release !

Introduces basic operators:

  • Completers: completeReducer, completeTypes, completeState
  • Creators: createReducer, createTypes, createThunkAction
  • Effects: onDelete, onDeleteByIndex, onFailure, onLoaded, onLoading, onReadValue, onSetValue, onSuccess
  • Some basic Injections to customize baseThunkAction.

Check the docs for details.

v0.1.0

6 years ago

Changelog

  • Added basic effects: onLoading, onLoaded, onSuccess, onFailure
  • Added createTypes and createReducer as creators.
  • Added completeReducer and completeState as completers.

On next release:

  • More effects
  • completeTypes
  • createThunkAction, composeInjections and some basic injectors.