Skip to content

Releases: reduxjs/redux-toolkit

v0.3.2

11 Jan 20:07

Choose a tag to compare

Updated package.json so that Webpack no longer resolves to the UMD file when doing a production build of an app see (#55, #68).

v0.3.1

06 Jan 19:59

Choose a tag to compare

Fixed two issues with serializableStateInvariantMiddleware:

  • null was not being accepted as a plain serializable value
  • isSerializable was not being passed down through the recursive calls to isPlain

v0.3.0

24 Dec 03:18

Choose a tag to compare

This update adds two new middleware to the store by default in development mode:

  • redux-immutable-state-invariant, which throws errors if it detects mutations in the state.
  • a homegrown middleware which similarly checks for non-serializable values in dispatched actions and store state, and prints console errors with the key path and value if any are found.

These should help detect issues during development.

Also, now that the Redux DevTools Extension has an action stack trace pane included, we enable capturing those during development.

Finally, we've updated to the latest versions of immer (1.9.3) and selectorator (4.0.1).