Finally, a stable 3.0 release! There are just a couple of changes since the latest beta:
- The monitor API has changed: the
reducer
static method must now be calledupdate
, and its signature has changed from(state, action, props) => state
to(props, state, action) => state
. This should be easy to fix in any monitor. - We now have a much more detailed README, both for Redux DevTools and two its “official” monitors:
LogMonitor
andDockMonitor
. - Note that
DockMonitor
slightly changed its API before going 1.0: make sure to replacetoggleVisibilityKey='h'
withtoggleVisibilityKey='ctrl-h'
(or whatever you like it), and do the same forchangePositionKey
.
Cheers!