Releases: gaearon/redux-devtools-log-monitor
Releases · gaearon/redux-devtools-log-monitor
v1.3.0
- Fix PropTypes deprecation warnings react >= 15.5.0 (#65)
- Use theme color for changed data
v1.2.0
- Shift toggle - hold shift key to toggle multiple actions (#47) .
- Hide button bar - set
hideMainButtons
prop to true
to show only the logs without the top button bar.
v1.1.1
Revert the previous breaking change. Now expandActionRoot
and expandStateRoot
don't expand the whole object, and are true
by default.
v1.1.0
### Breaking
expandActionRoot
and expandStateRoot
properties are now false
by default. When set to true
, the whole object gets expanded (not only the root as before).
Identify actions from "the future" when time travelling
Big thanks to @jrullmann for describing it in reduxjs/redux-devtools#295.
Mark the state's values which were changed
To use it, set the new markStateDiff
property to true
. Keep in mind that it affects the performance significantly! You might also want to set expandStateRoot
to true
as well when enabling it.
Misc
- Update
react-json-tree
to 0.10
(#54)
select
property is not required (#57)
- Consider
null
as a valid type (#55)
v1.0.11
- Update
react-json-tree
and fix a deprecation warning (#51, #52)
v1.0.10
- Performance optimizations to avoid wasted renders (#48)
v1.0.9
- Better support for
Symbol
action types (#29)
v1.0.8
- Update
react-json-tree
. The new version has a bigger click area and has a neat way of displaying large states:
v1.0.7
- Prevents an unnecessary propType warning on React 15
v1.0.6
- Add React 15 compatibility
- Warn but not throw when the monitor is rendered without being included in the store configuration (#36)