This repository was archived by the owner on May 23, 2024. It is now read-only.
Releases: ricardoarchive/ricardo-simple-redux
Releases · ricardoarchive/ricardo-simple-redux
v5.0.0
Bugfix for actionFactory
Using needsUpdate within the simpleRedux.actionFactory previously failed with an error message:
const action = simpleRedux.actionFactory('action', {
needsUpdate: () => (state) => {
return false
},
...
})
This is fixed now. A test has been added.