File: CHANGELOG.md

package info (click to toggle)
node-redux-devtools 3.13.1~git20230831-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 13,868 kB
  • sloc: javascript: 7,775; makefile: 20
file content (28 lines) | stat: -rw-r--r-- 599 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Change Log

## 0.8.0

### Minor Changes

- 421ea476: Upgrade SocketCluster (#1167)

## 0.7.5

### Patch Changes

- @redux-devtools/utils@2.0.0

## 0.7.4

### Patch Changes

- @redux-devtools/utils@1.2.1

## 0.7.0

- Adds ESM build (https://github.com/reduxjs/redux-devtools/pull/997) and switches the default export to a named export in order to ensure that the CommonJS output and the ESM output are [interchangeable](https://rollupjs.org/guide/en/#outputexports):

```diff
- import devToolsEnhancer from '@redux-devtools/remote';
+ import { devToolsEnhancer } from '@redux-devtools/remote';
```