Version Packages (#1309)

* Version Packages

* Update lock file

* Major changes

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Nathan Bierema <nbierema@gmail.com>
This commit is contained in:
github-actions[bot] 2023-01-05 14:18:48 +00:00 committed by GitHub
parent 5219bf8c68
commit fa25234d36
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
30 changed files with 163 additions and 88 deletions

View File

@ -1,9 +0,0 @@
---
'react-json-tree': minor
---
Remove UNSAFE method from react-json-tree
- Replace `shouldExpandNode` with `shouldExpandNodeInitially`. This function is now only called when a node in the tree is first rendered, when before it would update the expanded state of the node if the results of calling `shouldExpandNode` changed between renders. There is no way to replicate the old behavior exactly, but the new behavior is the intended behavior for the use cases within Redux DevTools. Please open an issue if you need a way to programatically control the expanded state of nodes.
- Bump the minimum React version from `16.3.0` to `16.8.0` so that `react-json-tree` can use hooks.
- Tightened TypeScript prop types to use `unknown` instead of `any` where possible and make the key path array `readonly`.

View File

@ -1,10 +0,0 @@
---
'd3-state-visualizer': major
---
Upgrade D3
- Remove UMD build.
- Split `style` option into `chartStyles`, `nodeStyleOptions`, `textStyleOptions`, and `linkStyles`.
- The shape of the argument passed to the `onClickText` option has been updated.
- Rename `InputOptions` to `Options`, `Primitive` to `StyleValue`, and `NodeWithId` to `HierarchyPointNode<Node>`.

View File

@ -1,8 +0,0 @@
---
'@redux-devtools/chart-monitor': major
---
Upgrade D3
- Split `style` option into `chartStyles`, `nodeStyleOptions`, `textStyleOptions`, and `linkStyles`.
- The shape of the argument passed to the `onClickText` option has been updated.

View File

@ -1,12 +0,0 @@
---
'd3tooltip': major
---
Upgrade D3
- Remove UMD build.
- Upgrade d3 peer dependency from v3 to v7.
- Remove `attr` configuration method.
- Rename `style` configuration method to `styles` and move to options.
- Move `text` configuration method to options.
- Remove d3 parameter as first parameter for `tooltip`.

View File

@ -1,5 +0,0 @@
---
'map2tree': major
---
Remove UMD build.

View File

@ -1,5 +1,13 @@
# remotedev-redux-devtools-extension
## 3.0.18
### Patch Changes
- Updated dependencies [81926f32]
- react-json-tree@0.18.0
- @redux-devtools/app@2.2.1
## 3.0.17
### Patch Changes

View File

@ -1,7 +1,7 @@
{
"private": true,
"name": "remotedev-redux-devtools-extension",
"version": "3.0.17",
"version": "3.0.18",
"description": "Redux Developer Tools for debugging application state changes.",
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/extension",
"license": "MIT",
@ -28,7 +28,7 @@
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@redux-devtools/app": "^2.2.0",
"@redux-devtools/app": "^2.2.1",
"@redux-devtools/core": "^3.13.0",
"@redux-devtools/instrument": "^2.1.0",
"@redux-devtools/serialize": "^0.4.1",
@ -43,7 +43,7 @@
"react-dom": "^18.2.0",
"react-icons": "^4.7.1",
"react-is": "^18.2.0",
"react-json-tree": "^0.17.0",
"react-json-tree": "^0.18.0",
"react-redux": "^8.0.5",
"redux": "^4.2.0",
"redux-persist": "^6.0.0",

View File

@ -1,5 +1,23 @@
# Change Log
## 2.0.0
### Major Changes
- b323f77d: Upgrade D3
- Remove UMD build.
- Split `style` option into `chartStyles`, `nodeStyleOptions`, `textStyleOptions`, and `linkStyles`.
- The shape of the argument passed to the `onClickText` option has been updated.
- Rename `InputOptions` to `Options`, `Primitive` to `StyleValue`, and `NodeWithId` to `HierarchyPointNode<Node>`.
### Patch Changes
- Updated dependencies [b323f77d]
- Updated dependencies [b323f77d]
- d3tooltip@3.0.0
- map2tree@3.0.0
## [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

View File

@ -0,0 +1,10 @@
# d3-state-visualizer-tree-example
## 0.1.5
### Patch Changes
- Updated dependencies [b323f77d]
- Updated dependencies [b323f77d]
- d3-state-visualizer@2.0.0
- map2tree@3.0.0

View File

@ -1,7 +1,7 @@
{
"private": true,
"name": "d3-state-visualizer-tree-example",
"version": "0.1.4",
"version": "0.1.5",
"description": "Visualize your app state as a tree",
"keywords": [
"d3",
@ -25,8 +25,8 @@
"type-check": "tsc --noEmit"
},
"dependencies": {
"d3-state-visualizer": "^1.6.0",
"map2tree": "^2.1.0"
"d3-state-visualizer": "^2.0.0",
"map2tree": "^3.0.0"
},
"devDependencies": {
"@babel/core": "^7.20.5",

View File

@ -1,6 +1,6 @@
{
"name": "d3-state-visualizer",
"version": "1.6.0",
"version": "2.0.0",
"description": "Visualize your app state with a range of reusable charts",
"keywords": [
"d3",
@ -43,9 +43,9 @@
"@babel/runtime": "^7.20.6",
"@types/d3": "^7.4.0",
"d3": "^7.8.0",
"d3tooltip": "^2.1.0",
"d3tooltip": "^3.0.0",
"deepmerge": "^4.2.2",
"map2tree": "^2.1.0",
"map2tree": "^3.0.0",
"ramda": "^0.28.0"
},
"devDependencies": {

View File

@ -1,5 +1,18 @@
# Change Log
## 3.0.0
### Major Changes
- b323f77d: Upgrade D3
- Remove UMD build.
- Upgrade d3 peer dependency from v3 to v7.
- Remove `attr` configuration method.
- Rename `style` configuration method to `styles` and move to options.
- Move `text` configuration method to options.
- Remove d3 parameter as first parameter for `tooltip`.
## 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):

View File

@ -1,6 +1,6 @@
{
"name": "d3tooltip",
"version": "2.1.0",
"version": "3.0.0",
"description": "A highly configurable tooltip for d3",
"keywords": [
"d3",

View File

@ -1,5 +1,11 @@
# Change Log
## 3.0.0
### Major Changes
- b323f77d: Remove UMD build.
## 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):

View File

@ -1,6 +1,6 @@
{
"name": "map2tree",
"version": "2.1.0",
"version": "3.0.0",
"description": "Utility for mapping maps to trees",
"keywords": [
"map2tree",

View File

@ -1,5 +1,15 @@
# Change Log
## 0.18.0
### Major Changes
- 81926f32: Remove UNSAFE method from react-json-tree
- Replace `shouldExpandNode` with `shouldExpandNodeInitially`. This function is now only called when a node in the tree is first rendered, when before it would update the expanded state of the node if the results of calling `shouldExpandNode` changed between renders. There is no way to replicate the old behavior exactly, but the new behavior is the intended behavior for the use cases within Redux DevTools. Please open an issue if you need a way to programatically control the expanded state of nodes.
- Bump the minimum React version from `16.3.0` to `16.8.0` so that `react-json-tree` can use hooks.
- Tightened TypeScript prop types to use `unknown` instead of `any` where possible and make the key path array `readonly`.
## 0.17.0
### Minor Changes

View File

@ -1,5 +1,12 @@
# react-json-tree-example
## 1.1.8
### Patch Changes
- Updated dependencies [81926f32]
- react-json-tree@0.18.0
## 1.1.7
### Patch Changes

View File

@ -1,7 +1,7 @@
{
"private": true,
"name": "react-json-tree-example",
"version": "1.1.7",
"version": "1.1.8",
"description": "React-Json-Tree example",
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/react-json-tree/examples",
"bugs": {
@ -23,7 +23,7 @@
"react": "^18.2.0",
"react-base16-styling": "^0.9.1",
"react-dom": "^18.2.0",
"react-json-tree": "^0.17.0"
"react-json-tree": "^0.18.0"
},
"devDependencies": {
"@babel/core": "^7.20.5",

View File

@ -1,6 +1,6 @@
{
"name": "react-json-tree",
"version": "0.17.0",
"version": "0.18.0",
"description": "React JSON Viewer Component, Extracted from redux-devtools",
"keywords": [
"react",

View File

@ -1,5 +1,17 @@
# Change Log
## 2.2.1
### Patch Changes
- Updated dependencies [b323f77d]
- Updated dependencies [b323f77d]
- d3-state-visualizer@2.0.0
- @redux-devtools/chart-monitor@4.0.0
- @redux-devtools/inspector-monitor@3.0.2
- @redux-devtools/log-monitor@4.0.2
- @redux-devtools/rtk-query-monitor@3.1.1
## 2.2.0
### Minor Changes

View File

@ -1,6 +1,6 @@
{
"name": "@redux-devtools/app",
"version": "2.2.0",
"version": "2.2.1",
"description": "Redux DevTools app",
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-app",
"bugs": {
@ -41,18 +41,18 @@
},
"dependencies": {
"@babel/runtime": "^7.20.6",
"@redux-devtools/chart-monitor": "^3.0.0",
"@redux-devtools/chart-monitor": "^4.0.0",
"@redux-devtools/core": "^3.13.0",
"@redux-devtools/inspector-monitor": "^3.0.0",
"@redux-devtools/inspector-monitor": "^3.0.2",
"@redux-devtools/inspector-monitor-test-tab": "^1.0.0",
"@redux-devtools/inspector-monitor-trace-tab": "^1.0.0",
"@redux-devtools/log-monitor": "^4.0.0",
"@redux-devtools/rtk-query-monitor": "^3.0.0",
"@redux-devtools/log-monitor": "^4.0.2",
"@redux-devtools/rtk-query-monitor": "^3.1.1",
"@redux-devtools/slider-monitor": "^4.0.0",
"@redux-devtools/ui": "^1.3.0",
"@reduxjs/toolkit": "^1.9.1",
"@types/prop-types": "^15.7.5",
"d3-state-visualizer": "^1.6.0",
"d3-state-visualizer": "^2.0.0",
"javascript-stringify": "^2.1.0",
"jsan": "^3.1.14",
"jsondiffpatch": "^0.4.1",

View File

@ -1,5 +1,19 @@
# Change Log
## 4.0.0
### Major Changes
- b323f77d: Upgrade D3
- Split `style` option into `chartStyles`, `nodeStyleOptions`, `textStyleOptions`, and `linkStyles`.
- The shape of the argument passed to the `onClickText` option has been updated.
### Patch Changes
- Updated dependencies [b323f77d]
- d3-state-visualizer@2.0.0
## 3.0.1
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@redux-devtools/chart-monitor",
"version": "3.0.1",
"version": "4.0.0",
"description": "Chart monitor for Redux DevTools",
"keywords": [
"redux",
@ -41,7 +41,7 @@
"dependencies": {
"@babel/runtime": "^7.20.6",
"@types/redux-devtools-themes": "^1.0.0",
"d3-state-visualizer": "^1.6.0",
"d3-state-visualizer": "^2.0.0",
"deepmerge": "^4.2.2",
"redux-devtools-themes": "^1.0.0"
},

View File

@ -1,5 +1,12 @@
# Change Log
## 3.0.2
### Patch Changes
- Updated dependencies [81926f32]
- react-json-tree@0.18.0
## 3.0.1
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@redux-devtools/inspector-monitor",
"version": "3.0.1",
"version": "3.0.2",
"description": "Redux DevTools Diff Monitor",
"homepage": "https://github.com/reduxjs/redux-devtools/tree/master/packages/redux-devtools-inspector-monitor",
"bugs": {
@ -50,7 +50,7 @@
"prop-types": "^15.8.1",
"react-base16-styling": "^0.9.1",
"react-dragula": "^1.1.17",
"react-json-tree": "^0.17.0",
"react-json-tree": "^0.18.0",
"redux-devtools-themes": "^1.0.0"
},
"devDependencies": {

View File

@ -1,5 +1,12 @@
# Change Log
## 4.0.2
### Patch Changes
- Updated dependencies [81926f32]
- react-json-tree@0.18.0
## 4.0.1
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@redux-devtools/log-monitor",
"version": "4.0.1",
"version": "4.0.2",
"description": "The default tree view monitor for Redux DevTools",
"keywords": [
"redux",
@ -47,7 +47,7 @@
"@types/redux-devtools-themes": "^1.0.0",
"lodash.debounce": "^4.0.8",
"prop-types": "^15.8.1",
"react-json-tree": "^0.17.0",
"react-json-tree": "^0.18.0",
"redux-devtools-themes": "^1.0.0"
},
"devDependencies": {

View File

@ -1,5 +1,12 @@
# Change Log
## 3.1.1
### Patch Changes
- Updated dependencies [81926f32]
- react-json-tree@0.18.0
## 3.1.0
### Minor Changes

View File

@ -1,6 +1,6 @@
{
"name": "@redux-devtools/rtk-query-monitor",
"version": "3.1.0",
"version": "3.1.1",
"description": "rtk-query monitor for Redux DevTools",
"keywords": [
"redux",
@ -56,7 +56,7 @@
"lodash.debounce": "^4.0.8",
"prop-types": "^15.8.1",
"react-base16-styling": "^0.9.1",
"react-json-tree": "^0.17.0",
"react-json-tree": "^0.18.0",
"redux-devtools-themes": "^1.0.0"
},
"devDependencies": {

View File

@ -47,7 +47,7 @@ importers:
'@babel/preset-react': ^7.18.6
'@babel/preset-typescript': ^7.18.6
'@babel/register': ^7.18.9
'@redux-devtools/app': ^2.2.0
'@redux-devtools/app': ^2.2.1
'@redux-devtools/core': ^3.13.0
'@redux-devtools/instrument': ^2.1.0
'@redux-devtools/serialize': ^0.4.1
@ -89,7 +89,7 @@ importers:
react-dom: ^18.2.0
react-icons: ^4.7.1
react-is: ^18.2.0
react-json-tree: ^0.17.0
react-json-tree: ^0.18.0
react-redux: ^8.0.5
react-transform-catch-errors: ^1.0.2
react-transform-hmr: ^1.0.4
@ -183,11 +183,11 @@ importers:
'@typescript-eslint/eslint-plugin': ^5.47.0
'@typescript-eslint/parser': ^5.47.0
d3: ^7.8.0
d3tooltip: ^2.1.0
d3tooltip: ^3.0.0
deepmerge: ^4.2.2
eslint: ^8.30.0
eslint-config-prettier: ^8.5.0
map2tree: ^2.1.0
map2tree: ^3.0.0
ramda: ^0.28.0
rimraf: ^3.0.2
typescript: ~4.9.4
@ -223,12 +223,12 @@ importers:
'@typescript-eslint/parser': ^5.47.0
babel-loader: ^9.1.0
cross-env: ^7.0.3
d3-state-visualizer: ^1.6.0
d3-state-visualizer: ^2.0.0
eslint: ^8.30.0
eslint-config-prettier: ^8.5.0
fork-ts-checker-webpack-plugin: ^7.2.14
html-webpack-plugin: ^5.5.0
map2tree: ^2.1.0
map2tree: ^3.0.0
ts-node: ^10.9.1
typescript: ~4.9.4
webpack: ^5.75.0
@ -615,7 +615,7 @@ importers:
react: ^18.2.0
react-base16-styling: ^0.9.1
react-dom: ^18.2.0
react-json-tree: ^0.17.0
react-json-tree: ^0.18.0
ts-node: ^10.9.1
typescript: ~4.9.4
webpack: ^5.75.0
@ -728,13 +728,13 @@ importers:
'@babel/preset-react': ^7.18.6
'@babel/preset-typescript': ^7.18.6
'@babel/runtime': ^7.20.6
'@redux-devtools/chart-monitor': ^3.0.0
'@redux-devtools/chart-monitor': ^4.0.0
'@redux-devtools/core': ^3.13.0
'@redux-devtools/inspector-monitor': ^3.0.0
'@redux-devtools/inspector-monitor': ^3.0.2
'@redux-devtools/inspector-monitor-test-tab': ^1.0.0
'@redux-devtools/inspector-monitor-trace-tab': ^1.0.0
'@redux-devtools/log-monitor': ^4.0.0
'@redux-devtools/rtk-query-monitor': ^3.0.0
'@redux-devtools/log-monitor': ^4.0.2
'@redux-devtools/rtk-query-monitor': ^3.1.1
'@redux-devtools/slider-monitor': ^4.0.0
'@redux-devtools/ui': ^1.3.0
'@reduxjs/toolkit': ^1.9.1
@ -758,7 +758,7 @@ importers:
babel-loader: ^9.1.0
cross-env: ^7.0.3
css-loader: ^6.7.3
d3-state-visualizer: ^1.6.0
d3-state-visualizer: ^2.0.0
eslint: ^8.30.0
eslint-config-prettier: ^8.5.0
eslint-plugin-jest: ^27.1.7
@ -882,7 +882,7 @@ importers:
'@types/redux-devtools-themes': ^1.0.0
'@typescript-eslint/eslint-plugin': ^5.47.0
'@typescript-eslint/parser': ^5.47.0
d3-state-visualizer: ^1.6.0
d3-state-visualizer: ^2.0.0
deepmerge: ^4.2.2
eslint: ^8.30.0
eslint-config-prettier: ^8.5.0
@ -1156,7 +1156,7 @@ importers:
react: ^18.2.0
react-base16-styling: ^0.9.1
react-dragula: ^1.1.17
react-json-tree: ^0.17.0
react-json-tree: ^0.18.0
redux: ^4.2.0
redux-devtools-themes: ^1.0.0
rimraf: ^3.0.2
@ -1629,7 +1629,7 @@ importers:
lodash.debounce: ^4.0.8
prop-types: ^15.8.1
react: ^18.2.0
react-json-tree: ^0.17.0
react-json-tree: ^0.18.0
redux: ^4.2.0
redux-devtools-themes: ^1.0.0
rimraf: ^3.0.2
@ -1757,7 +1757,7 @@ importers:
react: ^18.2.0
react-base16-styling: ^0.9.1
react-dom: ^18.2.0
react-json-tree: ^0.17.0
react-json-tree: ^0.18.0
react-redux: ^8.0.5
redux: ^4.2.0
redux-devtools-themes: ^1.0.0