Skip to content

Commit f095d95

Browse files
committed
Update dependencies
1 parent 772dc61 commit f095d95

File tree

20 files changed

+157
-144
lines changed

20 files changed

+157
-144
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Added
1111

12-
- Core features moved to new package `@react-querybuilder/core`. All exports are re-exported by `react-querybuilder`, so no breaking changes.
12+
- [#942] Core features moved to new package `@react-querybuilder/core`. All exports are re-exported by `react-querybuilder`, so no breaking changes.
1313
- [#935] New class `dndDropNotAllowed` added to elements that cannot accept a drop from the hovering element. Default style is `cursor: not-allowed`.
1414

1515
## [v8.8.4] - 2025-08-27
@@ -1995,6 +1995,7 @@ Maintenance release focused on converting to a monorepo with Vite driving the bu
19951995
[#932]: https://github.com/react-querybuilder/react-querybuilder/pull/932
19961996
[#935]: https://github.com/react-querybuilder/react-querybuilder/pull/935
19971997
[#937]: https://github.com/react-querybuilder/react-querybuilder/pull/937
1998+
[#942]: https://github.com/react-querybuilder/react-querybuilder/pull/942
19981999

19992000
<!-- #endregion -->
20002001

bun.lock

Lines changed: 107 additions & 95 deletions
Large diffs are not rendered by default.

package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -134,12 +134,12 @@
134134
"@types/glob": "^9.0.0",
135135
"@types/jest": "^30.0.0",
136136
"@types/jscodeshift": "^17.3.0",
137-
"@types/node": "^24.4.0",
137+
"@types/node": "^24.5.2",
138138
"@types/react": "^19.1.13",
139139
"@types/react-dom": "^19.1.9",
140140
"@types/react-native-web": "^0.19.2",
141-
"@types/web": "^0.0.267",
142-
"@typescript/native-preview": "^7.0.0-dev.20250915.1",
141+
"@types/web": "^0.0.269",
142+
"@typescript/native-preview": "^7.0.0-dev.20250918.1",
143143
"bun-plugin-tailwind": "^0.0.15",
144144
"concurrently": "^9.2.1",
145145
"esbuild-analyzer": "^0.2.0",
@@ -150,12 +150,12 @@
150150
"jest-watch-typeahead": "^3.0.1",
151151
"jscodeshift": "^17.3.0",
152152
"jsdom-testing-mocks": "^1.16.0",
153-
"oxc-transform": "^0.89.0",
154-
"oxlint": "^1.15.0",
153+
"oxc-transform": "^0.90.0",
154+
"oxlint": "^1.16.0",
155155
"oxlint-tsgolint": "^0.2.0",
156156
"postcss": "^8.5.6",
157157
"prettier": "3.6.2",
158-
"prettier-plugin-organize-imports": "^4.2.0",
158+
"prettier-plugin-organize-imports": "^4.3.0",
159159
"react": "^19.1.1",
160160
"react-dnd": "^16.0.1",
161161
"react-dnd-test-backend": "^16.0.1",
@@ -164,10 +164,10 @@
164164
"regenerator-runtime": "^0.14.1",
165165
"rollup-plugin-visualizer": "^6.0.3",
166166
"swc-loader": "^0.2.6",
167-
"tsdown": "^0.15.1",
167+
"tsdown": "^0.15.2",
168168
"type-fest": "^4.41.0",
169169
"typescript": "^5.9.2",
170-
"vite": "^7.1.5"
170+
"vite": "^7.1.6"
171171
},
172172
"overrides": {
173173
"@testing-library/user-event": "14.5.2"

packages/antd/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,15 @@
5757
"@testing-library/dom": "^10.4.1",
5858
"@testing-library/react": "^16.3.0",
5959
"@types/react": "^19.1.13",
60-
"@vitejs/plugin-react": "^5.0.2",
61-
"antd": "^5.27.3",
60+
"@vitejs/plugin-react": "^5.0.3",
61+
"antd": "^5.27.4",
6262
"dayjs": "^1.11.18",
6363
"react": "^19.1.1",
6464
"react-dom": "^19.1.1",
6565
"react-querybuilder": "8.8.4",
6666
"rollup-plugin-visualizer": "^6.0.3",
6767
"typescript": "^5.9.2",
68-
"vite": "^7.1.5"
68+
"vite": "^7.1.6"
6969
},
7070
"peerDependencies": {
7171
"@ant-design/icons": ">=5",

packages/bootstrap/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,15 +55,15 @@
5555
"@testing-library/dom": "^10.4.1",
5656
"@testing-library/react": "^16.3.0",
5757
"@types/react": "^19.1.13",
58-
"@vitejs/plugin-react": "^5.0.2",
58+
"@vitejs/plugin-react": "^5.0.3",
5959
"bootstrap": "^5.3.8",
6060
"bootstrap-icons": "^1.13.1",
6161
"react": "^19.1.1",
6262
"react-dom": "^19.1.1",
6363
"react-querybuilder": "8.8.4",
6464
"rollup-plugin-visualizer": "^6.0.3",
6565
"typescript": "^5.9.2",
66-
"vite": "^7.1.5"
66+
"vite": "^7.1.6"
6767
},
6868
"peerDependencies": {
6969
"bootstrap": ">=5",

packages/bulma/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@
5454
"@testing-library/dom": "^10.4.1",
5555
"@testing-library/react": "^16.3.0",
5656
"@types/react": "^19.1.13",
57-
"@vitejs/plugin-react": "^5.0.2",
57+
"@vitejs/plugin-react": "^5.0.3",
5858
"bulma": "^1.0.4",
5959
"react": "^19.1.1",
6060
"react-dom": "^19.1.1",
6161
"react-querybuilder": "8.8.4",
6262
"rollup-plugin-visualizer": "^6.0.3",
6363
"typescript": "^5.9.2",
64-
"vite": "^7.1.5"
64+
"vite": "^7.1.6"
6565
},
6666
"peerDependencies": {
6767
"bulma": "^0.9.4 || ^1",

packages/chakra/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,15 @@
5757
"@testing-library/dom": "^10.4.1",
5858
"@testing-library/react": "^16.3.0",
5959
"@types/react": "^19.1.13",
60-
"@vitejs/plugin-react": "^5.0.2",
60+
"@vitejs/plugin-react": "^5.0.3",
6161
"next-themes": "^0.4.6",
6262
"react": "^19.1.1",
6363
"react-dom": "^19.1.1",
6464
"react-icons": "^5.5.0",
6565
"react-querybuilder": "8.8.4",
6666
"rollup-plugin-visualizer": "^6.0.3",
6767
"typescript": "^5.9.2",
68-
"vite": "^7.1.5"
68+
"vite": "^7.1.6"
6969
},
7070
"peerDependencies": {
7171
"@chakra-ui/react": "^3",

packages/core/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -95,16 +95,16 @@
9595
"@babel/preset-typescript": "^7.27.1",
9696
"@electric-sql/pglite": "^0.3.8",
9797
"@types/json-logic-js": "^2.0.8",
98-
"@types/node": "^24.4.0",
98+
"@types/node": "^24.5.2",
9999
"babel-plugin-istanbul": "^7.0.1",
100100
"drizzle-orm": "^0.44.5",
101101
"json-logic-js": "^2.0.5",
102102
"jsonata": "^2.1.0",
103-
"mongodb-memory-server-core": "^10.2.0",
103+
"mongodb-memory-server-core": "^10.2.1",
104104
"mongoose": "^8.18.1",
105105
"pglite-prisma-adapter": "^0.6.1",
106106
"prisma": "~6.14.0",
107-
"query-string": "^9.3.0",
107+
"query-string": "^9.3.1",
108108
"regenerator-runtime": "^0.14.1",
109109
"rollup-plugin-visualizer": "^6.0.3",
110110
"sass": "^1.92.1",

packages/datetime/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,20 +93,20 @@
9393
"@testing-library/user-event": "14.5.2",
9494
"@types/luxon": "^3.7.1",
9595
"@types/react": "^19.1.13",
96-
"@vitejs/plugin-react": "^5.0.2",
96+
"@vitejs/plugin-react": "^5.0.3",
9797
"date-fns": "^4.1.0",
9898
"dayjs": "^1.11.18",
9999
"json-logic-js": "^2.0.5",
100100
"jsonata": "^2.1.0",
101101
"luxon": "^3.7.2",
102-
"mongodb-memory-server-core": "^10.2.0",
102+
"mongodb-memory-server-core": "^10.2.1",
103103
"mongoose": "^8.18.1",
104104
"react": "^19.1.1",
105105
"react-dom": "^19.1.1",
106106
"react-querybuilder": "8.8.4",
107107
"rollup-plugin-visualizer": "^6.0.3",
108108
"typescript": "^5.9.2",
109-
"vite": "^7.1.5"
109+
"vite": "^7.1.6"
110110
},
111111
"peerDependencies": {
112112
"date-fns": "^4.1.0",

packages/dnd/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@
5454
"devDependencies": {
5555
"@testing-library/dom": "^10.4.1",
5656
"@testing-library/react": "^16.3.0",
57-
"@types/node": "^24.4.0",
57+
"@types/node": "^24.5.2",
5858
"@types/react": "^19.1.13",
59-
"@vitejs/plugin-react": "^5.0.2",
59+
"@vitejs/plugin-react": "^5.0.3",
6060
"react": "^19.1.1",
6161
"react-dnd": "^16.0.1",
6262
"react-dnd-html5-backend": "^16.0.1",
@@ -67,7 +67,7 @@
6767
"react-querybuilder": "8.8.4",
6868
"rollup-plugin-visualizer": "^6.0.3",
6969
"typescript": "^5.9.2",
70-
"vite": "^7.1.5"
70+
"vite": "^7.1.6"
7171
},
7272
"peerDependencies": {
7373
"react": ">=18",

0 commit comments

Comments
 (0)