Skip to content

Releases: reduxjs/redux-devtools

v3.0.2

28 Jan 19:16
Compare
Choose a tag to compare
  • 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

27 Dec 00:37
Compare
Choose a tag to compare
  • Adds better warnings for common mistakes (#211)
  • Attempts to provide better support for source maps for thrown errors (#208, #193, #194)

v3.0.0

14 Dec 04:35
Compare
Choose a tag to compare

Finally, a stable 3.0 release! There are just a couple of changes since the latest beta:

  1. The monitor API has changed: the reducer static method must now be called update, and its signature has changed from (state, action, props) => state to (props, state, action) => state. This should be easy to fix in any monitor.
  2. We now have a much more detailed README, both for Redux DevTools and two its “official” monitors: LogMonitor and DockMonitor.
  3. Note that DockMonitor slightly changed its API before going 1.0: make sure to replace toggleVisibilityKey='h' with toggleVisibilityKey='ctrl-h' (or whatever you like it), and do the same for changePositionKey.

Cheers!

v3.0.0-beta-3

17 Oct 12:54
Compare
Choose a tag to compare
v3.0.0-beta-3 Pre-release
Pre-release
  • Performance improvement: toggling actions now only recomputes actions that are necessary to recompute (43bf473)

v3.0.0-beta-2

17 Oct 01:21
Compare
Choose a tag to compare
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 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.

v2.1.5

27 Sep 17:29
Compare
Choose a tag to compare

Massive performance improvement.

Performing an action was O(n) with DevTools enabled, but it's O(1) now. Special thanks to @ellbee for contributing the tests that made me confident about this change.

#81, reduxjs/redux#691, #113, #88, #133

v2.1.4

25 Sep 22:23
Compare
Choose a tag to compare
  • When a reducer throws an error, return the last non-undefined state instead of undefined (#106, #120)
  • Adds theme to propTypes of the default monitor (#119)

v2.1.3

24 Sep 13:41
Compare
Choose a tag to compare
  • Update the internal dependencies

v2.1.2

12 Sep 23:59
Compare
Choose a tag to compare
  • Declare compatibility with Redux 3.x in peerDependencies

v2.1.1

12 Sep 13:58
Compare
Choose a tag to compare
  • Avoid some of the React 0.14 warnings (#100, #103)
  • Adds actionDeserializer callback to persistState (#101)