redux-devtools

DevTools for Redux with hot reloading, action replay, and customizable UI

MIT License

Downloads
9.8M
Stars
14K
Committers
119

Bot releases are hidden (Show)

redux-devtools - [email protected]

Published by Methuselah96 about 4 years ago

0.12.0 (2020-07-30)

Features

redux-devtools - [email protected]

Published by Methuselah96 about 4 years ago

0.12.0 (2020-07-30)

Bug Fixes

Features

BREAKING CHANGES

  • drop support for react@<16.3.0
redux-devtools - [email protected]

Published by Methuselah96 over 4 years ago

3.6.0

Features

redux-devtools - v3.5.0

Published by zalmoxisus almost 6 years ago

  • Adds compatibility with react-redux@6 #417.

This is last tag version for redux-devtools package. We're switching to monorepo and will publish releases for the extension and packages. Thee tags will be moved to redux-devtools package CHANGELOG.

redux-devtools - v3.4.2

Published by zalmoxisus almost 6 years ago

  • Add support for Redux 4 #400, #409
  • Include Typings in package and fix missing instrument options #402
redux-devtools - v3.4.0

Published by zalmoxisus over 7 years ago

Use prop-types to fix warnings for React 15.3. #358

redux-devtools - v3.3.2

Published by zalmoxisus almost 8 years ago

redux-devtools - v3.3.1

Published by gaearon over 8 years ago

redux-devtools - v3.3.0

Published by gaearon over 8 years ago

redux-devtools - v3.2.0

Published by gaearon over 8 years ago

redux-devtools - v3.1.1

Published by gaearon over 8 years ago

  • Show the error message in the console rather than just the stack trace when a reducer throws (#240)
redux-devtools - v3.1.0

Published by gaearon over 8 years ago

  • Uses Lodash 4.2.0 instead of 3.x (#237)
  • Adds a bunch of sanity checks (#232, #235, 8316de09703f9bef13c5edad45c0f173e7a0919e)
redux-devtools - v3.0.2

Published by gaearon over 8 years ago

redux-devtools - v3.0.1

Published by gaearon almost 9 years ago

redux-devtools - v3.0.0

Published by gaearon almost 9 years ago

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!

redux-devtools - v3.0.0-beta-3

Published by gaearon about 9 years ago

redux-devtools - v3.0.0-beta-2

Published by gaearon about 9 years ago

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 https://github.com/gaearon/redux-devtools/pull/132! Feedback very needed at this point.

redux-devtools - v2.1.5

Published by gaearon about 9 years ago

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.

https://github.com/gaearon/redux-devtools/issues/81, https://github.com/rackt/redux/issues/691, https://github.com/gaearon/redux-devtools/issues/113, https://github.com/gaearon/redux-devtools/issues/88, https://github.com/gaearon/redux-devtools/pull/133

redux-devtools - v2.1.4

Published by gaearon about 9 years ago

  • 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)
redux-devtools - v2.1.3

Published by gaearon about 9 years ago

  • Update the internal dependencies