This repository was archived by the owner on Oct 16, 2025. It is now read-only.
- Notifications
You must be signed in to change notification settings - Fork1
Releases: CodingZeal/zeal-redux-utils
Releases · CodingZeal/zeal-redux-utils
v2.0.0
- Update to flux-standard-action 2.0.0 (#14), drops support for Symbols as action types
Assets2
Uh oh!
There was an error while loading.Please reload this page.
v1.0.0
Releasing 0.3.2 as 1.0.0 with no changes.
Assets2
Uh oh!
There was an error while loading.Please reload this page.
v0.3.2
Assets2
Uh oh!
There was an error while loading.Please reload this page.
v0.3.1
Changed
createReducernow allows the caller to specify a whitelist function that can bypass theflux standard action (FSA) check. Some external libraries dispatch actions that do not conform to the FSA spec and we don't want those to trigger theNonStandardActionexception. The whitelist function should take an action and returntrueif it should bypass the FSA check, or false if it should be checked. Use it as follows:createReducer(initialState, actionHandlers, { allowNonStandardActionIf: whitelistFunction }). (#9)
Assets2
Uh oh!
There was an error while loading.Please reload this page.
v0.3.0
Changed
- Check for flux standard actions (FSAs) in reducers created by
createReducer. The check is performed only in development mode. Non-FSA actions raise aNonStandardActionexception. Seeflux-standard-action for a definition of what is an FSA. (#6)
Added
- Add
nullActionfor use in reducer specs. AnullActionis a flux-standard-action-compliant action that shouldn't match any of your normal actions. It can be used to initialize the state in a reducer spec. e.gconst initialState = reducer(undefined, nullAction)(#7)
Removed
- Cleaned non-essential files out of the npm package to reduce package size. (#8)
Internal
Assets2
Uh oh!
There was an error while loading.Please reload this page.
v0.2.0
Added
- Add
globalizeSelectorsfor adapting selectors that work on a slice of the state tree to allow them to work on the entire state tree. SeeGlobalizing Redux Selectors for more information. (#2,#5)
Assets2
Uh oh!
There was an error while loading.Please reload this page.
v0.1.1
Added
- [Internal only] Tests for
createActionTypesandcreateReducer
Assets2
Uh oh!
There was an error while loading.Please reload this page.
v0.1.0
Added
- Welcome to the world!
- Add
createActionTypesfor creating namespaced Redux action type constants. - Add
createReducerfor creating Redux reducers without using case statements.
Assets2
Uh oh!
There was an error while loading.Please reload this page.