Skip to content

fix(deps): update all non-major dependencies #1894

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jun 24, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion extension/docs/API/Arguments.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ _number_ - maximum stack trace frames to be stored (in case `trace` option was p
_boolean_ or _object_ which contains:

- **options** `object or boolean`:

- `undefined` - will use regular `JSON.stringify` to send data (it's the fast mode).
- `false` - will handle also circular references.
- `true` - will handle also date, regex, undefined, primitives, error objects, symbols, maps, sets and functions.
Expand Down
4 changes: 2 additions & 2 deletions extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@
"esbuild": "^0.25.5",
"globals": "^16.2.0",
"immutable": "^5.1.3",
"jest": "^30.0.0",
"jest-environment-jsdom": "^30.0.0",
"jest": "^30.0.2",
"jest-environment-jsdom": "^30.0.2",
"pug": "^3.0.3",
"rimraf": "^6.0.1",
"selenium-webdriver": "^4.33.0",
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
"private": true,
"devDependencies": {
"@babel/core": "^7.27.4",
"@changesets/cli": "^2.29.4",
"@changesets/cli": "^2.29.5",
"@eslint/compat": "^1.3.0",
"@eslint/js": "^9.29.0",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-jest": "^29.0.0",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"jest": "^30.0.0",
"prettier": "3.5.3",
"jest": "^30.0.2",
"prettier": "3.6.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.34.1"
"typescript-eslint": "^8.35.0"
},
"scripts": {
"format": "prettier --write .",
Expand All @@ -24,5 +24,5 @@
"clean:all": "pnpm --recursive run clean",
"release": "pnpm build:all && pnpm publish -r"
},
"packageManager": "[email protected].1"
"packageManager": "[email protected].3"
}
1 change: 0 additions & 1 deletion packages/d3-state-visualizer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
### 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.
Expand Down
2 changes: 1 addition & 1 deletion packages/d3-state-visualizer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"d3tooltip": "workspace:^",
"deepmerge": "^4.3.1",
"map2tree": "workspace:^",
"ramda": "^0.30.1"
"ramda": "^0.31.3"
},
"devDependencies": {
"@types/ramda": "^0.30.2",
Expand Down
1 change: 0 additions & 1 deletion packages/d3tooltip/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
### Major Changes

- b323f77d: Upgrade D3

- Remove UMD build.
- Upgrade d3 peer dependency from v3 to v7.
- Remove `attr` configuration method.
Expand Down
2 changes: 1 addition & 1 deletion packages/map2tree/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"@types/jest": "^30.0.0",
"@types/lodash-es": "^4.17.12",
"immutable": "^5.1.3",
"jest": "^30.0.0",
"jest": "^30.0.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.0",
"typescript": "~5.8.3"
Expand Down
6 changes: 3 additions & 3 deletions packages/react-base16-styling/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"prepublish": "pnpm run lint && pnpm run test"
},
"dependencies": {
"@types/lodash": "^4.17.17",
"@types/lodash": "^4.17.18",
"color": "^5.0.0",
"csstype": "^3.1.3",
"lodash-es": "^4.17.21"
Expand All @@ -45,8 +45,8 @@
"@types/color": "^4.2.0",
"@types/jest": "^30.0.0",
"@types/lodash-es": "^4.17.12",
"jest": "^30.0.0",
"jest-environment-jsdom": "^30.0.0",
"jest": "^30.0.2",
"jest-environment-jsdom": "^30.0.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.0",
"typescript": "~5.8.3"
Expand Down
3 changes: 2 additions & 1 deletion packages/react-dock/src/autoprefix.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ const prefixes = ['Moz', 'Webkit', 'ms', 'O'];
function prefixProp<Value>(key: string, value: Value) {
return prefixes.reduce<{ [key: string]: Value }>(
(obj, pre) => (
(obj[pre + key[0].toUpperCase() + key.substr(1)] = value), obj
(obj[pre + key[0].toUpperCase() + key.substr(1)] = value),
obj
),
{},
);
Expand Down
1 change: 0 additions & 1 deletion packages/react-json-tree/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
### 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`.
Expand Down
4 changes: 2 additions & 2 deletions packages/react-json-tree/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@
"prepublish": "pnpm run lint && pnpm run test"
},
"dependencies": {
"@types/lodash": "^4.17.17",
"@types/lodash": "^4.17.18",
"react-base16-styling": "workspace:^"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/react": "^19.1.8",
"jest": "^30.0.0",
"jest": "^30.0.2",
"react": "^19.1.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/redux-devtools-app-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@
"@types/react-dom": "^19.1.6",
"cross-env": "^7.0.3",
"esbuild": "^0.25.5",
"jest": "^30.0.0",
"jest-environment-jsdom": "^30.0.0",
"jest": "^30.0.2",
"jest-environment-jsdom": "^30.0.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-redux": "^9.2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/redux-devtools-app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"react-redux": "^9.2.0",
"redux": "^5.0.1",
"redux-persist": "^6.0.0",
"socketcluster-client": "^19.2.6"
"socketcluster-client": "^19.2.7"
},
"devDependencies": {
"@babel/cli": "^7.27.2",
Expand Down
1 change: 0 additions & 1 deletion packages/redux-devtools-chart-monitor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@
### 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.

Expand Down
6 changes: 3 additions & 3 deletions packages/redux-devtools-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"react-dom": "^19.1.0",
"react-is": "^19.1.0",
"semver": "^7.7.2",
"socketcluster-server": "^19.1.2",
"socketcluster-server": "^19.2.0",
"sqlite3": "^5.1.7",
"uuid": "^11.1.0"
},
Expand All @@ -85,10 +85,10 @@
"@types/supertest": "^6.0.3",
"@types/uuid": "^10.0.0",
"globals": "^16.2.0",
"jest": "^30.0.0",
"jest": "^30.0.2",
"ncp": "^2.0.0",
"rimraf": "^6.0.1",
"socketcluster-client": "^19.2.6",
"socketcluster-client": "^19.2.7",
"supertest": "^7.1.1",
"ts-jest": "^29.4.0",
"typescript": "~5.8.3"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ const HUGE_ARRAY = Array.from({ length: 5000 }).map((_, key) => ({

const HUGE_OBJECT = Array.from({ length: 5000 }).reduce(
(o: { [key: string]: string }, _, key) => (
(o[`key ${key}`] = `item ${key}`), o
(o[`key ${key}`] = `item ${key}`),
o
),
{},
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@
"@types/jsan": "^3.1.5",
"@types/object-path": "^0.11.4",
"@types/react": "^19.1.8",
"jest": "^30.0.0",
"jest-environment-jsdom": "^30.0.0",
"jest": "^30.0.2",
"jest-environment-jsdom": "^30.0.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"redux": "^5.0.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@
"@types/path-browserify": "^1.0.3",
"@types/react": "^19.1.8",
"@types/source-map": "0.5.2",
"jest": "^30.0.0",
"jest-environment-jsdom": "^30.0.0",
"jest": "^30.0.2",
"jest-environment-jsdom": "^30.0.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"redux": "^5.0.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ const HUGE_ARRAY = Array.from({ length: 5000 }).map((_, key) => ({

const HUGE_OBJECT = Array.from({ length: 5000 }).reduce(
(o: { [key: string]: string }, _, key) => (
(o[`key ${key}`] = `item ${key}`), o
(o[`key ${key}`] = `item ${key}`),
o
),
{},
);
Expand Down
2 changes: 1 addition & 1 deletion packages/redux-devtools-inspector-monitor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@types/lodash": "^4.17.17",
"@types/lodash": "^4.17.18",
"dateformat": "^5.0.3",
"hex-rgba": "^1.0.2",
"immutable": "^5.1.3",
Expand Down
2 changes: 1 addition & 1 deletion packages/redux-devtools-instrument/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"@babel/preset-typescript": "^7.27.1",
"@types/jest": "^30.0.0",
"@types/node": "^22.15.32",
"jest": "^30.0.0",
"jest": "^30.0.2",
"redux": "^5.0.1",
"rimraf": "^6.0.1",
"rxjs": "^7.8.2",
Expand Down
6 changes: 3 additions & 3 deletions packages/redux-devtools-remote/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"@redux-devtools/utils": "workspace:^",
"jsan": "^3.1.14",
"rn-host-detect": "^1.2.0",
"socketcluster-client": "^19.2.6"
"socketcluster-client": "^19.2.7"
},
"devDependencies": {
"@babel/cli": "^7.27.2",
Expand All @@ -59,8 +59,8 @@
"@types/node": "^22.15.32",
"@types/rn-host-detect": "^1.2.2",
"@types/socketcluster-client": "^19.1.0",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"redux": "^5.0.1",
Expand Down
6 changes: 3 additions & 3 deletions packages/redux-devtools-rtk-query-monitor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"dependencies": {
"@babel/runtime": "^7.27.6",
"@redux-devtools/ui": "workspace:^",
"@types/lodash": "^4.17.17",
"@types/lodash": "^4.17.18",
"hex-rgba": "^1.0.2",
"immutable": "^5.1.3",
"lodash.debounce": "^4.0.8",
Expand All @@ -73,8 +73,8 @@
"@types/hex-rgba": "^1.0.3",
"@types/lodash.debounce": "^4.0.9",
"@types/react": "^19.1.8",
"jest": "^30.0.0",
"jest-environment-jsdom": "^30.0.0",
"jest": "^30.0.2",
"jest-environment-jsdom": "^30.0.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-redux": "^9.2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/redux-devtools-serialize/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"@types/jest": "^30.0.0",
"@types/jsan": "^3.1.5",
"immutable": "^5.1.3",
"jest": "^30.0.0",
"jest": "^30.0.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.0",
"typescript": "~5.8.3"
Expand Down
10 changes: 5 additions & 5 deletions packages/redux-devtools-ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,8 @@
"@babel/preset-typescript": "^7.27.1",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@storybook/addon-onboarding": "^9.0.11",
"@storybook/react-vite": "^9.0.11",
"@storybook/addon-onboarding": "^9.0.13",
"@storybook/react-vite": "^9.0.13",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
Expand All @@ -76,14 +76,14 @@
"@types/react": "^19.1.8",
"babel-loader": "^10.0.0",
"csstype": "^3.1.3",
"jest": "^30.0.0",
"jest-environment-jsdom": "^30.0.0",
"jest": "^30.0.2",
"jest-environment-jsdom": "^30.0.2",
"ncp": "^2.0.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-is": "^19.1.0",
"rimraf": "^6.0.1",
"storybook": "^9.0.11",
"storybook": "^9.0.13",
"ts-jest": "^29.4.0",
"typescript": "~5.8.3",
"vite": "^6.3.5"
Expand Down
2 changes: 1 addition & 1 deletion packages/redux-devtools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"@types/jest": "^30.0.0",
"@types/node": "^22.15.32",
"@types/react": "^19.1.8",
"jest": "^30.0.0",
"jest": "^30.0.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-redux": "^9.2.0",
Expand Down
Loading