All notable changes to this project will be documented in this file.
- Modified some APIs:
completeState({a:1,b:2}, ['b'])
is nowcompleteState({description: {a: 1}, ignoredTargets: {b: 2})
completeTypes(['LOGIN'], ['AUTH_INIT', 'LOGOUT'])
is nowcompleteTypes({primaryActions: ['LOGIN'], ignoredActions: ['AUTH_INIT', 'LOGOUT'])
- Introduced polling actions
- Deleted modal-related completers
- Deleted
onSubscribe
andonUnsubscribe
effects - Updated dependencies
- Optimized building configuration
- Introduced invisible reducer
- Completers:
completeReducer
,completeTypes
,completeState
- Creators:
createReducer
,createTypes
,createThunkAction
- Effects:
onDelete
,onDeleteByIndex
,onFailure
,onLoaded
,onLoading
,onReadValue
,onSetValue
,onSuccess
- Some basic Injections to customize
baseThunkAction
.
- Added basic effects:
onLoading
,onLoaded
,onSuccess
,onFailure
- Added
createTypes
andcreateReducer
as creators. - Added
completeReducer
andcompleteState
as completers.