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 visible (Hide)

redux-devtools - @redux-devtools/[email protected]

Published by github-actions[bot] 11 months ago

Major Changes

  • 158ba2c: Replace jss with Emotion in inspector-monitor. @emotion/react is now a required peer dependency.

Patch Changes

redux-devtools - @redux-devtools/[email protected]

Published by github-actions[bot] 11 months ago

Patch Changes

redux-devtools - @redux-devtools/[email protected]

Published by github-actions[bot] 11 months ago

Minor Changes

  • a3f86a42: Add Redux 5 to peerDependency range of extension package
redux-devtools - @redux-devtools/[email protected]

Published by github-actions[bot] 12 months ago

Patch Changes

  • 262ea85c: Remove unnecessary exported functions from instrument
redux-devtools - @redux-devtools/[email protected]

Published by github-actions[bot] 12 months ago

Patch Changes

redux-devtools - @redux-devtools/[email protected]

Published by github-actions[bot] 12 months ago

Patch Changes

  • 65205f90: Replace Action with Action
  • Updated dependencies [65205f90]
redux-devtools - @redux-devtools/[email protected]

Published by github-actions[bot] 12 months ago

Patch Changes

  • 65205f90: Replace Action with Action
  • Updated dependencies [65205f90]
redux-devtools - @redux-devtools/[email protected]

Published by github-actions[bot] about 1 year ago

Patch Changes

  • 7e6d0438: Transform for await...of syntax for @redux-devtools/remote to support Hermes Engine
redux-devtools - @redux-devtools/[email protected]

Published by github-actions[bot] about 1 year ago

Patch Changes

redux-devtools - @redux-devtools/[email protected]

Published by github-actions[bot] about 1 year ago

Major Changes

  • e57bcb39: The UMD bundle now exports the same thing as the library and includes the CSS in a sperate file. Therfore, the new usage is:

    <!doctype html>
    <html>
      <head>
        <meta charset="utf-8" />
        <title>Redux DevTools</title>
    +   <link href="/redux-devtools-app.min.css" rel="stylesheet" />
      </head>
      <body>
        <div id="root"></div>
        <script src="/react.production.min.js"></script>
        <script src="/react-dom.production.min.js"></script>
        <script src="/redux-devtools-app.min.js"></script>
        <script src="/port.js"></script>
        <script>
          const container = document.querySelector('#root');
    -     const element = React.createElement(ReduxDevToolsApp, {
    +     const element = React.createElement(ReduxDevToolsApp.Root, {
            socketOptions: {
              hostname: location.hostname,
              port: reduxDevToolsPort,
              autoReconnect: true,
            },
          });
          ReactDOM.createRoot(container).render(element);
        </script>
      </body>
    </html>
    
redux-devtools - Redux DevTools Extension v3.1.3

Published by Methuselah96 about 1 year ago

redux-devtools - Redux DevTools Extension v3.1.2

Published by Methuselah96 about 1 year ago

  • Fix extension in Firefox and Chrome Incognito (#1486)
redux-devtools - @redux-devtools/[email protected]

Published by github-actions[bot] about 1 year ago

Major Changes

  • 57751ff9: Add react-dom peerDependency and bump react peerDependency to ^16.8.0 || ^17.0.0 || ^18.0.0

Patch Changes

redux-devtools - Redux DevTools Extension v3.1.1

Published by Methuselah96 about 1 year ago

  • Increase min-width for popup (#1468)
  • Replace react-dragula with dnd-kit (#1451)
    • After dragging action into new position, it temporarily puts the action back in its initial position until the actions have been successfully reordered
  • Add option to sort state tree (#1264)
redux-devtools - @redux-devtools/[email protected]

Published by github-actions[bot] about 1 year ago

Patch Changes

  • fe32709c: Update jsondiffpatch to fix bundling issues.
redux-devtools - @redux-devtools/[email protected]

Published by github-actions[bot] about 1 year ago

Patch Changes

  • fe32709c: Update jsondiffpatch to fix bundling issues.
  • Updated dependencies [fe32709c]
redux-devtools - @redux-devtools/[email protected]

Published by github-actions[bot] about 1 year ago

Patch Changes

redux-devtools - Redux DevTools Extension v3.0.19

Published by Methuselah96 over 1 year ago

redux-devtools - @redux-devtools/[email protected]

Published by github-actions[bot] almost 2 years ago

Minor Changes

  • 421ea476: Upgrade SocketCluster (#1167)
redux-devtools - @redux-devtools/[email protected]

Published by github-actions[bot] almost 2 years ago

Patch Changes

  • a0716740: Fix types for other exports from @redux-devtools/extension.