Skip to content

Releases: reduxjs/redux-devtools

@redux-devtools/[email protected]

17 Sep 02:37
840aa45
Compare
Choose a tag to compare

Major Changes

  • e57bcb3: 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 Extension v3.1.3

15 Sep 03:12
f523d06
Compare
Choose a tag to compare

Redux DevTools Extension v3.1.2

13 Sep 02:47
ee64102
Compare
Choose a tag to compare
  • Fix extension in Firefox and Chrome Incognito (#1486)

Redux DevTools Extension v3.1.1

28 Aug 03:01
ffbf132
Compare
Choose a tag to compare
  • 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/[email protected]

28 Aug 03:03
ffbf132
Compare
Choose a tag to compare

Major Changes

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

Patch Changes

@redux-devtools/[email protected]

21 Aug 01:19
135a676
Compare
Choose a tag to compare

Patch Changes

  • fe32709: Update jsondiffpatch to fix bundling issues.

@redux-devtools/[email protected]

21 Aug 01:19
135a676
Compare
Choose a tag to compare

Patch Changes

@redux-devtools/[email protected]

19 Aug 03:39
6c44727
Compare
Choose a tag to compare

Patch Changes

Redux DevTools Extension v3.0.19

06 Mar 13:33
0bf0c4e
Compare
Choose a tag to compare

Fix responsive layout (#1365)

@redux-devtools/[email protected]

25 Jan 00:47
9a0af42
Compare
Choose a tag to compare

Minor Changes