Merge branch 'main' into roman/react-json-tree-remove-unsafe

This commit is contained in:
Roman Shtylman 2022-01-30 18:47:03 -08:00 committed by GitHub
commit 03a8af7e8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
71 changed files with 1344 additions and 1405 deletions

View File

@ -3,7 +3,7 @@
"changelog": "@changesets/cli/changelog", "changelog": "@changesets/cli/changelog",
"commit": false, "commit": false,
"linked": [], "linked": [],
"access": "restricted", "access": "public",
"baseBranch": "main", "baseBranch": "main",
"updateInternalDependencies": "patch", "updateInternalDependencies": "patch",
"ignore": [] "ignore": []

View File

@ -1,5 +0,0 @@
---
'@redux-devtools/extension': patch
---
Fix files included in publish

View File

@ -1,5 +0,0 @@
---
'@redux-devtools/ui': patch
---
Fix failing to bundle fonts

View File

@ -30,7 +30,7 @@ jobs:
uses: changesets/action@v1 uses: changesets/action@v1
with: with:
version: yarn changeset version version: yarn changeset version
publish: yarn changeset publish publish: yarn release
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

View File

@ -1,4 +0,0 @@
# Change log
This project adheres to [Semantic Versioning](http://semver.org/).
See all notable changes on [Releases](https://github.com/gaearon/redux-devtools/releases) page.

View File

@ -1,4 +0,0 @@
# Change Log
This project adheres to [Semantic Versioning](http://semver.org/).
Every release, along with the migration instructions, is documented on the Github [Releases](https://github.com/zalmoxisus/redux-devtools-extension/releases) page.

View File

@ -1,7 +1,7 @@
{ {
"private": true, "private": true,
"name": "remotedev-redux-devtools-extension", "name": "remotedev-redux-devtools-extension",
"version": "3.0.6", "version": "3.0.9",
"description": "Redux Developer Tools for debugging application state changes.", "description": "Redux Developer Tools for debugging application state changes.",
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/extension", "homepage": "https://github.com/reduxjs/redux-devtools/tree/master/extension",
"license": "MIT", "license": "MIT",
@ -64,7 +64,7 @@
"@babel/register": "^7.16.9", "@babel/register": "^7.16.9",
"@testing-library/jest-dom": "^5.16.1", "@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2", "@testing-library/react": "^12.1.2",
"@types/chrome": "^0.0.176", "@types/chrome": "^0.0.177",
"@types/lodash": "^4.14.178", "@types/lodash": "^4.14.178",
"@types/react": "^17.0.38", "@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11", "@types/react-dom": "^17.0.11",
@ -76,8 +76,8 @@
"copy-webpack-plugin": "^9.1.0", "copy-webpack-plugin": "^9.1.0",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"css-loader": "^6.5.1", "css-loader": "^6.5.1",
"electron": "^16.0.7", "electron": "^16.0.8",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-airbnb": "^19.0.4", "eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.25.4", "eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1", "eslint-plugin-jsx-a11y": "^6.5.1",
@ -100,6 +100,6 @@
"ts-jest": "^27.1.3", "ts-jest": "^27.1.3",
"typescript": "~4.5.5", "typescript": "~4.5.5",
"webpack": "^5.67.0", "webpack": "^5.67.0",
"webpack-cli": "^4.9.1" "webpack-cli": "^4.9.2"
} }
} }

View File

@ -1,5 +1,5 @@
{ {
"version": "3.0.8", "version": "3.0.9",
"name": "Redux DevTools", "name": "Redux DevTools",
"short_name": "Redux DevTools", "short_name": "Redux DevTools",
"description": "Redux DevTools for debugging application's state changes.", "description": "Redux DevTools for debugging application's state changes.",

View File

@ -1,5 +1,5 @@
{ {
"version": "3.0.8", "version": "3.0.9",
"name": "Redux DevTools", "name": "Redux DevTools",
"manifest_version": 2, "manifest_version": 2,
"description": "Redux Developer Tools for debugging application state changes.", "description": "Redux Developer Tools for debugging application state changes.",

View File

@ -4,9 +4,9 @@
"@babel/core": "^7.16.12", "@babel/core": "^7.16.12",
"@babel/eslint-parser": "^7.16.5", "@babel/eslint-parser": "^7.16.5",
"@changesets/cli": "^2.20.0", "@changesets/cli": "^2.20.0",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.0.0", "eslint-plugin-jest": "^26.0.0",
"eslint-plugin-react": "^7.28.0", "eslint-plugin-react": "^7.28.0",
@ -21,7 +21,8 @@
"build:all": "lerna run build", "build:all": "lerna run build",
"lint:all": "lerna run lint", "lint:all": "lerna run lint",
"test:all": "lerna run test", "test:all": "lerna run test",
"format:check": "prettier --check ." "format:check": "prettier --check .",
"release": "yarn build:all && changeset publish"
}, },
"workspaces": [ "workspaces": [
"extension", "extension",

View File

@ -1,9 +1,6 @@
# Change Log # Change Log
All notable changes to this project will be documented in this file. ## [1.4.0](https://github.com/reduxjs/redux-devtools/compare/d3-state-visualizer@1.3.4...d3-state-visualizer@1.4.0) (2021-03-06)
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.4.0](https://github.com/reduxjs/redux-devtools/compare/d3-state-visualizer@1.3.4...d3-state-visualizer@1.4.0) (2021-03-06)
### Features ### Features

View File

@ -1,18 +0,0 @@
# Change Log
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [0.1.0](https://github.com/reduxjs/redux-devtools/compare/d3-state-visualizer-tree-example@0.0.2...d3-state-visualizer-tree-example@0.1.0) (2021-03-06)
### Features
- **d3-state-visualizer:** convert example to TypeScript ([#641](https://github.com/reduxjs/redux-devtools/issues/641)) ([300b60a](https://github.com/reduxjs/redux-devtools/commit/300b60a8b1f92a6d7c78510a1bea304490aa23be))
## [0.0.2](https://github.com/reduxjs/redux-devtools/compare/d3-state-visualizer-tree-example@0.0.1...d3-state-visualizer-tree-example@0.0.2) (2020-09-07)
**Note:** Version bump only for package d3-state-visualizer-tree-example
## 0.0.1 (2020-08-14)
**Note:** Version bump only for package d3-state-visualizer-tree-example

View File

@ -33,18 +33,18 @@
"@babel/preset-env": "^7.16.11", "@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7", "@babel/preset-typescript": "^7.16.7",
"@types/node": "^16.11.21", "@types/node": "^16.11.21",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"babel-loader": "^8.2.3", "babel-loader": "^8.2.3",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"fork-ts-checker-webpack-plugin": "^7.0.0", "fork-ts-checker-webpack-plugin": "^7.0.0",
"html-webpack-plugin": "^5.5.0", "html-webpack-plugin": "^5.5.0",
"ts-node": "^10.4.0", "ts-node": "^10.4.0",
"typescript": "~4.5.5", "typescript": "~4.5.5",
"webpack": "^5.67.0", "webpack": "^5.67.0",
"webpack-cli": "^4.9.1", "webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.3" "webpack-dev-server": "^4.7.3"
} }
} }

View File

@ -61,12 +61,12 @@
"@rollup/plugin-commonjs": "^21.0.1", "@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.1.3", "@rollup/plugin-node-resolve": "^13.1.3",
"@types/ramda": "^0.27.64", "@types/ramda": "^0.27.64",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"rimraf": "^3.0.2", "rimraf": "^3.0.2",
"rollup": "^2.66.0", "rollup": "^2.66.1",
"rollup-plugin-terser": "^7.0.2", "rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.1", "rollup-plugin-typescript2": "^0.31.1",
"tslib": "^2.3.1", "tslib": "^2.3.1",

View File

@ -1,9 +1,15 @@
# Change Log # Change Log
All notable changes to this project will be documented in this file. ## 2.0.0
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.3.0](https://github.com/reduxjs/redux-devtools/compare/d3tooltip@1.2.3...d3tooltip@1.3.0) (2021-03-06) - 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 d3tooltip from 'd3tooltip';
+ import { tooltip } from 'd3tooltip';
```
## [1.3.0](https://github.com/reduxjs/redux-devtools/compare/d3tooltip@1.2.3...d3tooltip@1.3.0) (2021-03-06)
### Features ### Features

View File

@ -53,13 +53,13 @@
"@rollup/plugin-node-resolve": "^13.1.3", "@rollup/plugin-node-resolve": "^13.1.3",
"@types/d3": "^3.5.46", "@types/d3": "^3.5.46",
"@types/ramda": "^0.27.64", "@types/ramda": "^0.27.64",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"d3": "^3.5.17", "d3": "^3.5.17",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"rimraf": "^3.0.2", "rimraf": "^3.0.2",
"rollup": "^2.66.0", "rollup": "^2.66.1",
"rollup-plugin-terser": "^7.0.2", "rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.1", "rollup-plugin-typescript2": "^0.31.1",
"tslib": "^2.3.1", "tslib": "^2.3.1",

View File

@ -1,9 +1,15 @@
# Change Log # Change Log
All notable changes to this project will be documented in this file. ## 2.0.0
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.5.0](https://github.com/reduxjs/redux-devtools/compare/map2tree@1.4.2...map2tree@1.5.0) (2021-03-06) - 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 map2tree from 'map2tree';
+ import { map2tree } from 'map2tree';
```
## [1.5.0](https://github.com/reduxjs/redux-devtools/compare/map2tree@1.4.2...map2tree@1.5.0) (2021-03-06)
### Features ### Features

View File

@ -57,15 +57,15 @@
"@rollup/plugin-node-resolve": "^13.1.3", "@rollup/plugin-node-resolve": "^13.1.3",
"@types/jest": "^27.4.0", "@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178", "@types/lodash": "^4.14.178",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.0.0", "eslint-plugin-jest": "^26.0.0",
"immutable": "^4.0.0", "immutable": "^4.0.0",
"jest": "^27.4.7", "jest": "^27.4.7",
"rimraf": "^3.0.2", "rimraf": "^3.0.2",
"rollup": "^2.66.0", "rollup": "^2.66.1",
"rollup-plugin-terser": "^7.0.2", "rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.1", "rollup-plugin-typescript2": "^0.31.1",
"ts-jest": "^27.1.3", "ts-jest": "^27.1.3",

View File

@ -1,9 +1,10 @@
# Change Log # Change Log
All notable changes to this project will be documented in this file. ## 0.9.0
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [0.8.0](https://github.com/reduxjs/redux-devtools/compare/react-base16-styling@0.7.0...react-base16-styling@0.8.0) (2020-09-07) - Adds ESM build (https://github.com/reduxjs/redux-devtools/pull/997).
## [0.8.0](https://github.com/reduxjs/redux-devtools/compare/react-base16-styling@0.7.0...react-base16-styling@0.8.0) (2020-09-07)
### Bug Fixes ### Bug Fixes
@ -14,7 +15,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
- **redux-devtools-inspector:** convert to TypeScript ([#623](https://github.com/reduxjs/redux-devtools/issues/623)) ([c7b0c7a](https://github.com/reduxjs/redux-devtools/commit/c7b0c7aa6e09f46a36b382ae3ec8e38bd48aeb28)) - **redux-devtools-inspector:** convert to TypeScript ([#623](https://github.com/reduxjs/redux-devtools/issues/623)) ([c7b0c7a](https://github.com/reduxjs/redux-devtools/commit/c7b0c7aa6e09f46a36b382ae3ec8e38bd48aeb28))
- **redux-devtools-serialize:** convert to TypeScript ([#621](https://github.com/reduxjs/redux-devtools/issues/621)) ([d586f19](https://github.com/reduxjs/redux-devtools/commit/d586f1955a3648883107f8c981ee17eeb4c013a3)) - **redux-devtools-serialize:** convert to TypeScript ([#621](https://github.com/reduxjs/redux-devtools/issues/621)) ([d586f19](https://github.com/reduxjs/redux-devtools/commit/d586f1955a3648883107f8c981ee17eeb4c013a3))
# 0.7.0 (2020-08-14) ## 0.7.0 (2020-08-14)
- feat(react-base16-styling)!: add invertTheme helper (#565) ([92d16e4](https://github.com/reduxjs/redux-devtools/commit/92d16e4f56fbeaf06966afd9024ed4b58ba98ecb)), closes [#565](https://github.com/reduxjs/redux-devtools/issues/565) - feat(react-base16-styling)!: add invertTheme helper (#565) ([92d16e4](https://github.com/reduxjs/redux-devtools/commit/92d16e4f56fbeaf06966afd9024ed4b58ba98ecb)), closes [#565](https://github.com/reduxjs/redux-devtools/issues/565)

View File

@ -57,9 +57,9 @@
"@types/color": "^3.0.2", "@types/color": "^3.0.2",
"@types/jest": "^27.4.0", "@types/jest": "^27.4.0",
"@types/lodash.curry": "^4.1.6", "@types/lodash.curry": "^4.1.6",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.0.0", "eslint-plugin-jest": "^26.0.0",
"jest": "^27.4.7", "jest": "^27.4.7",

View File

@ -1,15 +1,21 @@
# Change Log # Change Log
All notable changes to this project will be documented in this file. ## 0.5.0
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [0.4.0](https://github.com/reduxjs/redux-devtools/compare/react-dock@0.3.0...react-dock@0.4.0) (2021-03-06) - 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 Dock from 'react-dock';
+ import { Dock } from 'react-dock';
```
## [0.4.0](https://github.com/reduxjs/redux-devtools/compare/react-dock@0.3.0...react-dock@0.4.0) (2021-03-06)
### Features ### Features
- update peer dependencies to allow react@^17 ([#703](https://github.com/reduxjs/redux-devtools/issues/703)) ([2aaa9c1](https://github.com/reduxjs/redux-devtools/commit/2aaa9c10a383e3a7ab20b3ab14639781fd7bb2eb)) - update peer dependencies to allow react@^17 ([#703](https://github.com/reduxjs/redux-devtools/issues/703)) ([2aaa9c1](https://github.com/reduxjs/redux-devtools/commit/2aaa9c10a383e3a7ab20b3ab14639781fd7bb2eb))
# 0.3.0 (2020-09-07) ## 0.3.0 (2020-09-07)
### Features ### Features

View File

@ -27,11 +27,11 @@
"@types/react": "^17.0.38", "@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11", "@types/react-dom": "^17.0.11",
"@types/styled-components": "^5.1.21", "@types/styled-components": "^5.1.21",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"babel-loader": "^8.2.3", "babel-loader": "^8.2.3",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.28.0", "eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0", "eslint-plugin-react-hooks": "^4.3.0",
@ -40,7 +40,7 @@
"ts-node": "^10.4.0", "ts-node": "^10.4.0",
"typescript": "~4.5.5", "typescript": "~4.5.5",
"webpack": "^5.67.0", "webpack": "^5.67.0",
"webpack-cli": "^4.9.1", "webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.3" "webpack-dev-server": "^4.7.3"
} }
} }

View File

@ -57,9 +57,9 @@
"@types/lodash.debounce": "^4.0.6", "@types/lodash.debounce": "^4.0.6",
"@types/react": "^17.0.38", "@types/react": "^17.0.38",
"@types/react-test-renderer": "^17.0.1", "@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.0.0", "eslint-plugin-jest": "^26.0.0",
"eslint-plugin-react": "^7.28.0", "eslint-plugin-react": "^7.28.0",

View File

@ -1,15 +1,21 @@
# Change Log # Change Log
All notable changes to this project will be documented in this file. ## 0.16.0
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [0.15.0](https://github.com/reduxjs/redux-devtools/compare/react-json-tree@0.14.0...react-json-tree@0.15.0) (2021-03-06) - 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 JSONTree from 'react-json-tree';
+ import { JSONTree } from 'react-json-tree';
```
## [0.15.0](https://github.com/reduxjs/redux-devtools/compare/react-json-tree@0.14.0...react-json-tree@0.15.0) (2021-03-06)
### Features ### Features
- update peer dependencies to allow react@^17 ([#703](https://github.com/reduxjs/redux-devtools/issues/703)) ([2aaa9c1](https://github.com/reduxjs/redux-devtools/commit/2aaa9c10a383e3a7ab20b3ab14639781fd7bb2eb)) - update peer dependencies to allow react@^17 ([#703](https://github.com/reduxjs/redux-devtools/issues/703)) ([2aaa9c1](https://github.com/reduxjs/redux-devtools/commit/2aaa9c10a383e3a7ab20b3ab14639781fd7bb2eb))
# [0.14.0](https://github.com/reduxjs/redux-devtools/compare/react-json-tree@0.13.0...react-json-tree@0.14.0) (2021-03-06) ## [0.14.0](https://github.com/reduxjs/redux-devtools/compare/react-json-tree@0.13.0...react-json-tree@0.14.0) (2021-03-06)
### Bug Fixes ### Bug Fixes
@ -19,7 +25,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
- **react-json-tree:** Add keyPath to getItemString ([#694](https://github.com/reduxjs/redux-devtools/issues/694)) ([85b4b0f](https://github.com/reduxjs/redux-devtools/commit/85b4b0fb04b1d6d95054d5073fa17fa61efc0df3)) - **react-json-tree:** Add keyPath to getItemString ([#694](https://github.com/reduxjs/redux-devtools/issues/694)) ([85b4b0f](https://github.com/reduxjs/redux-devtools/commit/85b4b0fb04b1d6d95054d5073fa17fa61efc0df3))
# [0.13.0](https://github.com/reduxjs/redux-devtools/compare/react-json-tree@0.12.1...react-json-tree@0.13.0) (2020-09-07) ## [0.13.0](https://github.com/reduxjs/redux-devtools/compare/react-json-tree@0.12.1...react-json-tree@0.13.0) (2020-09-07)
### Bug Fixes ### Bug Fixes

View File

@ -1,25 +0,0 @@
# Change Log
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [1.1.2](https://github.com/reduxjs/redux-devtools/compare/react-json-tree-example@1.1.1...react-json-tree-example@1.1.2) (2021-03-06)
**Note:** Version bump only for package react-json-tree-example
## [1.1.1](https://github.com/reduxjs/redux-devtools/compare/react-json-tree-example@1.1.0...react-json-tree-example@1.1.1) (2021-03-06)
**Note:** Version bump only for package react-json-tree-example
# [1.1.0](https://github.com/reduxjs/redux-devtools/compare/react-json-tree-example@1.0.1...react-json-tree-example@1.1.0) (2020-09-07)
### Features
- **redux-devtools:** convert counter example to TypeScript ([#616](https://github.com/reduxjs/redux-devtools/issues/616)) ([f1e3f4f](https://github.com/reduxjs/redux-devtools/commit/f1e3f4f8340dea288de5229006acf9dc1ef1cccf))
- **redux-devtools:** convert todomvc example to TypeScript ([#618](https://github.com/reduxjs/redux-devtools/issues/618)) ([37191e4](https://github.com/reduxjs/redux-devtools/commit/37191e46e600cd9ac2839f0687efb347fc4ef7c1))
## 1.0.1 (2020-08-14)
### Bug Fixes
- **react-json-tree:** fix react-json-tree examples ([#531](https://github.com/gaearon/react-hot-boilerplate/issues/531)) ([0864f28](https://github.com/gaearon/react-hot-boilerplate/commit/0864f281560dcbad1ddb2ab985e23b841771cb8c))

View File

@ -33,11 +33,11 @@
"@types/node": "^16.11.21", "@types/node": "^16.11.21",
"@types/react": "^17.0.38", "@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11", "@types/react-dom": "^17.0.11",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"babel-loader": "^8.2.3", "babel-loader": "^8.2.3",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.28.0", "eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0", "eslint-plugin-react-hooks": "^4.3.0",
@ -46,7 +46,7 @@
"ts-node": "^10.4.0", "ts-node": "^10.4.0",
"typescript": "~4.5.5", "typescript": "~4.5.5",
"webpack": "^5.67.0", "webpack": "^5.67.0",
"webpack-cli": "^4.9.1", "webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.3" "webpack-dev-server": "^4.7.3"
} }
} }

View File

@ -64,9 +64,9 @@
"@types/jest": "^27.4.0", "@types/jest": "^27.4.0",
"@types/react": "^17.0.38", "@types/react": "^17.0.38",
"@types/react-test-renderer": "^17.0.1", "@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.0.0", "eslint-plugin-jest": "^26.0.0",
"eslint-plugin-react": "^7.28.0", "eslint-plugin-react": "^7.28.0",
@ -75,7 +75,7 @@
"react": "^17.0.2", "react": "^17.0.2",
"react-test-renderer": "^17.0.2", "react-test-renderer": "^17.0.2",
"rimraf": "^3.0.2", "rimraf": "^3.0.2",
"rollup": "^2.66.0", "rollup": "^2.66.1",
"rollup-plugin-terser": "^7.0.2", "rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.1", "rollup-plugin-typescript2": "^0.31.1",
"ts-jest": "^27.1.3", "ts-jest": "^27.1.3",

View File

@ -1,37 +1,43 @@
# Change Log # Change Log
All notable changes to this project will be documented in this file. ## 2.0.0
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.0.0-8](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/app@1.0.0-7...@redux-devtools/app@1.0.0-8) (2021-06-11) - 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 DevToolsApp from '@redux-devtools/app';
+ import { Root } from '@redux-devtools/app';
```
## [1.0.0-8](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/app@1.0.0-7...@redux-devtools/app@1.0.0-8) (2021-06-11)
### Bug Fixes ### Bug Fixes
- **app:** fix dependency version of inspector ([#732](https://github.com/reduxjs/redux-devtools/issues/732)) ([30c6971](https://github.com/reduxjs/redux-devtools/commit/30c6971d379c53ec1343a20240b73705751f7445)) - **app:** fix dependency version of inspector ([#732](https://github.com/reduxjs/redux-devtools/issues/732)) ([30c6971](https://github.com/reduxjs/redux-devtools/commit/30c6971d379c53ec1343a20240b73705751f7445))
# [1.0.0-7](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/app@1.0.0-6...@redux-devtools/app@1.0.0-7) (2021-06-11) ## [1.0.0-7](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/app@1.0.0-6...@redux-devtools/app@1.0.0-7) (2021-06-11)
### Bug Fixes ### Bug Fixes
- fix Select types and usages ([#724](https://github.com/reduxjs/redux-devtools/issues/724)) ([07e409d](https://github.com/reduxjs/redux-devtools/commit/07e409de6a1c3d362929d854542df0c1d74ce18e)) - fix Select types and usages ([#724](https://github.com/reduxjs/redux-devtools/issues/724)) ([07e409d](https://github.com/reduxjs/redux-devtools/commit/07e409de6a1c3d362929d854542df0c1d74ce18e))
- **app:** remove unimplemented reports tab ([#731](https://github.com/reduxjs/redux-devtools/issues/731)) ([c4a8fa2](https://github.com/reduxjs/redux-devtools/commit/c4a8fa286cfe3f30133c2f948164001bd2a618ac)) - **app:** remove unimplemented reports tab ([#731](https://github.com/reduxjs/redux-devtools/issues/731)) ([c4a8fa2](https://github.com/reduxjs/redux-devtools/commit/c4a8fa286cfe3f30133c2f948164001bd2a618ac))
# [1.0.0-6](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/app@1.0.0-5...@redux-devtools/app@1.0.0-6) (2021-03-06) ## [1.0.0-6](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/app@1.0.0-5...@redux-devtools/app@1.0.0-6) (2021-03-06)
### Features ### Features
- update peer dependencies to allow react@^17 ([#703](https://github.com/reduxjs/redux-devtools/issues/703)) ([2aaa9c1](https://github.com/reduxjs/redux-devtools/commit/2aaa9c10a383e3a7ab20b3ab14639781fd7bb2eb)) - update peer dependencies to allow react@^17 ([#703](https://github.com/reduxjs/redux-devtools/issues/703)) ([2aaa9c1](https://github.com/reduxjs/redux-devtools/commit/2aaa9c10a383e3a7ab20b3ab14639781fd7bb2eb))
# 1.0.0-5 (2021-03-06) ## 1.0.0-5 (2021-03-06)
**Note:** Version bump only for package @redux-devtools/app **Note:** Version bump only for package @redux-devtools/app
# [1.0.0-4](https://github.com/reduxjs/redux-devtools/compare/redux-devtools-core@1.0.0-3...redux-devtools-core@1.0.0-4) (2020-09-07) ## [1.0.0-4](https://github.com/reduxjs/redux-devtools/compare/redux-devtools-core@1.0.0-3...redux-devtools-core@1.0.0-4) (2020-09-07)
### Bug Fixes ### Bug Fixes
- **redux-devtools-core:** don't mutate source object during stringification ([#627](https://github.com/reduxjs/redux-devtools/issues/627)) ([5259dee](https://github.com/reduxjs/redux-devtools/commit/5259dee601e07c46f8e7af964ab83cb23a4e7b1b)) - **redux-devtools-core:** don't mutate source object during stringification ([#627](https://github.com/reduxjs/redux-devtools/issues/627)) ([5259dee](https://github.com/reduxjs/redux-devtools/commit/5259dee601e07c46f8e7af964ab83cb23a4e7b1b))
# [1.0.0-3](https://github.com/reduxjs/redux-devtools/compare/redux-devtools-core@1.0.0-2...redux-devtools-core@1.0.0-3) (2020-08-14) ## [1.0.0-3](https://github.com/reduxjs/redux-devtools/compare/redux-devtools-core@1.0.0-2...redux-devtools-core@1.0.0-3) (2020-08-14)
**Note:** Version bump only for package redux-devtools-core **Note:** Version bump only for package redux-devtools-core

View File

@ -89,12 +89,12 @@
"@types/styled-components": "^5.1.21", "@types/styled-components": "^5.1.21",
"@types/testing-library__jest-dom": "^5.14.2", "@types/testing-library__jest-dom": "^5.14.2",
"@types/webpack-env": "^1.16.3", "@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"babel-loader": "^8.2.3", "babel-loader": "^8.2.3",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"css-loader": "^6.5.1", "css-loader": "^6.5.1",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.0.0", "eslint-plugin-jest": "^26.0.0",
"eslint-plugin-react": "^7.28.0", "eslint-plugin-react": "^7.28.0",
@ -113,7 +113,7 @@
"ts-node": "^10.4.0", "ts-node": "^10.4.0",
"typescript": "~4.5.5", "typescript": "~4.5.5",
"webpack": "^5.67.0", "webpack": "^5.67.0",
"webpack-cli": "^4.9.1", "webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.3" "webpack-dev-server": "^4.7.3"
}, },
"peerDependencies": { "peerDependencies": {

View File

@ -1,15 +1,21 @@
# Change Log # Change Log
All notable changes to this project will be documented in this file. ## 2.0.0
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.9.0](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/chart-monitor@1.8.0...@redux-devtools/chart-monitor@1.9.0) (2021-03-06) - 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 ChartMonitor from '@redux-devtools/chart-monitor';
+ import { ChartMonitor } from '@redux-devtools/chart-monitor';
```
## [1.9.0](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/chart-monitor@1.8.0...@redux-devtools/chart-monitor@1.9.0) (2021-03-06)
### Features ### Features
- update peer dependencies to allow react@^17 ([#703](https://github.com/reduxjs/redux-devtools/issues/703)) ([2aaa9c1](https://github.com/reduxjs/redux-devtools/commit/2aaa9c10a383e3a7ab20b3ab14639781fd7bb2eb)) - update peer dependencies to allow react@^17 ([#703](https://github.com/reduxjs/redux-devtools/issues/703)) ([2aaa9c1](https://github.com/reduxjs/redux-devtools/commit/2aaa9c10a383e3a7ab20b3ab14639781fd7bb2eb))
# 1.8.0 (2021-03-06) ## 1.8.0 (2021-03-06)
### Features ### Features

View File

@ -57,9 +57,9 @@
"@babel/preset-typescript": "^7.16.7", "@babel/preset-typescript": "^7.16.7",
"@redux-devtools/core": "^3.11.0", "@redux-devtools/core": "^3.11.0",
"@types/react": "^17.0.38", "@types/react": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.28.0", "eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0", "eslint-plugin-react-hooks": "^4.3.0",

View File

@ -1,40 +1,37 @@
# Change Log # Change Log
All notable changes to this project will be documented in this file. ## [1.0.0-9](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/cli@1.0.0-8...@redux-devtools/cli@1.0.0-9) (2021-06-11)
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.0.0-9](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/cli@1.0.0-8...@redux-devtools/cli@1.0.0-9) (2021-06-11)
**Note:** Version bump only for package @redux-devtools/cli **Note:** Version bump only for package @redux-devtools/cli
# [1.0.0-8](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/cli@1.0.0-7...@redux-devtools/cli@1.0.0-8) (2021-06-11) ## [1.0.0-8](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/cli@1.0.0-7...@redux-devtools/cli@1.0.0-8) (2021-06-11)
### Bug Fixes ### Bug Fixes
- **cli:** fix starting Electron app ([#729](https://github.com/reduxjs/redux-devtools/issues/729)) ([457a201](https://github.com/reduxjs/redux-devtools/commit/457a201232d96a5c28dbaf3f8a42259a35b2b364)) - **cli:** fix starting Electron app ([#729](https://github.com/reduxjs/redux-devtools/issues/729)) ([457a201](https://github.com/reduxjs/redux-devtools/commit/457a201232d96a5c28dbaf3f8a42259a35b2b364))
# [1.0.0-7](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/cli@1.0.0-6...@redux-devtools/cli@1.0.0-7) (2021-04-06) ## [1.0.0-7](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/cli@1.0.0-6...@redux-devtools/cli@1.0.0-7) (2021-04-06)
### Bug Fixes ### Bug Fixes
- **cli:** include dist directory in publish ([#707](https://github.com/reduxjs/redux-devtools/issues/707)) ([95c8c55](https://github.com/reduxjs/redux-devtools/commit/95c8c5520d7ad4d087edcbda2ab500436feffc4a)) - **cli:** include dist directory in publish ([#707](https://github.com/reduxjs/redux-devtools/issues/707)) ([95c8c55](https://github.com/reduxjs/redux-devtools/commit/95c8c5520d7ad4d087edcbda2ab500436feffc4a))
# [1.0.0-6](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/cli@1.0.0-5...@redux-devtools/cli@1.0.0-6) (2021-03-06) ## [1.0.0-6](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/cli@1.0.0-5...@redux-devtools/cli@1.0.0-6) (2021-03-06)
**Note:** Version bump only for package @redux-devtools/cli **Note:** Version bump only for package @redux-devtools/cli
# 1.0.0-5 (2021-03-06) ## 1.0.0-5 (2021-03-06)
### Bug Fixes ### Bug Fixes
- **cli:** resolve dependency issues ([#666](https://github.com/reduxjs/redux-devtools/issues/666)) ([e39e439](https://github.com/reduxjs/redux-devtools/commit/e39e43968b445ecbdcdab515050c5338cadabbe6)) - **cli:** resolve dependency issues ([#666](https://github.com/reduxjs/redux-devtools/issues/666)) ([e39e439](https://github.com/reduxjs/redux-devtools/commit/e39e43968b445ecbdcdab515050c5338cadabbe6))
- **redux-devtools-cli:** forward port to spawned electron ([#564](https://github.com/reduxjs/redux-devtools/issues/564)) ([a1c2f06](https://github.com/reduxjs/redux-devtools/commit/a1c2f068b53ad205d448baa86003c3313f7ab2d1)) - **redux-devtools-cli:** forward port to spawned electron ([#564](https://github.com/reduxjs/redux-devtools/issues/564)) ([a1c2f06](https://github.com/reduxjs/redux-devtools/commit/a1c2f068b53ad205d448baa86003c3313f7ab2d1))
# [1.0.0-4](https://github.com/reduxjs/redux-devtools/compare/redux-devtools-cli@1.0.0-3...redux-devtools-cli@1.0.0-4) (2020-09-07) ## [1.0.0-4](https://github.com/reduxjs/redux-devtools/compare/redux-devtools-cli@1.0.0-3...redux-devtools-cli@1.0.0-4) (2020-09-07)
**Note:** Version bump only for package redux-devtools-cli **Note:** Version bump only for package redux-devtools-cli
# [1.0.0-3](https://github.com/reduxjs/redux-devtools/compare/redux-devtools-cli@1.0.0-2...redux-devtools-cli@1.0.0-3) (2020-08-14) ## [1.0.0-3](https://github.com/reduxjs/redux-devtools/compare/redux-devtools-cli@1.0.0-2...redux-devtools-cli@1.0.0-3) (2020-08-14)
### Bug Fixes ### Bug Fixes

View File

@ -47,10 +47,10 @@
"chalk": "^4.1.2", "chalk": "^4.1.2",
"cors": "^2.8.5", "cors": "^2.8.5",
"cross-spawn": "^7.0.3", "cross-spawn": "^7.0.3",
"electron": "^16.0.7", "electron": "^16.0.8",
"express": "^4.17.2", "express": "^4.17.2",
"getport": "^0.1.0", "getport": "^0.1.0",
"graphql": "^16.2.0", "graphql": "^16.3.0",
"knex": "^0.95.15", "knex": "^0.95.15",
"lodash": "^4.17.21", "lodash": "^4.17.21",
"minimist": "^1.2.5", "minimist": "^1.2.5",
@ -81,9 +81,9 @@
"@types/styled-components": "^5.1.21", "@types/styled-components": "^5.1.21",
"@types/supertest": "^2.0.11", "@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.4", "@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.0.0", "eslint-plugin-jest": "^26.0.0",
"jest": "^27.4.7", "jest": "^27.4.7",

View File

@ -1,15 +1,21 @@
# Change Log # Change Log
All notable changes to this project will be documented in this file. ## 2.0.0
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.4.0](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/dock-monitor@1.3.0...@redux-devtools/dock-monitor@1.4.0) (2021-03-06) - 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 DockMonitor from '@redux-devtools/dock-monitor';
+ import { DockMonitor } from '@redux-devtools/dock-monitor';
```
## [1.4.0](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/dock-monitor@1.3.0...@redux-devtools/dock-monitor@1.4.0) (2021-03-06)
### Features ### Features
- update peer dependencies to allow react@^17 ([#703](https://github.com/reduxjs/redux-devtools/issues/703)) ([2aaa9c1](https://github.com/reduxjs/redux-devtools/commit/2aaa9c10a383e3a7ab20b3ab14639781fd7bb2eb)) - update peer dependencies to allow react@^17 ([#703](https://github.com/reduxjs/redux-devtools/issues/703)) ([2aaa9c1](https://github.com/reduxjs/redux-devtools/commit/2aaa9c10a383e3a7ab20b3ab14639781fd7bb2eb))
# 1.3.0 (2021-03-06) ## 1.3.0 (2021-03-06)
### Features ### Features
@ -17,7 +23,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
- **redux-devtools-dock-monitor:** convert to TypeScript ([#609](https://github.com/reduxjs/redux-devtools/issues/609)) ([b4ec7f8](https://github.com/reduxjs/redux-devtools/commit/b4ec7f86fc165683bd1e8b5ffc3f0690f670642c)) - **redux-devtools-dock-monitor:** convert to TypeScript ([#609](https://github.com/reduxjs/redux-devtools/issues/609)) ([b4ec7f8](https://github.com/reduxjs/redux-devtools/commit/b4ec7f86fc165683bd1e8b5ffc3f0690f670642c))
- **redux-devtools-serialize:** convert to TypeScript ([#621](https://github.com/reduxjs/redux-devtools/issues/621)) ([d586f19](https://github.com/reduxjs/redux-devtools/commit/d586f1955a3648883107f8c981ee17eeb4c013a3)) - **redux-devtools-serialize:** convert to TypeScript ([#621](https://github.com/reduxjs/redux-devtools/issues/621)) ([d586f19](https://github.com/reduxjs/redux-devtools/commit/d586f1955a3648883107f8c981ee17eeb4c013a3))
# [1.2.0](https://github.com/reduxjs/redux-devtools/compare/redux-devtools-dock-monitor@1.1.4...redux-devtools-dock-monitor@1.2.0) (2020-09-07) ## [1.2.0](https://github.com/reduxjs/redux-devtools/compare/redux-devtools-dock-monitor@1.1.4...redux-devtools-dock-monitor@1.2.0) (2020-09-07)
### Features ### Features

View File

@ -58,9 +58,9 @@
"@redux-devtools/core": "^3.11.0", "@redux-devtools/core": "^3.11.0",
"@types/parse-key": "^0.2.0", "@types/parse-key": "^0.2.0",
"@types/react": "^17.0.38", "@types/react": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.28.0", "eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0", "eslint-plugin-react-hooks": "^4.3.0",

View File

@ -1,7 +1,15 @@
# Change Log # Change Log
All notable changes to this project will be documented in this file. ## 3.2.1
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
### Patch Changes
- a25551f: Fix files included in publish
## 3.0.0
- **BREAKING** Rename `redux-devtools-extension` package to `@redux-devtools/extension` (https://github.com/reduxjs/redux-devtools/pull/948).
- Deprecate `actionsBlacklist` and `actionsWhitelist` in favor of `actionsDenylist` and `actionsAllowlist` (https://github.com/reduxjs/redux-devtools/pull/851).
## 2.13.9 (2021-03-06) ## 2.13.9 (2021-03-06)

View File

@ -1,6 +1,6 @@
{ {
"name": "@redux-devtools/extension", "name": "@redux-devtools/extension",
"version": "3.2.0", "version": "3.2.1",
"description": "Wrappers for Redux DevTools Extension.", "description": "Wrappers for Redux DevTools Extension.",
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-extension", "homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-extension",
"license": "MIT", "license": "MIT",
@ -38,9 +38,9 @@
"@babel/plugin-transform-runtime": "^7.16.10", "@babel/plugin-transform-runtime": "^7.16.10",
"@babel/preset-env": "^7.16.11", "@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7", "@babel/preset-typescript": "^7.16.7",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"redux": "^4.1.2", "redux": "^4.1.2",
"rimraf": "^3.0.2", "rimraf": "^3.0.2",

View File

@ -1,7 +1,14 @@
# Change Log # Change Log
All notable changes to this project will be documented in this file. ## 0.8.0
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
- 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 TestGenerator from '@redux-devtools/inspector-monitor-test-tab';
- import mochaTemplate from '@redux-devtools/inspector-monitor-test-tab/lib/redux/mocha';
+ import { TestTab, reduxMochaTemplate } from '@redux-devtools/inspector-monitor-test-tab';
```
## [0.7.2](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/inspector-monitor-test-tab@0.7.1...@redux-devtools/inspector-monitor-test-tab@0.7.2) (2021-06-11) ## [0.7.2](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/inspector-monitor-test-tab@0.7.1...@redux-devtools/inspector-monitor-test-tab@0.7.2) (2021-06-11)
@ -16,7 +23,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
- fix peer dependencies on inpsector monitor ([#730](https://github.com/reduxjs/redux-devtools/issues/730)) ([0291f5c](https://github.com/reduxjs/redux-devtools/commit/0291f5c95e4340a3b5e30a3efe76a1a1a2bb7f5e)) - fix peer dependencies on inpsector monitor ([#730](https://github.com/reduxjs/redux-devtools/issues/730)) ([0291f5c](https://github.com/reduxjs/redux-devtools/commit/0291f5c95e4340a3b5e30a3efe76a1a1a2bb7f5e))
- fix Select types and usages ([#724](https://github.com/reduxjs/redux-devtools/issues/724)) ([07e409d](https://github.com/reduxjs/redux-devtools/commit/07e409de6a1c3d362929d854542df0c1d74ce18e)) - fix Select types and usages ([#724](https://github.com/reduxjs/redux-devtools/issues/724)) ([07e409d](https://github.com/reduxjs/redux-devtools/commit/07e409de6a1c3d362929d854542df0c1d74ce18e))
# [0.7.0](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/inspector-monitor-test-tab@0.6.3...@redux-devtools/inspector-monitor-test-tab@0.7.0) (2021-03-06) ## [0.7.0](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/inspector-monitor-test-tab@0.6.3...@redux-devtools/inspector-monitor-test-tab@0.7.0) (2021-03-06)
### Features ### Features

View File

@ -43,12 +43,12 @@
"@types/redux-logger": "^3.0.9", "@types/redux-logger": "^3.0.9",
"@types/styled-components": "^5.1.21", "@types/styled-components": "^5.1.21",
"@types/webpack-env": "^1.16.3", "@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"babel-loader": "^8.2.3", "babel-loader": "^8.2.3",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"css-loader": "^6.5.1", "css-loader": "^6.5.1",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.28.0", "eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0", "eslint-plugin-react-hooks": "^4.3.0",
@ -58,7 +58,7 @@
"ts-node": "^10.4.0", "ts-node": "^10.4.0",
"typescript": "~4.5.5", "typescript": "~4.5.5",
"webpack": "^5.67.0", "webpack": "^5.67.0",
"webpack-cli": "^4.9.1", "webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.3" "webpack-dev-server": "^4.7.3"
} }
} }

View File

@ -71,9 +71,9 @@
"@types/object-path": "^0.11.1", "@types/object-path": "^0.11.1",
"@types/react": "^17.0.38", "@types/react": "^17.0.38",
"@types/simple-diff": "^1.6.1", "@types/simple-diff": "^1.6.1",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.0.0", "eslint-plugin-jest": "^26.0.0",
"eslint-plugin-react": "^7.28.0", "eslint-plugin-react": "^7.28.0",

View File

@ -1,7 +1,13 @@
# Change Log # Change Log
All notable changes to this project will be documented in this file. ## 0.3.0
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
- 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 TraceTab from '@redux-devtools/inspector-monitor-trace-tab';
+ import { TraceTab } from '@redux-devtools/inspector-monitor-trace-tab';
```
## [0.2.2](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/inspector-monitor-trace-tab@0.2.1...@redux-devtools/inspector-monitor-trace-tab@0.2.2) (2021-06-11) ## [0.2.2](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/inspector-monitor-trace-tab@0.2.1...@redux-devtools/inspector-monitor-trace-tab@0.2.2) (2021-06-11)
@ -15,7 +21,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
- fix peer dependencies on inpsector monitor ([#730](https://github.com/reduxjs/redux-devtools/issues/730)) ([0291f5c](https://github.com/reduxjs/redux-devtools/commit/0291f5c95e4340a3b5e30a3efe76a1a1a2bb7f5e)) - fix peer dependencies on inpsector monitor ([#730](https://github.com/reduxjs/redux-devtools/issues/730)) ([0291f5c](https://github.com/reduxjs/redux-devtools/commit/0291f5c95e4340a3b5e30a3efe76a1a1a2bb7f5e))
# [0.2.0](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/inspector-monitor-trace-tab@0.1.4...@redux-devtools/inspector-monitor-trace-tab@0.2.0) (2021-03-06) ## [0.2.0](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/inspector-monitor-trace-tab@0.1.4...@redux-devtools/inspector-monitor-trace-tab@0.2.0) (2021-03-06)
### Features ### Features

View File

@ -32,7 +32,7 @@
"dependencies": { "dependencies": {
"@babel/code-frame": "^7.16.7", "@babel/code-frame": "^7.16.7",
"@babel/runtime": "^7.16.7", "@babel/runtime": "^7.16.7",
"@types/chrome": "^0.0.176", "@types/chrome": "^0.0.177",
"anser": "^2.1.0", "anser": "^2.1.0",
"html-entities": "^2.3.2", "html-entities": "^2.3.2",
"path-browserify": "^1.0.1", "path-browserify": "^1.0.1",
@ -58,9 +58,9 @@
"@types/react": "^17.0.38", "@types/react": "^17.0.38",
"@types/redux-devtools-themes": "^1.0.0", "@types/redux-devtools-themes": "^1.0.0",
"@types/source-map": "0.5.2", "@types/source-map": "0.5.2",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.0.0", "eslint-plugin-jest": "^26.0.0",
"eslint-plugin-react": "^7.28.0", "eslint-plugin-react": "^7.28.0",

View File

@ -1,16 +1,22 @@
# Change Log # Change Log
All notable changes to this project will be documented in this file. ## 2.0.0
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.0.0](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/inspector-monitor@0.15.0...@redux-devtools/inspector-monitor@1.0.0) (2021-06-11) - 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 Inspector from '@redux-devtools/inspector-monitor';
+ import { InspectorMonitor } from '@redux-devtools/inspector-monitor';
```
## [1.0.0](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/inspector-monitor@0.15.0...@redux-devtools/inspector-monitor@1.0.0) (2021-06-11)
### Bug Fixes ### Bug Fixes
- **inspector:** fix z-index of tabs ([#723](https://github.com/reduxjs/redux-devtools/issues/723)) ([e747783](https://github.com/reduxjs/redux-devtools/commit/e7477833f05ab0ff8f947a48d97eb3ed87ccb70b)) - **inspector:** fix z-index of tabs ([#723](https://github.com/reduxjs/redux-devtools/issues/723)) ([e747783](https://github.com/reduxjs/redux-devtools/commit/e7477833f05ab0ff8f947a48d97eb3ed87ccb70b))
- **inspector:** move immutable back to dependencies ([#725](https://github.com/reduxjs/redux-devtools/issues/725)) ([fcd73ab](https://github.com/reduxjs/redux-devtools/commit/fcd73ab043062bd3c191fd814f3d912bea6fc675)) - **inspector:** move immutable back to dependencies ([#725](https://github.com/reduxjs/redux-devtools/issues/725)) ([fcd73ab](https://github.com/reduxjs/redux-devtools/commit/fcd73ab043062bd3c191fd814f3d912bea6fc675))
# [0.15.0](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/inspector-monitor@0.14.1...@redux-devtools/inspector-monitor@0.15.0) (2021-03-06) ## [0.15.0](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/inspector-monitor@0.14.1...@redux-devtools/inspector-monitor@0.15.0) (2021-03-06)
### Features ### Features
@ -20,7 +26,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
**Note:** Version bump only for package @redux-devtools/inspector-monitor **Note:** Version bump only for package @redux-devtools/inspector-monitor
# [0.14.0](https://github.com/reduxjs/redux-devtools/compare/redux-devtools-inspector@0.13.1...redux-devtools-inspector@0.14.0) (2020-09-07) ## [0.14.0](https://github.com/reduxjs/redux-devtools/compare/redux-devtools-inspector@0.13.1...redux-devtools-inspector@0.14.0) (2020-09-07)
### Features ### Features

View File

@ -41,11 +41,11 @@
"@types/react-router": "^5.1.18", "@types/react-router": "^5.1.18",
"@types/redux-logger": "^3.0.9", "@types/redux-logger": "^3.0.9",
"@types/webpack-env": "^1.16.3", "@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"babel-loader": "^8.2.3", "babel-loader": "^8.2.3",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.28.0", "eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0", "eslint-plugin-react-hooks": "^4.3.0",
@ -54,7 +54,7 @@
"ts-node": "^10.4.0", "ts-node": "^10.4.0",
"typescript": "~4.5.5", "typescript": "~4.5.5",
"webpack": "^5.67.0", "webpack": "^5.67.0",
"webpack-cli": "^4.9.1", "webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.3" "webpack-dev-server": "^4.7.3"
} }
} }

View File

@ -69,9 +69,9 @@
"@types/react": "^17.0.38", "@types/react": "^17.0.38",
"@types/react-dragula": "^1.1.0", "@types/react-dragula": "^1.1.0",
"@types/redux-devtools-themes": "^1.0.0", "@types/redux-devtools-themes": "^1.0.0",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.28.0", "eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0", "eslint-plugin-react-hooks": "^4.3.0",

View File

@ -1,9 +1,15 @@
# Change Log # Change Log
All notable changes to this project will be documented in this file. ## 2.0.0
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# 1.11.0 (2021-03-06) - 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 instrument from '@redux-devtools/instrument';
+ import { instrument } from '@redux-devtools/instrument';
```
## 1.11.0 (2021-03-06)
### Features ### Features
@ -11,7 +17,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
- **redux-devtools-instrument:** export type PerformAction ([#614](https://github.com/reduxjs/redux-devtools/issues/614)) ([9e59cfd](https://github.com/reduxjs/redux-devtools/commit/9e59cfdc7d1d0595f0718feaebc0a9bf814b0b63)) - **redux-devtools-instrument:** export type PerformAction ([#614](https://github.com/reduxjs/redux-devtools/issues/614)) ([9e59cfd](https://github.com/reduxjs/redux-devtools/commit/9e59cfdc7d1d0595f0718feaebc0a9bf814b0b63))
- **redux-devtools-serialize:** convert to TypeScript ([#621](https://github.com/reduxjs/redux-devtools/issues/621)) ([d586f19](https://github.com/reduxjs/redux-devtools/commit/d586f1955a3648883107f8c981ee17eeb4c013a3)) - **redux-devtools-serialize:** convert to TypeScript ([#621](https://github.com/reduxjs/redux-devtools/issues/621)) ([d586f19](https://github.com/reduxjs/redux-devtools/commit/d586f1955a3648883107f8c981ee17eeb4c013a3))
# [1.10.0](https://github.com/reduxjs/redux-devtools/compare/redux-devtools-instrument@1.9.7...redux-devtools-instrument@1.10.0) (2020-09-07) ## [1.10.0](https://github.com/reduxjs/redux-devtools/compare/redux-devtools-instrument@1.9.7...redux-devtools-instrument@1.10.0) (2020-09-07)
### Features ### Features

View File

@ -54,9 +54,9 @@
"@types/jest": "^27.4.0", "@types/jest": "^27.4.0",
"@types/lodash": "^4.14.178", "@types/lodash": "^4.14.178",
"@types/node": "^16.11.21", "@types/node": "^16.11.21",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.0.0", "eslint-plugin-jest": "^26.0.0",
"jest": "^27.4.7", "jest": "^27.4.7",

View File

@ -1,15 +1,21 @@
# Change Log # Change Log
All notable changes to this project will be documented in this file. ## 3.0.0
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.3.0](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/log-monitor@2.2.0...@redux-devtools/log-monitor@2.3.0) (2021-03-06) - 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 LogMonitor from '@redux-devtools/log-monitor';
+ import { LogMonitor } from '@redux-devtools/log-monitor';
```
## [2.3.0](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/log-monitor@2.2.0...@redux-devtools/log-monitor@2.3.0) (2021-03-06)
### Features ### Features
- update peer dependencies to allow react@^17 ([#703](https://github.com/reduxjs/redux-devtools/issues/703)) ([2aaa9c1](https://github.com/reduxjs/redux-devtools/commit/2aaa9c10a383e3a7ab20b3ab14639781fd7bb2eb)) - update peer dependencies to allow react@^17 ([#703](https://github.com/reduxjs/redux-devtools/issues/703)) ([2aaa9c1](https://github.com/reduxjs/redux-devtools/commit/2aaa9c10a383e3a7ab20b3ab14639781fd7bb2eb))
# 2.2.0 (2021-03-06) ## 2.2.0 (2021-03-06)
### Bug Fixes ### Bug Fixes
@ -24,7 +30,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
- **redux-devtools-serialize:** convert to TypeScript ([#621](https://github.com/reduxjs/redux-devtools/issues/621)) ([d586f19](https://github.com/reduxjs/redux-devtools/commit/d586f1955a3648883107f8c981ee17eeb4c013a3)) - **redux-devtools-serialize:** convert to TypeScript ([#621](https://github.com/reduxjs/redux-devtools/issues/621)) ([d586f19](https://github.com/reduxjs/redux-devtools/commit/d586f1955a3648883107f8c981ee17eeb4c013a3))
- **redux-devtools-slider-monitor:** convert to TypeScript ([#631](https://github.com/reduxjs/redux-devtools/issues/631)) ([8991732](https://github.com/reduxjs/redux-devtools/commit/89917320e5ecf33dc3625b05daa1e9fe120a783d)) - **redux-devtools-slider-monitor:** convert to TypeScript ([#631](https://github.com/reduxjs/redux-devtools/issues/631)) ([8991732](https://github.com/reduxjs/redux-devtools/commit/89917320e5ecf33dc3625b05daa1e9fe120a783d))
# [2.1.0](https://github.com/reduxjs/redux-devtools/compare/redux-devtools-log-monitor@2.0.1...redux-devtools-log-monitor@2.1.0) (2020-09-07) ## [2.1.0](https://github.com/reduxjs/redux-devtools/compare/redux-devtools-log-monitor@2.0.1...redux-devtools-log-monitor@2.1.0) (2020-09-07)
### Features ### Features

View File

@ -60,9 +60,9 @@
"@babel/preset-typescript": "^7.16.7", "@babel/preset-typescript": "^7.16.7",
"@redux-devtools/core": "^3.11.0", "@redux-devtools/core": "^3.11.0",
"@types/react": "^17.0.38", "@types/react": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.28.0", "eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0", "eslint-plugin-react-hooks": "^4.3.0",

View File

@ -0,0 +1,10 @@
# Change Log
## 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';
```

View File

@ -59,9 +59,9 @@
"@types/jsan": "^3.1.2", "@types/jsan": "^3.1.2",
"@types/rn-host-detect": "^1.2.0", "@types/rn-host-detect": "^1.2.0",
"@types/socketcluster-client": "^13.0.5", "@types/socketcluster-client": "^13.0.5",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"redux": "^4.1.2", "redux": "^4.1.2",
"rimraf": "^3.0.2", "rimraf": "^3.0.2",

View File

@ -0,0 +1,10 @@
# Change Log
## 2.0.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 RtkQueryrMonitor from '@redux-devtools/rtk-query-monitor';
+ import { RtkQueryrMonitor } from '@redux-devtools/rtk-query-monitor';
```

View File

@ -11,7 +11,7 @@
}, },
"dependencies": { "dependencies": {
"@babel/runtime": "^7.16.7", "@babel/runtime": "^7.16.7",
"@chakra-ui/react": "^1.7.4", "@chakra-ui/react": "^1.8.1",
"@emotion/react": "^11.7.1", "@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0", "@emotion/styled": "^11.6.0",
"@mswjs/data": "^0.8.4", "@mswjs/data": "^0.8.4",
@ -20,7 +20,7 @@
"@redux-devtools/rtk-query-monitor": "^2.1.1", "@redux-devtools/rtk-query-monitor": "^2.1.1",
"@reduxjs/toolkit": "^1.7.1", "@reduxjs/toolkit": "^1.7.1",
"framer-motion": "^5.6.0", "framer-motion": "^5.6.0",
"msw": "^0.36.5", "msw": "^0.36.8",
"react": "^17.0.2", "react": "^17.0.2",
"react-dom": "^17.0.2", "react-dom": "^17.0.2",
"react-icons": "^4.3.1", "react-icons": "^4.3.1",
@ -42,13 +42,13 @@
"@types/react-redux": "^7.1.22", "@types/react-redux": "^7.1.22",
"@types/react-router-dom": "^5.3.3", "@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.21", "@types/styled-components": "^5.1.21",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"babel-loader": "^8.2.3", "babel-loader": "^8.2.3",
"copy-webpack-plugin": "^9.1.0", "copy-webpack-plugin": "^9.1.0",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"css-loader": "^6.5.1", "css-loader": "^6.5.1",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.28.0", "eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0", "eslint-plugin-react-hooks": "^4.3.0",
@ -58,7 +58,7 @@
"ts-node": "^10.4.0", "ts-node": "^10.4.0",
"typescript": "~4.5.5", "typescript": "~4.5.5",
"webpack": "^5.67.0", "webpack": "^5.67.0",
"webpack-cli": "^4.9.1", "webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.3" "webpack-dev-server": "^4.7.3"
}, },
"msw": { "msw": {

View File

@ -70,9 +70,9 @@
"@types/hex-rgba": "^1.0.1", "@types/hex-rgba": "^1.0.1",
"@types/lodash.debounce": "^4.0.6", "@types/lodash.debounce": "^4.0.6",
"@types/react": "^17.0.38", "@types/react": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.28.0", "eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0", "eslint-plugin-react-hooks": "^4.3.0",

View File

@ -1,15 +1,21 @@
# Change Log # Change Log
All notable changes to this project will be documented in this file. ## 0.4.0
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# 0.3.0 (2021-03-06) - 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 Serialize from '@redux-devtools/serialize';
+ import { immutable } from '@redux-devtools/serialize';
```
## 0.3.0 (2021-03-06)
### Features ### Features
- **redux-devtools-serialize:** convert to TypeScript ([#621](https://github.com/reduxjs/redux-devtools/issues/621)) ([d586f19](https://github.com/reduxjs/redux-devtools/commit/d586f1955a3648883107f8c981ee17eeb4c013a3)) - **redux-devtools-serialize:** convert to TypeScript ([#621](https://github.com/reduxjs/redux-devtools/issues/621)) ([d586f19](https://github.com/reduxjs/redux-devtools/commit/d586f1955a3648883107f8c981ee17eeb4c013a3))
# 0.2.0 (2020-09-07) ## 0.2.0 (2020-09-07)
### Features ### Features

View File

@ -49,9 +49,9 @@
"@babel/preset-typescript": "^7.16.7", "@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.0", "@types/jest": "^27.4.0",
"@types/jsan": "^3.1.2", "@types/jsan": "^3.1.2",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.0.0", "eslint-plugin-jest": "^26.0.0",
"immutable": "^4.0.0", "immutable": "^4.0.0",

View File

@ -1,29 +1,35 @@
# Change Log # Change Log
All notable changes to this project will be documented in this file. ## 3.0.0
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [2.0.0-8](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/slider-monitor@2.0.0-7...@redux-devtools/slider-monitor@2.0.0-8) (2021-06-11) - 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 SliderMonitor from '@redux-devtools/slider-monitor';
+ import { SliderMonitor } from '@redux-devtools/slider-monitor';
```
## [2.0.0-8](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/slider-monitor@2.0.0-7...@redux-devtools/slider-monitor@2.0.0-8) (2021-06-11)
**Note:** Version bump only for package @redux-devtools/slider-monitor **Note:** Version bump only for package @redux-devtools/slider-monitor
# [2.0.0-7](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/slider-monitor@2.0.0-6...@redux-devtools/slider-monitor@2.0.0-7) (2021-03-06) ## [2.0.0-7](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/slider-monitor@2.0.0-6...@redux-devtools/slider-monitor@2.0.0-7) (2021-03-06)
### Features ### Features
- update peer dependencies to allow react@^17 ([#703](https://github.com/reduxjs/redux-devtools/issues/703)) ([2aaa9c1](https://github.com/reduxjs/redux-devtools/commit/2aaa9c10a383e3a7ab20b3ab14639781fd7bb2eb)) - update peer dependencies to allow react@^17 ([#703](https://github.com/reduxjs/redux-devtools/issues/703)) ([2aaa9c1](https://github.com/reduxjs/redux-devtools/commit/2aaa9c10a383e3a7ab20b3ab14639781fd7bb2eb))
# 2.0.0-6 (2021-03-06) ## 2.0.0-6 (2021-03-06)
### Features ### Features
- **redux-devtools-slider-monitor:** convert example to TypeScript ([#632](https://github.com/reduxjs/redux-devtools/issues/632)) ([ec75d3a](https://github.com/reduxjs/redux-devtools/commit/ec75d3a4b62d0f4b8d52a739a7727142421cc261)) - **redux-devtools-slider-monitor:** convert example to TypeScript ([#632](https://github.com/reduxjs/redux-devtools/issues/632)) ([ec75d3a](https://github.com/reduxjs/redux-devtools/commit/ec75d3a4b62d0f4b8d52a739a7727142421cc261))
- **redux-devtools-slider-monitor:** convert to TypeScript ([#631](https://github.com/reduxjs/redux-devtools/issues/631)) ([8991732](https://github.com/reduxjs/redux-devtools/commit/89917320e5ecf33dc3625b05daa1e9fe120a783d)) - **redux-devtools-slider-monitor:** convert to TypeScript ([#631](https://github.com/reduxjs/redux-devtools/issues/631)) ([8991732](https://github.com/reduxjs/redux-devtools/commit/89917320e5ecf33dc3625b05daa1e9fe120a783d))
# [2.0.0-5](https://github.com/reduxjs/redux-devtools/compare/redux-devtools-slider-monitor@2.0.0-4...redux-devtools-slider-monitor@2.0.0-5) (2020-09-07) ## [2.0.0-5](https://github.com/reduxjs/redux-devtools/compare/redux-devtools-slider-monitor@2.0.0-4...redux-devtools-slider-monitor@2.0.0-5) (2020-09-07)
**Note:** Version bump only for package redux-devtools-slider-monitor **Note:** Version bump only for package redux-devtools-slider-monitor
# 2.0.0-4 (2020-08-14) ## 2.0.0-4 (2020-08-14)
**Note:** Version bump only for package redux-devtools-slider-monitor **Note:** Version bump only for package redux-devtools-slider-monitor

View File

@ -1,27 +0,0 @@
# Change Log
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.1.2](https://github.com/reduxjs/redux-devtools/compare/slider-todomvc@0.1.1...slider-todomvc@0.1.2) (2021-06-11)
**Note:** Version bump only for package slider-todomvc
## [0.1.1](https://github.com/reduxjs/redux-devtools/compare/slider-todomvc@0.1.0...slider-todomvc@0.1.1) (2021-03-06)
**Note:** Version bump only for package slider-todomvc
# [0.1.0](https://github.com/reduxjs/redux-devtools/compare/slider-todomvc@0.0.2...slider-todomvc@0.1.0) (2021-03-06)
### Features
- **redux-devtools-slider-monitor:** convert example to TypeScript ([#632](https://github.com/reduxjs/redux-devtools/issues/632)) ([ec75d3a](https://github.com/reduxjs/redux-devtools/commit/ec75d3a4b62d0f4b8d52a739a7727142421cc261))
- **redux-devtools-slider-monitor:** convert to TypeScript ([#631](https://github.com/reduxjs/redux-devtools/issues/631)) ([8991732](https://github.com/reduxjs/redux-devtools/commit/89917320e5ecf33dc3625b05daa1e9fe120a783d))
## [0.0.2](https://github.com/calesce/redux-slider-monitor/compare/slider-todomvc@0.0.1...slider-todomvc@0.0.2) (2020-09-07)
**Note:** Version bump only for package slider-todomvc
## 0.0.1 (2020-08-14)
**Note:** Version bump only for package slider-todomvc

View File

@ -42,12 +42,12 @@
"@types/react-redux": "^7.1.22", "@types/react-redux": "^7.1.22",
"@types/styled-components": "^5.1.21", "@types/styled-components": "^5.1.21",
"@types/webpack-env": "^1.16.3", "@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"babel-loader": "^8.2.3", "babel-loader": "^8.2.3",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"css-loader": "^6.5.1", "css-loader": "^6.5.1",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.28.0", "eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0", "eslint-plugin-react-hooks": "^4.3.0",
@ -57,7 +57,7 @@
"ts-node": "^10.4.0", "ts-node": "^10.4.0",
"typescript": "~4.5.5", "typescript": "~4.5.5",
"webpack": "^5.67.0", "webpack": "^5.67.0",
"webpack-cli": "^4.9.1", "webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.3" "webpack-dev-server": "^4.7.3"
} }
} }

View File

@ -50,16 +50,16 @@
"@redux-devtools/core": "^3.11.0", "@redux-devtools/core": "^3.11.0",
"@rollup/plugin-babel": "^5.3.0", "@rollup/plugin-babel": "^5.3.0",
"@types/react": "^17.0.38", "@types/react": "^17.0.38",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.28.0", "eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0", "eslint-plugin-react-hooks": "^4.3.0",
"react": "^17.0.2", "react": "^17.0.2",
"redux": "^4.1.2", "redux": "^4.1.2",
"rimraf": "^3.0.2", "rimraf": "^3.0.2",
"rollup": "^2.66.0", "rollup": "^2.66.1",
"rollup-plugin-typescript2": "^0.31.1", "rollup-plugin-typescript2": "^0.31.1",
"tslib": "^2.3.1", "tslib": "^2.3.1",
"typescript": "~4.5.5" "typescript": "~4.5.5"

View File

@ -1,9 +1,12 @@
# Change Log # Change Log
All notable changes to this project will be documented in this file. ## 1.2.2
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.0.0-9](https://github.com/reduxjs/redux-devtools/compare/devui@1.0.0-8...devui@1.0.0-9) (2021-06-11) ### Patch Changes
- a25551f: Fix failing to bundle fonts
## [1.0.0-9](https://github.com/reduxjs/redux-devtools/compare/devui@1.0.0-8...devui@1.0.0-9) (2021-06-11)
### Bug Fixes ### Bug Fixes
@ -13,13 +16,13 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
- **devui:** fix Select widget in Form ([#722](https://github.com/reduxjs/redux-devtools/issues/722)) ([a8d99ee](https://github.com/reduxjs/redux-devtools/commit/a8d99ee424b48974314b8b94e1b93f84924b4352)) - **devui:** fix Select widget in Form ([#722](https://github.com/reduxjs/redux-devtools/issues/722)) ([a8d99ee](https://github.com/reduxjs/redux-devtools/commit/a8d99ee424b48974314b8b94e1b93f84924b4352))
- **devui:** fix style of Select ([#721](https://github.com/reduxjs/redux-devtools/issues/721)) ([bb72311](https://github.com/reduxjs/redux-devtools/commit/bb72311e1ccb7a0425a02a1d9271c8534fcd90e0)) - **devui:** fix style of Select ([#721](https://github.com/reduxjs/redux-devtools/issues/721)) ([bb72311](https://github.com/reduxjs/redux-devtools/commit/bb72311e1ccb7a0425a02a1d9271c8534fcd90e0))
# [1.0.0-8](https://github.com/reduxjs/redux-devtools/compare/devui@1.0.0-7...devui@1.0.0-8) (2021-03-06) ## [1.0.0-8](https://github.com/reduxjs/redux-devtools/compare/devui@1.0.0-7...devui@1.0.0-8) (2021-03-06)
### Features ### Features
- update peer dependencies to allow react@^17 ([#703](https://github.com/reduxjs/redux-devtools/issues/703)) ([2aaa9c1](https://github.com/reduxjs/redux-devtools/commit/2aaa9c10a383e3a7ab20b3ab14639781fd7bb2eb)) - update peer dependencies to allow react@^17 ([#703](https://github.com/reduxjs/redux-devtools/issues/703)) ([2aaa9c1](https://github.com/reduxjs/redux-devtools/commit/2aaa9c10a383e3a7ab20b3ab14639781fd7bb2eb))
# [1.0.0-7](https://github.com/reduxjs/redux-devtools/compare/devui@1.0.0-6...devui@1.0.0-7) (2021-03-06) ## [1.0.0-7](https://github.com/reduxjs/redux-devtools/compare/devui@1.0.0-6...devui@1.0.0-7) (2021-03-06)
### Bug Fixes ### Bug Fixes
@ -29,10 +32,10 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
- **redux-devtools-slider-monitor:** convert to TypeScript ([#631](https://github.com/reduxjs/redux-devtools/issues/631)) ([8991732](https://github.com/reduxjs/redux-devtools/commit/89917320e5ecf33dc3625b05daa1e9fe120a783d)) - **redux-devtools-slider-monitor:** convert to TypeScript ([#631](https://github.com/reduxjs/redux-devtools/issues/631)) ([8991732](https://github.com/reduxjs/redux-devtools/commit/89917320e5ecf33dc3625b05daa1e9fe120a783d))
# [1.0.0-6](https://github.com/reduxjs/redux-devtools/compare/devui@1.0.0-5...devui@1.0.0-6) (2020-09-07) ## [1.0.0-6](https://github.com/reduxjs/redux-devtools/compare/devui@1.0.0-5...devui@1.0.0-6) (2020-09-07)
**Note:** Version bump only for package devui **Note:** Version bump only for package devui
# [1.0.0-5](https://github.com/reduxjs/redux-devtools/compare/devui@1.0.0-4...devui@1.0.0-5) (2020-08-14) ## [1.0.0-5](https://github.com/reduxjs/redux-devtools/compare/devui@1.0.0-4...devui@1.0.0-5) (2020-08-14)
**Note:** Version bump only for package devui **Note:** Version bump only for package devui

View File

@ -1,6 +1,6 @@
{ {
"name": "@redux-devtools/ui", "name": "@redux-devtools/ui",
"version": "1.2.1", "version": "1.2.2",
"description": "Reusable React components for building DevTools monitors and apps.", "description": "Reusable React components for building DevTools monitors and apps.",
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-ui", "homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-ui",
"bugs": { "bugs": {
@ -67,20 +67,20 @@
"@babel/preset-env": "^7.16.11", "@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7", "@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.16.7", "@babel/preset-typescript": "^7.16.7",
"@storybook/addon-essentials": "^6.4.14", "@storybook/addon-essentials": "^6.4.16",
"@storybook/react": "^6.4.14", "@storybook/react": "^6.4.16",
"@testing-library/dom": "^8.11.2", "@testing-library/dom": "^8.11.3",
"@testing-library/react": "^12.1.2", "@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0", "@testing-library/user-event": "^13.5.0",
"@types/color": "^3.0.2", "@types/color": "^3.0.2",
"@types/jest": "^27.4.0", "@types/jest": "^27.4.0",
"@types/react": "^17.0.38", "@types/react": "^17.0.38",
"@types/styled-components": "^5.1.21", "@types/styled-components": "^5.1.21",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"babel-loader": "^8.2.3", "babel-loader": "^8.2.3",
"csstype": "^3.0.10", "csstype": "^3.0.10",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.0.0", "eslint-plugin-jest": "^26.0.0",
"eslint-plugin-react": "^7.28.0", "eslint-plugin-react": "^7.28.0",
@ -92,7 +92,7 @@
"react-is": "^17.0.2", "react-is": "^17.0.2",
"rimraf": "^3.0.2", "rimraf": "^3.0.2",
"styled-components": "^5.3.3", "styled-components": "^5.3.3",
"stylelint": "^14.2.0", "stylelint": "^14.3.0",
"stylelint-config-prettier": "^9.0.3", "stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard": "^24.0.0", "stylelint-config-standard": "^24.0.0",
"stylelint-config-styled-components": "^0.1.1", "stylelint-config-styled-components": "^0.1.1",

View File

@ -1,12 +1,9 @@
# Change Log # Change Log
All notable changes to this project will be documented in this file. ## [1.0.0-6](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/utils@1.0.0-5...@redux-devtools/utils@1.0.0-6) (2021-03-06)
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [1.0.0-6](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/utils@1.0.0-5...@redux-devtools/utils@1.0.0-6) (2021-03-06)
**Note:** Version bump only for package @redux-devtools/utils **Note:** Version bump only for package @redux-devtools/utils
# 1.0.0-5 (2021-03-06) ## 1.0.0-5 (2021-03-06)
**Note:** Version bump only for package @redux-devtools/utils **Note:** Version bump only for package @redux-devtools/utils

View File

@ -53,9 +53,9 @@
"@types/jsan": "^3.1.2", "@types/jsan": "^3.1.2",
"@types/lodash": "^4.14.178", "@types/lodash": "^4.14.178",
"@types/node": "^16.11.21", "@types/node": "^16.11.21",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"rimraf": "^3.0.2", "rimraf": "^3.0.2",
"typescript": "~4.5.5" "typescript": "~4.5.5"

View File

@ -1,15 +1,12 @@
# Change Log # Change Log
All notable changes to this project will be documented in this file. ## [3.9.0](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/core@3.8.0...@redux-devtools/core@3.9.0) (2021-03-06)
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [3.9.0](https://github.com/reduxjs/redux-devtools/compare/@redux-devtools/core@3.8.0...@redux-devtools/core@3.9.0) (2021-03-06)
### Features ### Features
- update peer dependencies to allow react@^17 ([#703](https://github.com/reduxjs/redux-devtools/issues/703)) ([2aaa9c1](https://github.com/reduxjs/redux-devtools/commit/2aaa9c10a383e3a7ab20b3ab14639781fd7bb2eb)) - update peer dependencies to allow react@^17 ([#703](https://github.com/reduxjs/redux-devtools/issues/703)) ([2aaa9c1](https://github.com/reduxjs/redux-devtools/commit/2aaa9c10a383e3a7ab20b3ab14639781fd7bb2eb))
# 3.8.0 (2021-03-06) ## 3.8.0 (2021-03-06)
### Bug Fixes ### Bug Fixes
@ -23,11 +20,11 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
- **redux-devtools:** export more types ([#615](https://github.com/reduxjs/redux-devtools/issues/615)) ([c154405](https://github.com/reduxjs/redux-devtools/commit/c154405c6c2448743040d0d7cfa9e8463b647a14)) - **redux-devtools:** export more types ([#615](https://github.com/reduxjs/redux-devtools/issues/615)) ([c154405](https://github.com/reduxjs/redux-devtools/commit/c154405c6c2448743040d0d7cfa9e8463b647a14))
- **redux-devtools-slider-monitor:** convert example to TypeScript ([#632](https://github.com/reduxjs/redux-devtools/issues/632)) ([ec75d3a](https://github.com/reduxjs/redux-devtools/commit/ec75d3a4b62d0f4b8d52a739a7727142421cc261)) - **redux-devtools-slider-monitor:** convert example to TypeScript ([#632](https://github.com/reduxjs/redux-devtools/issues/632)) ([ec75d3a](https://github.com/reduxjs/redux-devtools/commit/ec75d3a4b62d0f4b8d52a739a7727142421cc261))
# 3.6.0 (2020-07-28) ## 3.6.0 (2020-07-28)
# 3.5.0 (2018-12-21) ## 3.5.0 (2018-12-21)
# [3.7.0](https://github.com/reduxjs/redux-devtools/compare/redux-devtools@3.6.1...redux-devtools@3.7.0) (2020-09-07) ## [3.7.0](https://github.com/reduxjs/redux-devtools/compare/redux-devtools@3.6.1...redux-devtools@3.7.0) (2020-09-07)
### Bug Fixes ### Bug Fixes

View File

@ -1,23 +0,0 @@
# Change Log
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.1.2](https://github.com/reduxjs/redux-devtools/compare/counter-redux@0.1.1...counter-redux@0.1.2) (2021-03-06)
**Note:** Version bump only for package counter-redux
## [0.1.1](https://github.com/reduxjs/redux-devtools/compare/counter-redux@0.1.0...counter-redux@0.1.1) (2021-03-06)
**Note:** Version bump only for package counter-redux
# [0.1.0](https://github.com/reduxjs/redux-devtools/compare/counter-redux@0.0.1...counter-redux@0.1.0) (2020-09-07)
### Features
- **redux-devtools:** convert counter example to TypeScript ([#616](https://github.com/reduxjs/redux-devtools/issues/616)) ([f1e3f4f](https://github.com/reduxjs/redux-devtools/commit/f1e3f4f8340dea288de5229006acf9dc1ef1cccf))
- **redux-devtools:** convert todomvc example to TypeScript ([#618](https://github.com/reduxjs/redux-devtools/issues/618)) ([37191e4](https://github.com/reduxjs/redux-devtools/commit/37191e46e600cd9ac2839f0687efb347fc4ef7c1))
## 0.0.1 (2020-08-14)
**Note:** Version bump only for package counter-redux

View File

@ -40,11 +40,11 @@
"@types/react-dom": "^17.0.11", "@types/react-dom": "^17.0.11",
"@types/react-redux": "^7.1.22", "@types/react-redux": "^7.1.22",
"@types/webpack-env": "^1.16.3", "@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"babel-loader": "^8.2.3", "babel-loader": "^8.2.3",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.28.0", "eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0", "eslint-plugin-react-hooks": "^4.3.0",
@ -53,7 +53,7 @@
"ts-node": "^10.4.0", "ts-node": "^10.4.0",
"typescript": "~4.5.5", "typescript": "~4.5.5",
"webpack": "^5.67.0", "webpack": "^5.67.0",
"webpack-cli": "^4.9.1", "webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.3" "webpack-dev-server": "^4.7.3"
} }
} }

View File

@ -1,24 +0,0 @@
# Change Log
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
## [0.2.1](https://github.com/reduxjs/redux-devtools/compare/todomvc@0.2.0...todomvc@0.2.1) (2021-03-06)
**Note:** Version bump only for package todomvc
# [0.2.0](https://github.com/reduxjs/redux-devtools/compare/todomvc@0.1.0...todomvc@0.2.0) (2021-03-06)
### Features
- **redux-devtools-slider-monitor:** convert example to TypeScript ([#632](https://github.com/reduxjs/redux-devtools/issues/632)) ([ec75d3a](https://github.com/reduxjs/redux-devtools/commit/ec75d3a4b62d0f4b8d52a739a7727142421cc261))
# [0.1.0](https://github.com/reduxjs/redux-devtools/compare/todomvc@0.0.1...todomvc@0.1.0) (2020-09-07)
### Features
- **redux-devtools:** convert todomvc example to TypeScript ([#618](https://github.com/reduxjs/redux-devtools/issues/618)) ([37191e4](https://github.com/reduxjs/redux-devtools/commit/37191e46e600cd9ac2839f0687efb347fc4ef7c1))
## 0.0.1 (2020-08-14)
**Note:** Version bump only for package todomvc

View File

@ -54,12 +54,12 @@
"@types/react-dom": "^17.0.11", "@types/react-dom": "^17.0.11",
"@types/react-redux": "^7.1.22", "@types/react-redux": "^7.1.22",
"@types/webpack-env": "^1.16.3", "@types/webpack-env": "^1.16.3",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"babel-loader": "^8.2.3", "babel-loader": "^8.2.3",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"css-loader": "^6.5.1", "css-loader": "^6.5.1",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-react": "^7.28.0", "eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0", "eslint-plugin-react-hooks": "^4.3.0",
@ -69,7 +69,7 @@
"ts-node": "^10.4.0", "ts-node": "^10.4.0",
"typescript": "~4.5.5", "typescript": "~4.5.5",
"webpack": "^5.67.0", "webpack": "^5.67.0",
"webpack-cli": "^4.9.1", "webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.3" "webpack-dev-server": "^4.7.3"
} }
} }

View File

@ -60,9 +60,9 @@
"@types/node": "^16.11.21", "@types/node": "^16.11.21",
"@types/react": "^17.0.38", "@types/react": "^17.0.38",
"@types/react-redux": "^7.1.22", "@types/react-redux": "^7.1.22",
"@typescript-eslint/eslint-plugin": "^5.10.0", "@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.0", "@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0", "eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0", "eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^26.0.0", "eslint-plugin-jest": "^26.0.0",
"eslint-plugin-react": "^7.28.0", "eslint-plugin-react": "^7.28.0",

2032
yarn.lock

File diff suppressed because it is too large Load Diff