v3.0.0-beta-2
Pre-release
Pre-release
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.