Releases: reduxjs/redux-devtools
Releases · reduxjs/redux-devtools
v3.0.2
- Ensures that when old (pre Redux 3.1) and new (post Redux 3.1) styles of applying store enhancers are mixed, enhancers aren't lost (related: reduxjs/redux#1302, reduxjs/redux#1294)
v3.0.1
v3.0.0
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!
v3.0.0-beta-3
- Performance improvement: toggling actions now only recomputes actions that are necessary to recompute (43bf473)
v3.0.0-beta-2
Breaking Changes
React 0.14 is required
By popular request.
API is totally different
Instead of describing the migration in detail, we will point you to examples on the next
branch.
There are a few highlights:
- The internal monitor API has changed so existing monitors need updating (#134)
- The log monitor is now extracted into https://github.com/gaearon/redux-devtools-log-monitor
- There is a new “dock” monitor that lets you dock any single other monitor https://github.com/gaearon/redux-devtools-dock-monitor
- The monitors now have to export a static
reducer
property and receive their own state inmonitorState
- The monitors can now be nested (as seen in https://github.com/gaearon/redux-devtools-dock-monitor)
- When
persistState()
is used, monitors' state (e.g. dock size and position, log scroll offset) is preserved between reloads
The setup we encourage you to try is in the examples:
import React from 'react';
import { createDevTools } from 'redux-devtools';
import LogMonitor from 'redux-devtools-log-monitor';
import DockMonitor from 'redux-devtools-dock-monitor';
export default createDevTools(
<DockMonitor toggleVisibilityKey='H'
changePositionKey='Q'>
<LogMonitor />
</DockMonitor>
);
(Don't forget to change configureStore.js
too to use the new enhancer.)
However, in the future, we will provide different “container” monitors in addition to DockMonitor
—for example, a monitor based on Subdivide.
Hopefully it's faster
Despite the new features, there should be some better optimizations in place. Just performing actions in your app should be faster. However the only way to find out is to try 3.0.0-beta-3 and let us know in #132! Feedback very needed at this point.