Skip to content
This repository was archived by the owner on May 23, 2024. It is now read-only.

Releases: ricardoarchive/ricardo-simple-redux

v5.0.0

20 Jan 16:49

Choose a tag to compare

Breaking change

The library does not bundle babel-polyfill. Polyfilling should be done by the app.

Bugfix for actionFactory

07 Nov 13:12

Choose a tag to compare

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.