Releases: reduxjs/redux-toolkit
Releases · reduxjs/redux-toolkit
v0.4.0-0: TypeScript rewrite test release
Per #73 , we've been rewriting redux-starter-kit using TypeScript. This is a preview release to see if there are any issues from the TS rewrite.
This build is available on NPM as tag redux-starter-kit@ts-next. Please try it out, especially in TS apps, and let us know if there are any issues.
v0.3.2
v0.3.1
Fixed two issues with serializableStateInvariantMiddleware:
nullwas not being accepted as a plain serializable valueisSerializablewas not being passed down through the recursive calls toisPlain
v0.3.0
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).