Skip to content

v3.0.0-beta-2

Pre-release
Pre-release
Compare
Choose a tag to compare
@gaearon gaearon released this 17 Oct 01:21

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 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.