Releases: contactually/redux-capacitor
Releases · contactually/redux-capacitor
Minor patch for race condition
Release Notes
Minor patch to address race condition preventing default filters from being applied to initial entities mount
Documentation updates, Minor patch
v0.8.1 v0.8.1
v0.8.0: Adds preliminary & experimental websocket support
New Features:
- Adds a new
actions.D.pushEntityUpdate
action, which merges new entity data directly to the store. For use with websockets.
Breaking Changes:
None
v0.7.0: Adds `type` to passed props
New Features:
- The HOC will now pass the
type
of the container to it's child via props. - Improved spec coverage
v0.6.0: Add resetContainer action to HOC
New Features:
- The Entities HOC now passes down a
resetContainer
action, which resets the container to its initial state when called.
Breaking:
updateFilters
no longer takes optionresetContainer
. You should callresetContainer
beforeupdateFilters
instead.
Support React 16
- Moves react to peer dependencies
- Will still work with React 15, just runs the test suite against react 16.
v0.4.0: Retain order of keys in nested maps
Non-Breaking Changes:
- Uses OrderedMap in place of Map for nested object properties of entities, to preserve order of keys in an object.
Breaking Changes:
none
v0.3.0: Update to normalizr v3
Breaking changes:
- requires normalizr ^3.2.4
arrayOf(schema)
has been deprecated. Use[schema]
instead.- see normalizr docs for any additional functionality: https://github.com/paularmstrong/normalizr
v0.2.0: Better EntitiesConfig
- New, simpler EntitiesConfig.configure({})
- Moves
asUser
(redeye) logic out of entities package and into the frontend repo (where it belongs)