This repository has been archived by the owner on Dec 6, 2023. It is now read-only.
Releases: infinitered/reactotron-redux
Releases · infinitered/reactotron-redux
v3.1.3
v3.1.2
3.1.2 (2019-09-19)
Bug Fixes
- Add a new API for how to register the redux store to fix an issue with dispatching from reactotron into the middleware. (bdd8702)
The idea of the API change (to be documented before full release):
Current:
const store = createStore(
rootReducer,
compose(
middleware,
Reactotron.createEnhancer()
)
)
New:
const store = createStore(
rootReducer,
compose(
middleware,
Reactotron.createEnhancer(true)
)
)
Reactotron.setReduxStore(store)
v3.1.2-beta.1
3.1.2-beta.1 (2019-08-25)
Bug Fixes
- Add a new API for how to register the redux store to fix an issue with dispatching from reactotron into the middleware. (bdd8702)
The idea of the API change (to be documented before full release):
Current:
const store = createStore(
rootReducer,
compose(
middleware,
Reactotron.createEnhancer()
)
)
New:
const store = createStore(
rootReducer,
compose(
middleware,
Reactotron.createEnhancer(true)
)
)
Reactotron.setReduxStore(store)
v3.1.1
v3.1.0
v3.1.0-beta.3
v3.1.0-beta.2
v3.1.0-beta.1
v3.0.0
3.0.0 (2019-03-02)
Bug Fixes
- Don't try and send subscriptions if we don't have a store. (7219574)
Features
- Rewrite library over to Typescript (e24d332)
BREAKING CHANGES
- This rewrites the library over to TypeScript and updates the API used for hooking up reactotron to redux. In doing the rewrite the way you wire up the store changed. Please see https://github.com/infinitered/reactotron/blob/master/docs/plugin-redux.md for updated instructions. The change is minimal and should only require changing from calling
createStore
on Reactotron to passing the result of a call tocreateEnhancer()
off Reactotron.
v3.0.0-beta.3
3.0.0-beta.3 (2019-02-27)
Bug Fixes
- Don't try and send subscriptions if we don't have a store. (7219574)