Releases: gaearon/redux-devtools-log-monitor
Releases · gaearon/redux-devtools-log-monitor
v1.0.5
v1.0.4
v1.0.3
- Bumps react-json-tree dependency
v1.0.2
v1.0.1
v1.0.0-beta-3
- Fixes the strikeout color
- Remove the unnecessary peer dependency on Redux
v1.0.0-beta-2
- Uses a new props convention with normalized action props (reduxjs/redux-devtools#134)
v1.0.0-beta-1
Everything changed again, but we're closing in on the final DevTools vNext API.
This version also contains major performance improvements.
For now, keep track in reduxjs/redux-devtools#132.
v1.0.0-alpha-4
Breaking Change
Pretty much all interaction with Redux is changed. As it's still alpha, there isn't much to describe right now—better follow along in reduxjs/redux-devtools#132!
v1.0.0-alpha-3
Breaking Change
The monitor now has its own reducer and actions. This replaces the need for setMonitorState
which was clumsy (reduxjs/redux-devtools#122). This is also a step towards composable monitors.
The visibleOnLoad
prop is now removed. Instead, you are supposed to pass monitor's reducer to devTools
store enhancer (only available since [email protected]
):
import { createMonitorReducer } from 'redux-devtools-log-monitor';
const finalCreateStore = compose(
applyMiddleware(thunk),
devTools(createMonitorReducer({
isVisibleOnLoad: true // <------------------- you can now configure initial visibility here
})),
persistState(window.location.href.match(/[?&]debug_session=([^&]+)\b/))
)(createStore);