From adfb4182026c97b550e120bdf9e463b93910993b Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Jun 2026 11:14:12 +0000 Subject: [PATCH] ci: Version Packages --- .../event-client-production-stripping.md | 12 --- .changeset/smart-checkbox-controlled.md | 5 -- .../solid-hook-naming-react-compiler.md | 13 --- e2e/helpers/CHANGELOG.md | 8 ++ e2e/helpers/package.json | 2 +- examples/angular/a11y-devtools/CHANGELOG.md | 9 ++ examples/angular/a11y-devtools/package.json | 8 +- examples/angular/basic/CHANGELOG.md | 8 ++ examples/angular/basic/package.json | 6 +- examples/angular/panel/CHANGELOG.md | 9 ++ examples/angular/panel/package.json | 8 +- examples/angular/with-devtools/CHANGELOG.md | 8 ++ examples/angular/with-devtools/package.json | 6 +- examples/preact/basic/package.json | 8 +- examples/preact/custom-devtools/package.json | 2 +- examples/react/a11y-devtools/package.json | 6 +- examples/react/basic/package.json | 10 +-- examples/react/bundling-repro/package.json | 2 +- examples/react/custom-devtools/package.json | 4 +- examples/react/drizzle/package.json | 4 +- examples/react/https/package.json | 8 +- examples/react/start/package.json | 4 +- examples/react/time-travel/package.json | 2 +- examples/solid/a11y-devtools/package.json | 4 +- examples/solid/basic/package.json | 4 +- examples/solid/devtools-ui/package.json | 6 +- examples/solid/start/package.json | 2 +- examples/vue/basic/package.json | 4 +- packages/angular-devtools/CHANGELOG.md | 7 ++ packages/angular-devtools/package.json | 2 +- packages/devtools-a11y/CHANGELOG.md | 15 ++++ packages/devtools-a11y/package.json | 2 +- packages/devtools-client/CHANGELOG.md | 7 ++ packages/devtools-client/package.json | 2 +- packages/devtools-ui/CHANGELOG.md | 16 ++++ packages/devtools-ui/package.json | 2 +- packages/devtools-vite/CHANGELOG.md | 7 ++ packages/devtools-vite/package.json | 2 +- packages/devtools/CHANGELOG.md | 16 ++++ packages/devtools/package.json | 2 +- packages/event-bus-client/CHANGELOG.md | 13 +++ packages/event-bus-client/package.json | 2 +- packages/preact-devtools/CHANGELOG.md | 7 ++ packages/preact-devtools/package.json | 2 +- packages/react-devtools/CHANGELOG.md | 7 ++ packages/react-devtools/package.json | 2 +- packages/solid-devtools/CHANGELOG.md | 7 ++ packages/solid-devtools/package.json | 2 +- packages/svelte-devtools/CHANGELOG.md | 7 ++ packages/svelte-devtools/package.json | 2 +- packages/vue-devtools/CHANGELOG.md | 7 ++ packages/vue-devtools/package.json | 2 +- pnpm-lock.yaml | 90 +++++++++---------- 53 files changed, 265 insertions(+), 137 deletions(-) delete mode 100644 .changeset/event-client-production-stripping.md delete mode 100644 .changeset/smart-checkbox-controlled.md delete mode 100644 .changeset/solid-hook-naming-react-compiler.md create mode 100644 e2e/helpers/CHANGELOG.md diff --git a/.changeset/event-client-production-stripping.md b/.changeset/event-client-production-stripping.md deleted file mode 100644 index 32a79a35..00000000 --- a/.changeset/event-client-production-stripping.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -'@tanstack/devtools-event-client': minor ---- - -The root export of `@tanstack/devtools-event-client` now resolves to a no-op -outside development (`process.env.NODE_ENV !== 'development'`), so the real -`EventClient` is tree-shaken out of production bundles by default. - -If you want devtools events to keep working in production, import the real -client from the new `@tanstack/devtools-event-client/production` subpath, which -always ships the real implementation. The public API is identical between the -two imports. diff --git a/.changeset/smart-checkbox-controlled.md b/.changeset/smart-checkbox-controlled.md deleted file mode 100644 index 2b13ea25..00000000 --- a/.changeset/smart-checkbox-controlled.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@tanstack/devtools-ui': patch ---- - -Fix `Checkbox` ignoring controlled `checked` prop updates. It previously read `checked` into internal state only once at mount, so it never reflected later prop changes when used as a controlled input (e.g. the devtools settings panel). It now reflects the `checked` prop whenever it is provided and falls back to internal state only when uncontrolled. diff --git a/.changeset/solid-hook-naming-react-compiler.md b/.changeset/solid-hook-naming-react-compiler.md deleted file mode 100644 index 0785e0d3..00000000 --- a/.changeset/solid-hook-naming-react-compiler.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -'@tanstack/devtools-ui': minor -'@tanstack/devtools': patch -'@tanstack/devtools-a11y': patch ---- - -fix: rename Solid `use*` primitives to `create*` so React Compiler doesn't transform them - -The devtools packages are written in Solid but used React-style naming (`useStyles`, `useTheme`, `useDevtoolsState`, …) for their custom primitives. When an app enables React Compiler, the compiler matches the `use*` naming convention and transforms/optimizes this Solid code as if it were React, breaking the panel (it is Solid JSX, not React). - -All custom Solid primitives in `@tanstack/devtools`, `@tanstack/devtools-ui`, and `@tanstack/devtools-a11y` are renamed from `use*` to `create*`, and Solid's own `useContext` / `@solid-primitives` `useKeyDownList` are imported under non-`use` aliases (`getContext`, `getKeyDownList`). - -Breaking for `@tanstack/devtools-ui`: the exported `useTheme` is renamed to `createTheme`. diff --git a/e2e/helpers/CHANGELOG.md b/e2e/helpers/CHANGELOG.md new file mode 100644 index 00000000..780dc6ce --- /dev/null +++ b/e2e/helpers/CHANGELOG.md @@ -0,0 +1,8 @@ +# @tanstack/devtools-e2e + +## 0.0.1 + +### Patch Changes + +- Updated dependencies [[`b1ac893`](https://github.com/TanStack/devtools/commit/b1ac893a7dc6d5b75df0a3a12e56468451656232)]: + - @tanstack/devtools-event-client@0.5.0 diff --git a/e2e/helpers/package.json b/e2e/helpers/package.json index cd4bcb06..4896f5b2 100644 --- a/e2e/helpers/package.json +++ b/e2e/helpers/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/devtools-e2e", - "version": "0.0.0", + "version": "0.0.1", "private": true, "type": "module", "exports": { diff --git a/examples/angular/a11y-devtools/CHANGELOG.md b/examples/angular/a11y-devtools/CHANGELOG.md index 44b9fbd5..d50a810c 100644 --- a/examples/angular/a11y-devtools/CHANGELOG.md +++ b/examples/angular/a11y-devtools/CHANGELOG.md @@ -1,5 +1,14 @@ # @tanstack/devtools-example-angular-a11y-devtools +## 0.0.6 + +### Patch Changes + +- Updated dependencies [[`b1ac893`](https://github.com/TanStack/devtools/commit/b1ac893a7dc6d5b75df0a3a12e56468451656232), [`ea3c674`](https://github.com/TanStack/devtools/commit/ea3c6749b07f4328f1c9cb352c05135aa773a22f)]: + - @tanstack/devtools-event-client@0.5.0 + - @tanstack/devtools-a11y@0.1.6 + - @tanstack/angular-devtools@0.0.7 + ## 0.0.5 ### Patch Changes diff --git a/examples/angular/a11y-devtools/package.json b/examples/angular/a11y-devtools/package.json index 1f607ac6..bfbaea8a 100644 --- a/examples/angular/a11y-devtools/package.json +++ b/examples/angular/a11y-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/devtools-example-angular-a11y-devtools", - "version": "0.0.5", + "version": "0.0.6", "scripts": { "ng": "ng", "start": "ng serve", @@ -17,9 +17,9 @@ "@angular/forms": "^21.2.0", "@angular/platform-browser": "^21.2.0", "@angular/router": "^21.2.0", - "@tanstack/angular-devtools": "^0.0.6", - "@tanstack/devtools-a11y": "^0.1.5", - "@tanstack/devtools-event-client": "0.4.4", + "@tanstack/angular-devtools": "^0.0.7", + "@tanstack/devtools-a11y": "^0.1.6", + "@tanstack/devtools-event-client": "0.5.0", "rxjs": "~7.8.0", "tslib": "^2.3.0" }, diff --git a/examples/angular/basic/CHANGELOG.md b/examples/angular/basic/CHANGELOG.md index 0df6f52b..f4bcc830 100644 --- a/examples/angular/basic/CHANGELOG.md +++ b/examples/angular/basic/CHANGELOG.md @@ -1,5 +1,13 @@ # @tanstack/devtools-example-angular-basic +## 0.0.6 + +### Patch Changes + +- Updated dependencies [[`b1ac893`](https://github.com/TanStack/devtools/commit/b1ac893a7dc6d5b75df0a3a12e56468451656232)]: + - @tanstack/devtools-event-client@0.5.0 + - @tanstack/angular-devtools@0.0.7 + ## 0.0.5 ### Patch Changes diff --git a/examples/angular/basic/package.json b/examples/angular/basic/package.json index 4bc65f24..04c85dee 100644 --- a/examples/angular/basic/package.json +++ b/examples/angular/basic/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/devtools-example-angular-basic", - "version": "0.0.5", + "version": "0.0.6", "scripts": { "ng": "ng", "start": "ng serve", @@ -17,8 +17,8 @@ "@angular/forms": "^21.2.0", "@angular/platform-browser": "^21.2.0", "@angular/router": "^21.2.0", - "@tanstack/angular-devtools": "^0.0.6", - "@tanstack/devtools-event-client": "0.4.4", + "@tanstack/angular-devtools": "^0.0.7", + "@tanstack/devtools-event-client": "0.5.0", "rxjs": "~7.8.0", "tslib": "^2.3.0" }, diff --git a/examples/angular/panel/CHANGELOG.md b/examples/angular/panel/CHANGELOG.md index 62923698..5d770012 100644 --- a/examples/angular/panel/CHANGELOG.md +++ b/examples/angular/panel/CHANGELOG.md @@ -1,5 +1,14 @@ # @tanstack/devtools-example-angular-panel +## 0.0.7 + +### Patch Changes + +- Updated dependencies [[`b1ac893`](https://github.com/TanStack/devtools/commit/b1ac893a7dc6d5b75df0a3a12e56468451656232), [`ea3c674`](https://github.com/TanStack/devtools/commit/ea3c6749b07f4328f1c9cb352c05135aa773a22f)]: + - @tanstack/devtools-event-client@0.5.0 + - @tanstack/devtools@0.12.5 + - @tanstack/angular-devtools@0.0.7 + ## 0.0.6 ### Patch Changes diff --git a/examples/angular/panel/package.json b/examples/angular/panel/package.json index f75c5f03..ef386b0f 100644 --- a/examples/angular/panel/package.json +++ b/examples/angular/panel/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/devtools-example-angular-panel", - "version": "0.0.6", + "version": "0.0.7", "scripts": { "ng": "ng", "start": "ng serve", @@ -17,9 +17,9 @@ "@angular/forms": "^21.2.0", "@angular/platform-browser": "^21.2.0", "@angular/router": "^21.2.0", - "@tanstack/angular-devtools": "^0.0.6", - "@tanstack/devtools": "^0.12.4", - "@tanstack/devtools-event-client": "0.4.4", + "@tanstack/angular-devtools": "^0.0.7", + "@tanstack/devtools": "^0.12.5", + "@tanstack/devtools-event-client": "0.5.0", "@tanstack/devtools-utils": "^0.6.0", "rxjs": "~7.8.0", "tslib": "^2.3.0" diff --git a/examples/angular/with-devtools/CHANGELOG.md b/examples/angular/with-devtools/CHANGELOG.md index 501b2cdf..b315d5af 100644 --- a/examples/angular/with-devtools/CHANGELOG.md +++ b/examples/angular/with-devtools/CHANGELOG.md @@ -1,5 +1,13 @@ # @tanstack/devtools-example-angular-with-devtools +## 0.0.6 + +### Patch Changes + +- Updated dependencies [[`b1ac893`](https://github.com/TanStack/devtools/commit/b1ac893a7dc6d5b75df0a3a12e56468451656232)]: + - @tanstack/devtools-event-client@0.5.0 + - @tanstack/angular-devtools@0.0.7 + ## 0.0.5 ### Patch Changes diff --git a/examples/angular/with-devtools/package.json b/examples/angular/with-devtools/package.json index 28faa110..743b1e8f 100644 --- a/examples/angular/with-devtools/package.json +++ b/examples/angular/with-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/devtools-example-angular-with-devtools", - "version": "0.0.5", + "version": "0.0.6", "scripts": { "ng": "ng", "start": "ng serve", @@ -17,8 +17,8 @@ "@angular/forms": "^21.2.0", "@angular/platform-browser": "^21.2.0", "@angular/router": "^21.2.0", - "@tanstack/angular-devtools": "^0.0.6", - "@tanstack/devtools-event-client": "0.4.4", + "@tanstack/angular-devtools": "^0.0.7", + "@tanstack/devtools-event-client": "0.5.0", "rxjs": "~7.8.0", "tslib": "^2.3.0" }, diff --git a/examples/preact/basic/package.json b/examples/preact/basic/package.json index 8a27282a..baf8e269 100644 --- a/examples/preact/basic/package.json +++ b/examples/preact/basic/package.json @@ -9,16 +9,16 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/devtools-client": "0.0.7", - "@tanstack/devtools-event-client": "0.4.4", + "@tanstack/devtools-client": "0.0.8", + "@tanstack/devtools-event-client": "0.5.0", "@tanstack/preact-devtools": "workspace:*", "preact": "^10.28.0", "zod": "^4.3.5" }, "devDependencies": { "@preact/preset-vite": "^2.10.3", - "@tanstack/devtools-ui": "0.5.3", - "@tanstack/devtools-vite": "0.8.0", + "@tanstack/devtools-ui": "0.6.0", + "@tanstack/devtools-vite": "0.8.1", "sonda": "0.9.0", "vite": "^8.0.0", "vite-plugin-inspect": "11.3.3" diff --git a/examples/preact/custom-devtools/package.json b/examples/preact/custom-devtools/package.json index 9a402c1d..97321c25 100644 --- a/examples/preact/custom-devtools/package.json +++ b/examples/preact/custom-devtools/package.json @@ -9,7 +9,7 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/devtools-event-client": "0.4.4", + "@tanstack/devtools-event-client": "0.5.0", "@tanstack/preact-devtools": "workspace:*", "preact": "^10.28.0" }, diff --git a/examples/react/a11y-devtools/package.json b/examples/react/a11y-devtools/package.json index 918e3b66..ac0d2a8e 100644 --- a/examples/react/a11y-devtools/package.json +++ b/examples/react/a11y-devtools/package.json @@ -9,13 +9,13 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/devtools-a11y": "^0.1.5", - "@tanstack/react-devtools": "^0.10.7", + "@tanstack/devtools-a11y": "^0.1.6", + "@tanstack/react-devtools": "^0.10.8", "react": "^19.2.0", "react-dom": "^19.2.0" }, "devDependencies": { - "@tanstack/devtools-vite": "0.8.0", + "@tanstack/devtools-vite": "0.8.1", "@types/react": "^19.2.0", "@types/react-dom": "^19.2.0", "@vitejs/plugin-react": "^6.0.1", diff --git a/examples/react/basic/package.json b/examples/react/basic/package.json index 62f9ad9f..f967060c 100644 --- a/examples/react/basic/package.json +++ b/examples/react/basic/package.json @@ -9,9 +9,9 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/devtools-client": "0.0.7", - "@tanstack/devtools-event-client": "0.4.4", - "@tanstack/react-devtools": "^0.10.7", + "@tanstack/devtools-client": "0.0.8", + "@tanstack/devtools-event-client": "0.5.0", + "@tanstack/react-devtools": "^0.10.8", "@tanstack/react-form": "^1.23.7", "@tanstack/react-query": "^5.90.1", "@tanstack/react-query-devtools": "^5.90.1", @@ -22,8 +22,8 @@ "zod": "^4.3.5" }, "devDependencies": { - "@tanstack/devtools-ui": "0.5.3", - "@tanstack/devtools-vite": "0.8.0", + "@tanstack/devtools-ui": "0.6.0", + "@tanstack/devtools-vite": "0.8.1", "@tanstack/react-form-devtools": "^0.1.7", "@types/react": "^19.2.0", "@types/react-dom": "^19.2.0", diff --git a/examples/react/bundling-repro/package.json b/examples/react/bundling-repro/package.json index 45fbc965..42fd81b2 100644 --- a/examples/react/bundling-repro/package.json +++ b/examples/react/bundling-repro/package.json @@ -49,7 +49,7 @@ "devDependencies": { "@biomejs/biome": "2.2.4", "@tanstack/devtools-event-client": "latest", - "@tanstack/devtools-vite": "0.8.0", + "@tanstack/devtools-vite": "0.8.1", "@testing-library/dom": "^10.4.0", "@testing-library/react": "^16.2.0", "@types/node": "^22.15.2", diff --git a/examples/react/custom-devtools/package.json b/examples/react/custom-devtools/package.json index c85df85c..0e8b8b97 100644 --- a/examples/react/custom-devtools/package.json +++ b/examples/react/custom-devtools/package.json @@ -9,8 +9,8 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/devtools-event-client": "0.4.4", - "@tanstack/react-devtools": "^0.10.7", + "@tanstack/devtools-event-client": "0.5.0", + "@tanstack/react-devtools": "^0.10.8", "react": "^19.2.0", "react-dom": "^19.2.0" }, diff --git a/examples/react/drizzle/package.json b/examples/react/drizzle/package.json index b66b0d5f..540f4ba4 100644 --- a/examples/react/drizzle/package.json +++ b/examples/react/drizzle/package.json @@ -8,7 +8,7 @@ "start": "vite start" }, "dependencies": { - "@tanstack/react-devtools": "^0.10.7", + "@tanstack/react-devtools": "^0.10.8", "@tanstack/react-router": "^1.132.0", "@tanstack/react-router-devtools": "^1.132.0", "@tanstack/react-start": "^1.132.0", @@ -16,7 +16,7 @@ "react-dom": "^19.2.0" }, "devDependencies": { - "@tanstack/devtools-vite": "0.8.0", + "@tanstack/devtools-vite": "0.8.1", "@types/node": "^22.15.2", "@types/react": "^19.2.0", "@types/react-dom": "^19.2.0", diff --git a/examples/react/https/package.json b/examples/react/https/package.json index 72a366d0..e370843e 100644 --- a/examples/react/https/package.json +++ b/examples/react/https/package.json @@ -9,8 +9,8 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/devtools-event-client": "0.4.4", - "@tanstack/react-devtools": "^0.10.7", + "@tanstack/devtools-event-client": "0.5.0", + "@tanstack/react-devtools": "^0.10.8", "@tanstack/react-query": "^5.90.1", "@tanstack/react-query-devtools": "^5.90.1", "@tanstack/react-router": "^1.132.0", @@ -20,8 +20,8 @@ "zod": "^4.3.5" }, "devDependencies": { - "@tanstack/devtools-ui": "0.5.3", - "@tanstack/devtools-vite": "0.8.0", + "@tanstack/devtools-ui": "0.6.0", + "@tanstack/devtools-vite": "0.8.1", "@types/react": "^19.2.0", "@types/react-dom": "^19.2.0", "@vitejs/plugin-react": "^6.0.1", diff --git a/examples/react/start/package.json b/examples/react/start/package.json index 74e56a2c..f1300ee9 100644 --- a/examples/react/start/package.json +++ b/examples/react/start/package.json @@ -11,7 +11,7 @@ "dependencies": { "@tailwindcss/vite": "^4.0.6", "@tanstack/devtools-event-client": "workspace:*", - "@tanstack/react-devtools": "^0.10.7", + "@tanstack/react-devtools": "^0.10.8", "@tanstack/react-router": "^1.132.0", "@tanstack/react-router-devtools": "^1.132.0", "@tanstack/react-router-ssr-query": "^1.131.7", @@ -25,7 +25,7 @@ "vite-tsconfig-paths": "^6.0.2" }, "devDependencies": { - "@tanstack/devtools-vite": "0.8.0", + "@tanstack/devtools-vite": "0.8.1", "@testing-library/dom": "^10.4.0", "@testing-library/react": "^16.2.0", "@types/node": "^22.15.2", diff --git a/examples/react/time-travel/package.json b/examples/react/time-travel/package.json index 5815f133..79e9ed38 100644 --- a/examples/react/time-travel/package.json +++ b/examples/react/time-travel/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@tanstack/devtools-event-client": "workspace:^", - "@tanstack/react-devtools": "^0.10.7", + "@tanstack/react-devtools": "^0.10.8", "@tanstack/react-query": "^5.90.1", "@tanstack/react-query-devtools": "^5.90.1", "@tanstack/react-router": "^1.132.0", diff --git a/examples/solid/a11y-devtools/package.json b/examples/solid/a11y-devtools/package.json index f3fa8ded..3deb12aa 100644 --- a/examples/solid/a11y-devtools/package.json +++ b/examples/solid/a11y-devtools/package.json @@ -10,11 +10,11 @@ }, "dependencies": { "@tanstack/devtools-a11y": "workspace:*", - "@tanstack/solid-devtools": "^0.8.7", + "@tanstack/solid-devtools": "^0.8.8", "solid-js": "^1.9.9" }, "devDependencies": { - "@tanstack/devtools-vite": "0.8.0", + "@tanstack/devtools-vite": "0.8.1", "vite": "^8.0.0", "vite-plugin-inspect": "11.3.3", "vite-plugin-solid": "^2.11.11" diff --git a/examples/solid/basic/package.json b/examples/solid/basic/package.json index df7d5c71..68d1154b 100644 --- a/examples/solid/basic/package.json +++ b/examples/solid/basic/package.json @@ -9,7 +9,7 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/solid-devtools": "^0.8.7", + "@tanstack/solid-devtools": "^0.8.8", "@tanstack/solid-query": "^5.90.1", "@tanstack/solid-query-devtools": "^5.90.1", "@tanstack/solid-router": "^1.131.50", @@ -17,7 +17,7 @@ "solid-js": "^1.9.9" }, "devDependencies": { - "@tanstack/devtools-vite": "0.8.0", + "@tanstack/devtools-vite": "0.8.1", "vite": "^8.0.0", "vite-plugin-inspect": "11.3.3", "vite-plugin-solid": "^2.11.11" diff --git a/examples/solid/devtools-ui/package.json b/examples/solid/devtools-ui/package.json index 7f29ef78..d556d894 100644 --- a/examples/solid/devtools-ui/package.json +++ b/examples/solid/devtools-ui/package.json @@ -9,12 +9,12 @@ "test:types": "tsc" }, "dependencies": { - "@tanstack/devtools-ui": "0.5.3", - "@tanstack/solid-devtools": "^0.8.7", + "@tanstack/devtools-ui": "0.6.0", + "@tanstack/solid-devtools": "^0.8.8", "solid-js": "^1.9.9" }, "devDependencies": { - "@tanstack/devtools-vite": "0.8.0", + "@tanstack/devtools-vite": "0.8.1", "vite": "^8.0.0", "vite-plugin-inspect": "11.3.3", "vite-plugin-solid": "^2.11.11" diff --git a/examples/solid/start/package.json b/examples/solid/start/package.json index 09d3c45f..dd2e3b18 100644 --- a/examples/solid/start/package.json +++ b/examples/solid/start/package.json @@ -9,7 +9,7 @@ }, "dependencies": { "@solidjs/start": "^1.2.0", - "@tanstack/solid-devtools": "^0.8.7", + "@tanstack/solid-devtools": "^0.8.8", "solid-js": "^1.9.9", "vinxi": "^0.5.8" }, diff --git a/examples/vue/basic/package.json b/examples/vue/basic/package.json index da34cae5..33ba12ac 100644 --- a/examples/vue/basic/package.json +++ b/examples/vue/basic/package.json @@ -8,8 +8,8 @@ "preview": "vite preview" }, "dependencies": { - "@tanstack/devtools": "^0.12.4", - "@tanstack/vue-devtools": "^0.2.21", + "@tanstack/devtools": "^0.12.5", + "@tanstack/vue-devtools": "^0.2.22", "@tanstack/vue-query": "^5.90.5", "@tanstack/vue-query-devtools": "^6.1.0", "vue": "^3.5.22" diff --git a/packages/angular-devtools/CHANGELOG.md b/packages/angular-devtools/CHANGELOG.md index d1e5b392..54413d1c 100644 --- a/packages/angular-devtools/CHANGELOG.md +++ b/packages/angular-devtools/CHANGELOG.md @@ -1,5 +1,12 @@ # @tanstack/angular-devtools +## 0.0.7 + +### Patch Changes + +- Updated dependencies [[`ea3c674`](https://github.com/TanStack/devtools/commit/ea3c6749b07f4328f1c9cb352c05135aa773a22f)]: + - @tanstack/devtools@0.12.5 + ## 0.0.6 ### Patch Changes diff --git a/packages/angular-devtools/package.json b/packages/angular-devtools/package.json index 458ccf89..a36c2f32 100644 --- a/packages/angular-devtools/package.json +++ b/packages/angular-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/angular-devtools", - "version": "0.0.6", + "version": "0.0.7", "description": "TanStack Devtools is a set of tools for building advanced devtools for your Angular application.", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/devtools-a11y/CHANGELOG.md b/packages/devtools-a11y/CHANGELOG.md index fdf938a9..37bb25d2 100644 --- a/packages/devtools-a11y/CHANGELOG.md +++ b/packages/devtools-a11y/CHANGELOG.md @@ -1,5 +1,20 @@ # @tanstack/devtools-a11y +## 0.1.6 + +### Patch Changes + +- [#477](https://github.com/TanStack/devtools/pull/477) [`ea3c674`](https://github.com/TanStack/devtools/commit/ea3c6749b07f4328f1c9cb352c05135aa773a22f) - fix: rename Solid `use*` primitives to `create*` so React Compiler doesn't transform them + + The devtools packages are written in Solid but used React-style naming (`useStyles`, `useTheme`, `useDevtoolsState`, …) for their custom primitives. When an app enables React Compiler, the compiler matches the `use*` naming convention and transforms/optimizes this Solid code as if it were React, breaking the panel (it is Solid JSX, not React). + + All custom Solid primitives in `@tanstack/devtools`, `@tanstack/devtools-ui`, and `@tanstack/devtools-a11y` are renamed from `use*` to `create*`, and Solid's own `useContext` / `@solid-primitives` `useKeyDownList` are imported under non-`use` aliases (`getContext`, `getKeyDownList`). + + Breaking for `@tanstack/devtools-ui`: the exported `useTheme` is renamed to `createTheme`. + +- Updated dependencies [[`7114ecd`](https://github.com/TanStack/devtools/commit/7114ecd285d9df776fb63595b82cf979adafd51c), [`ea3c674`](https://github.com/TanStack/devtools/commit/ea3c6749b07f4328f1c9cb352c05135aa773a22f)]: + - @tanstack/devtools-ui@0.6.0 + ## 0.1.5 ### Patch Changes diff --git a/packages/devtools-a11y/package.json b/packages/devtools-a11y/package.json index c0ebde49..19b86520 100644 --- a/packages/devtools-a11y/package.json +++ b/packages/devtools-a11y/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/devtools-a11y", - "version": "0.1.5", + "version": "0.1.6", "description": "Accessibility auditing plugin for TanStack Devtools powered by axe-core", "author": "TanStack", "license": "MIT", diff --git a/packages/devtools-client/CHANGELOG.md b/packages/devtools-client/CHANGELOG.md index e6de9e60..19acd5da 100644 --- a/packages/devtools-client/CHANGELOG.md +++ b/packages/devtools-client/CHANGELOG.md @@ -1,5 +1,12 @@ # @tanstack/devtools-client +## 0.0.8 + +### Patch Changes + +- Updated dependencies [[`b1ac893`](https://github.com/TanStack/devtools/commit/b1ac893a7dc6d5b75df0a3a12e56468451656232)]: + - @tanstack/devtools-event-client@0.5.0 + ## 0.0.7 ### Patch Changes diff --git a/packages/devtools-client/package.json b/packages/devtools-client/package.json index a5edfb5d..cad4d2f9 100644 --- a/packages/devtools-client/package.json +++ b/packages/devtools-client/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/devtools-client", - "version": "0.0.7", + "version": "0.0.8", "description": "TanStack Devtools client that is used to interact with the event system produced by the Devtools.", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/devtools-ui/CHANGELOG.md b/packages/devtools-ui/CHANGELOG.md index e198e6d9..6735817f 100644 --- a/packages/devtools-ui/CHANGELOG.md +++ b/packages/devtools-ui/CHANGELOG.md @@ -1,5 +1,21 @@ # @tanstack/devtools-ui +## 0.6.0 + +### Minor Changes + +- [#477](https://github.com/TanStack/devtools/pull/477) [`ea3c674`](https://github.com/TanStack/devtools/commit/ea3c6749b07f4328f1c9cb352c05135aa773a22f) - fix: rename Solid `use*` primitives to `create*` so React Compiler doesn't transform them + + The devtools packages are written in Solid but used React-style naming (`useStyles`, `useTheme`, `useDevtoolsState`, …) for their custom primitives. When an app enables React Compiler, the compiler matches the `use*` naming convention and transforms/optimizes this Solid code as if it were React, breaking the panel (it is Solid JSX, not React). + + All custom Solid primitives in `@tanstack/devtools`, `@tanstack/devtools-ui`, and `@tanstack/devtools-a11y` are renamed from `use*` to `create*`, and Solid's own `useContext` / `@solid-primitives` `useKeyDownList` are imported under non-`use` aliases (`getContext`, `getKeyDownList`). + + Breaking for `@tanstack/devtools-ui`: the exported `useTheme` is renamed to `createTheme`. + +### Patch Changes + +- [#472](https://github.com/TanStack/devtools/pull/472) [`7114ecd`](https://github.com/TanStack/devtools/commit/7114ecd285d9df776fb63595b82cf979adafd51c) - Fix `Checkbox` ignoring controlled `checked` prop updates. It previously read `checked` into internal state only once at mount, so it never reflected later prop changes when used as a controlled input (e.g. the devtools settings panel). It now reflects the `checked` prop whenever it is provided and falls back to internal state only when uncontrolled. + ## 0.5.3 ### Patch Changes diff --git a/packages/devtools-ui/package.json b/packages/devtools-ui/package.json index fe76a451..1db8a071 100644 --- a/packages/devtools-ui/package.json +++ b/packages/devtools-ui/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/devtools-ui", - "version": "0.5.3", + "version": "0.6.0", "description": "TanStack Devtools UI is a set of UI components for building devtool panels for your application.", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/devtools-vite/CHANGELOG.md b/packages/devtools-vite/CHANGELOG.md index 47d790da..8dcabcb8 100644 --- a/packages/devtools-vite/CHANGELOG.md +++ b/packages/devtools-vite/CHANGELOG.md @@ -1,5 +1,12 @@ # @tanstack/devtools-event-client +## 0.8.1 + +### Patch Changes + +- Updated dependencies []: + - @tanstack/devtools-client@0.0.8 + ## 0.8.0 ### Minor Changes diff --git a/packages/devtools-vite/package.json b/packages/devtools-vite/package.json index 193cbbd3..ae333ffb 100644 --- a/packages/devtools-vite/package.json +++ b/packages/devtools-vite/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/devtools-vite", - "version": "0.8.0", + "version": "0.8.1", "description": "TanStack Vite plugin used to enhance the core devtools with additional functionalities", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/devtools/CHANGELOG.md b/packages/devtools/CHANGELOG.md index f2278021..2a9d746a 100644 --- a/packages/devtools/CHANGELOG.md +++ b/packages/devtools/CHANGELOG.md @@ -1,5 +1,21 @@ # @tanstack/devtools +## 0.12.5 + +### Patch Changes + +- [#477](https://github.com/TanStack/devtools/pull/477) [`ea3c674`](https://github.com/TanStack/devtools/commit/ea3c6749b07f4328f1c9cb352c05135aa773a22f) - fix: rename Solid `use*` primitives to `create*` so React Compiler doesn't transform them + + The devtools packages are written in Solid but used React-style naming (`useStyles`, `useTheme`, `useDevtoolsState`, …) for their custom primitives. When an app enables React Compiler, the compiler matches the `use*` naming convention and transforms/optimizes this Solid code as if it were React, breaking the panel (it is Solid JSX, not React). + + All custom Solid primitives in `@tanstack/devtools`, `@tanstack/devtools-ui`, and `@tanstack/devtools-a11y` are renamed from `use*` to `create*`, and Solid's own `useContext` / `@solid-primitives` `useKeyDownList` are imported under non-`use` aliases (`getContext`, `getKeyDownList`). + + Breaking for `@tanstack/devtools-ui`: the exported `useTheme` is renamed to `createTheme`. + +- Updated dependencies [[`7114ecd`](https://github.com/TanStack/devtools/commit/7114ecd285d9df776fb63595b82cf979adafd51c), [`ea3c674`](https://github.com/TanStack/devtools/commit/ea3c6749b07f4328f1c9cb352c05135aa773a22f)]: + - @tanstack/devtools-ui@0.6.0 + - @tanstack/devtools-client@0.0.8 + ## 0.12.4 ### Patch Changes diff --git a/packages/devtools/package.json b/packages/devtools/package.json index 12529550..17d5a22a 100644 --- a/packages/devtools/package.json +++ b/packages/devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/devtools", - "version": "0.12.4", + "version": "0.12.5", "description": "TanStack Devtools is a set of tools for building advanced devtools for your application.", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/event-bus-client/CHANGELOG.md b/packages/event-bus-client/CHANGELOG.md index e6dd11eb..61e245d1 100644 --- a/packages/event-bus-client/CHANGELOG.md +++ b/packages/event-bus-client/CHANGELOG.md @@ -1,5 +1,18 @@ # @tanstack/devtools-event-client +## 0.5.0 + +### Minor Changes + +- [#471](https://github.com/TanStack/devtools/pull/471) [`b1ac893`](https://github.com/TanStack/devtools/commit/b1ac893a7dc6d5b75df0a3a12e56468451656232) - The root export of `@tanstack/devtools-event-client` now resolves to a no-op + outside development (`process.env.NODE_ENV !== 'development'`), so the real + `EventClient` is tree-shaken out of production bundles by default. + + If you want devtools events to keep working in production, import the real + client from the new `@tanstack/devtools-event-client/production` subpath, which + always ships the real implementation. The public API is identical between the + two imports. + ## 0.4.4 ### Patch Changes diff --git a/packages/event-bus-client/package.json b/packages/event-bus-client/package.json index c5e45b47..53974134 100644 --- a/packages/event-bus-client/package.json +++ b/packages/event-bus-client/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/devtools-event-client", - "version": "0.4.4", + "version": "0.5.0", "description": "TanStack Event Client is a lightweight event client for TanStack Devtools event bus.", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/preact-devtools/CHANGELOG.md b/packages/preact-devtools/CHANGELOG.md index 5095d866..14d38ce8 100644 --- a/packages/preact-devtools/CHANGELOG.md +++ b/packages/preact-devtools/CHANGELOG.md @@ -1,5 +1,12 @@ # @tanstack/preact-devtools +## 0.10.8 + +### Patch Changes + +- Updated dependencies [[`ea3c674`](https://github.com/TanStack/devtools/commit/ea3c6749b07f4328f1c9cb352c05135aa773a22f)]: + - @tanstack/devtools@0.12.5 + ## 0.10.7 ### Patch Changes diff --git a/packages/preact-devtools/package.json b/packages/preact-devtools/package.json index d14f0823..89c334da 100644 --- a/packages/preact-devtools/package.json +++ b/packages/preact-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/preact-devtools", - "version": "0.10.7", + "version": "0.10.8", "description": "TanStack Devtools is a set of tools for building advanced devtools for your Preact application.", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/react-devtools/CHANGELOG.md b/packages/react-devtools/CHANGELOG.md index 3747abc7..11954cc4 100644 --- a/packages/react-devtools/CHANGELOG.md +++ b/packages/react-devtools/CHANGELOG.md @@ -1,5 +1,12 @@ # @tanstack/react-devtools +## 0.10.8 + +### Patch Changes + +- Updated dependencies [[`ea3c674`](https://github.com/TanStack/devtools/commit/ea3c6749b07f4328f1c9cb352c05135aa773a22f)]: + - @tanstack/devtools@0.12.5 + ## 0.10.7 ### Patch Changes diff --git a/packages/react-devtools/package.json b/packages/react-devtools/package.json index b002855e..93ee9c6c 100644 --- a/packages/react-devtools/package.json +++ b/packages/react-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/react-devtools", - "version": "0.10.7", + "version": "0.10.8", "description": "TanStack Devtools is a set of tools for building advanced devtools for your React application.", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/solid-devtools/CHANGELOG.md b/packages/solid-devtools/CHANGELOG.md index 16ef9b36..c632d884 100644 --- a/packages/solid-devtools/CHANGELOG.md +++ b/packages/solid-devtools/CHANGELOG.md @@ -1,5 +1,12 @@ # @tanstack/solid-devtools +## 0.8.8 + +### Patch Changes + +- Updated dependencies [[`ea3c674`](https://github.com/TanStack/devtools/commit/ea3c6749b07f4328f1c9cb352c05135aa773a22f)]: + - @tanstack/devtools@0.12.5 + ## 0.8.7 ### Patch Changes diff --git a/packages/solid-devtools/package.json b/packages/solid-devtools/package.json index 48e13c58..52989049 100644 --- a/packages/solid-devtools/package.json +++ b/packages/solid-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/solid-devtools", - "version": "0.8.7", + "version": "0.8.8", "description": "TanStack Devtools is a set of tools for building advanced devtools for your Solid application.", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/svelte-devtools/CHANGELOG.md b/packages/svelte-devtools/CHANGELOG.md index d773ff83..022e680e 100644 --- a/packages/svelte-devtools/CHANGELOG.md +++ b/packages/svelte-devtools/CHANGELOG.md @@ -1,5 +1,12 @@ # @tanstack/svelte-devtools +## 0.1.1 + +### Patch Changes + +- Updated dependencies [[`ea3c674`](https://github.com/TanStack/devtools/commit/ea3c6749b07f4328f1c9cb352c05135aa773a22f)]: + - @tanstack/devtools@0.12.5 + ## 0.1.0 ### Minor Changes diff --git a/packages/svelte-devtools/package.json b/packages/svelte-devtools/package.json index 207debd2..40079023 100644 --- a/packages/svelte-devtools/package.json +++ b/packages/svelte-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/svelte-devtools", - "version": "0.1.0", + "version": "0.1.1", "description": "TanStack Devtools is a set of tools for building advanced devtools for your Svelte application.", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/vue-devtools/CHANGELOG.md b/packages/vue-devtools/CHANGELOG.md index 2cc23364..65b5d33d 100644 --- a/packages/vue-devtools/CHANGELOG.md +++ b/packages/vue-devtools/CHANGELOG.md @@ -1,5 +1,12 @@ # @tanstack/vue-devtools +## 0.2.22 + +### Patch Changes + +- Updated dependencies [[`ea3c674`](https://github.com/TanStack/devtools/commit/ea3c6749b07f4328f1c9cb352c05135aa773a22f)]: + - @tanstack/devtools@0.12.5 + ## 0.2.21 ### Patch Changes diff --git a/packages/vue-devtools/package.json b/packages/vue-devtools/package.json index 62864f3d..df7dbb51 100644 --- a/packages/vue-devtools/package.json +++ b/packages/vue-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/vue-devtools", - "version": "0.2.21", + "version": "0.2.22", "description": "TanStack Devtools is a set of tools for building advanced devtools for your Vue application.", "author": "Damian Osipiuk", "license": "MIT", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b2b045fa..caa6e33a 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -471,13 +471,13 @@ importers: specifier: ^21.2.0 version: 21.2.12(@angular/common@21.2.12(@angular/core@21.2.12(@angular/compiler@21.2.12)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.12(@angular/compiler@21.2.12)(rxjs@7.8.2))(@angular/platform-browser@21.2.12(@angular/common@21.2.12(@angular/core@21.2.12(@angular/compiler@21.2.12)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.12(@angular/compiler@21.2.12)(rxjs@7.8.2)))(rxjs@7.8.2) '@tanstack/angular-devtools': - specifier: ^0.0.6 + specifier: ^0.0.7 version: link:../../../packages/angular-devtools '@tanstack/devtools-a11y': - specifier: ^0.1.5 + specifier: ^0.1.6 version: link:../../../packages/devtools-a11y '@tanstack/devtools-event-client': - specifier: 0.4.4 + specifier: 0.5.0 version: link:../../../packages/event-bus-client rxjs: specifier: ~7.8.0 @@ -523,10 +523,10 @@ importers: specifier: ^21.2.0 version: 21.2.12(@angular/common@21.2.12(@angular/core@21.2.12(@angular/compiler@21.2.12)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.12(@angular/compiler@21.2.12)(rxjs@7.8.2))(@angular/platform-browser@21.2.12(@angular/common@21.2.12(@angular/core@21.2.12(@angular/compiler@21.2.12)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.12(@angular/compiler@21.2.12)(rxjs@7.8.2)))(rxjs@7.8.2) '@tanstack/angular-devtools': - specifier: ^0.0.6 + specifier: ^0.0.7 version: link:../../../packages/angular-devtools '@tanstack/devtools-event-client': - specifier: 0.4.4 + specifier: 0.5.0 version: link:../../../packages/event-bus-client rxjs: specifier: ~7.8.0 @@ -572,13 +572,13 @@ importers: specifier: ^21.2.0 version: 21.2.12(@angular/common@21.2.12(@angular/core@21.2.12(@angular/compiler@21.2.12)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.12(@angular/compiler@21.2.12)(rxjs@7.8.2))(@angular/platform-browser@21.2.12(@angular/common@21.2.12(@angular/core@21.2.12(@angular/compiler@21.2.12)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.12(@angular/compiler@21.2.12)(rxjs@7.8.2)))(rxjs@7.8.2) '@tanstack/angular-devtools': - specifier: ^0.0.6 + specifier: ^0.0.7 version: link:../../../packages/angular-devtools '@tanstack/devtools': - specifier: ^0.12.4 + specifier: ^0.12.5 version: link:../../../packages/devtools '@tanstack/devtools-event-client': - specifier: 0.4.4 + specifier: 0.5.0 version: link:../../../packages/event-bus-client '@tanstack/devtools-utils': specifier: ^0.6.0 @@ -632,10 +632,10 @@ importers: specifier: ^21.2.0 version: 21.2.12(@angular/common@21.2.12(@angular/core@21.2.12(@angular/compiler@21.2.12)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.12(@angular/compiler@21.2.12)(rxjs@7.8.2))(@angular/platform-browser@21.2.12(@angular/common@21.2.12(@angular/core@21.2.12(@angular/compiler@21.2.12)(rxjs@7.8.2))(rxjs@7.8.2))(@angular/core@21.2.12(@angular/compiler@21.2.12)(rxjs@7.8.2)))(rxjs@7.8.2) '@tanstack/angular-devtools': - specifier: ^0.0.6 + specifier: ^0.0.7 version: link:../../../packages/angular-devtools '@tanstack/devtools-event-client': - specifier: 0.4.4 + specifier: 0.5.0 version: link:../../../packages/event-bus-client rxjs: specifier: ~7.8.0 @@ -663,10 +663,10 @@ importers: examples/preact/basic: dependencies: '@tanstack/devtools-client': - specifier: 0.0.7 + specifier: 0.0.8 version: link:../../../packages/devtools-client '@tanstack/devtools-event-client': - specifier: 0.4.4 + specifier: 0.5.0 version: link:../../../packages/event-bus-client '@tanstack/preact-devtools': specifier: workspace:* @@ -682,10 +682,10 @@ importers: specifier: ^2.10.3 version: 2.10.5(@babel/core@7.29.0)(preact@10.29.1)(rollup@4.60.1)(vite@8.0.12(@types/node@22.19.15)(esbuild@0.27.4)(jiti@2.7.0)(less@4.6.4)(sass@1.99.0)(terser@5.46.1)(tsx@4.21.0)(yaml@2.8.3)) '@tanstack/devtools-ui': - specifier: 0.5.3 + specifier: 0.6.0 version: link:../../../packages/devtools-ui '@tanstack/devtools-vite': - specifier: 0.8.0 + specifier: 0.8.1 version: link:../../../packages/devtools-vite sonda: specifier: 0.9.0 @@ -700,7 +700,7 @@ importers: examples/preact/custom-devtools: dependencies: '@tanstack/devtools-event-client': - specifier: 0.4.4 + specifier: 0.5.0 version: link:../../../packages/event-bus-client '@tanstack/preact-devtools': specifier: workspace:* @@ -719,10 +719,10 @@ importers: examples/react/a11y-devtools: dependencies: '@tanstack/devtools-a11y': - specifier: ^0.1.5 + specifier: ^0.1.6 version: link:../../../packages/devtools-a11y '@tanstack/react-devtools': - specifier: ^0.10.7 + specifier: ^0.10.8 version: link:../../../packages/react-devtools react: specifier: ^19.2.0 @@ -732,7 +732,7 @@ importers: version: 19.2.6(react@19.2.6) devDependencies: '@tanstack/devtools-vite': - specifier: 0.8.0 + specifier: 0.8.1 version: link:../../../packages/devtools-vite '@types/react': specifier: ^19.2.0 @@ -750,13 +750,13 @@ importers: examples/react/basic: dependencies: '@tanstack/devtools-client': - specifier: 0.0.7 + specifier: 0.0.8 version: link:../../../packages/devtools-client '@tanstack/devtools-event-client': - specifier: 0.4.4 + specifier: 0.5.0 version: link:../../../packages/event-bus-client '@tanstack/react-devtools': - specifier: ^0.10.7 + specifier: ^0.10.8 version: link:../../../packages/react-devtools '@tanstack/react-form': specifier: ^1.23.7 @@ -784,10 +784,10 @@ importers: version: 4.4.3 devDependencies: '@tanstack/devtools-ui': - specifier: 0.5.3 + specifier: 0.6.0 version: link:../../../packages/devtools-ui '@tanstack/devtools-vite': - specifier: 0.8.0 + specifier: 0.8.1 version: link:../../../packages/devtools-vite '@tanstack/react-form-devtools': specifier: ^0.1.7 @@ -917,7 +917,7 @@ importers: specifier: latest version: link:../../../packages/event-bus-client '@tanstack/devtools-vite': - specifier: 0.8.0 + specifier: 0.8.1 version: link:../../../packages/devtools-vite '@testing-library/dom': specifier: ^10.4.0 @@ -962,10 +962,10 @@ importers: examples/react/custom-devtools: dependencies: '@tanstack/devtools-event-client': - specifier: 0.4.4 + specifier: 0.5.0 version: link:../../../packages/event-bus-client '@tanstack/react-devtools': - specifier: ^0.10.7 + specifier: ^0.10.8 version: link:../../../packages/react-devtools react: specifier: ^19.2.0 @@ -990,7 +990,7 @@ importers: examples/react/drizzle: dependencies: '@tanstack/react-devtools': - specifier: ^0.10.7 + specifier: ^0.10.8 version: link:../../../packages/react-devtools '@tanstack/react-router': specifier: ^1.132.0 @@ -1009,7 +1009,7 @@ importers: version: 19.2.6(react@19.2.6) devDependencies: '@tanstack/devtools-vite': - specifier: 0.8.0 + specifier: 0.8.1 version: link:../../../packages/devtools-vite '@types/node': specifier: ^22.15.2 @@ -1042,10 +1042,10 @@ importers: examples/react/https: dependencies: '@tanstack/devtools-event-client': - specifier: 0.4.4 + specifier: 0.5.0 version: link:../../../packages/event-bus-client '@tanstack/react-devtools': - specifier: ^0.10.7 + specifier: ^0.10.8 version: link:../../../packages/react-devtools '@tanstack/react-query': specifier: ^5.90.1 @@ -1070,10 +1070,10 @@ importers: version: 4.4.3 devDependencies: '@tanstack/devtools-ui': - specifier: 0.5.3 + specifier: 0.6.0 version: link:../../../packages/devtools-ui '@tanstack/devtools-vite': - specifier: 0.8.0 + specifier: 0.8.1 version: link:../../../packages/devtools-vite '@types/react': specifier: ^19.2.0 @@ -1103,7 +1103,7 @@ importers: specifier: workspace:* version: link:../../../packages/event-bus-client '@tanstack/react-devtools': - specifier: ^0.10.7 + specifier: ^0.10.8 version: link:../../../packages/react-devtools '@tanstack/react-router': specifier: ^1.132.0 @@ -1140,7 +1140,7 @@ importers: version: 6.1.1(typescript@5.9.3)(vite@8.0.12(@types/node@22.19.15)(esbuild@0.27.4)(jiti@2.7.0)(less@4.6.4)(sass@1.99.0)(terser@5.46.1)(tsx@4.21.0)(yaml@2.8.3)) devDependencies: '@tanstack/devtools-vite': - specifier: 0.8.0 + specifier: 0.8.1 version: link:../../../packages/devtools-vite '@testing-library/dom': specifier: ^10.4.0 @@ -1289,7 +1289,7 @@ importers: specifier: workspace:^ version: link:../../../packages/event-bus-client '@tanstack/react-devtools': - specifier: ^0.10.7 + specifier: ^0.10.8 version: link:../../../packages/react-devtools '@tanstack/react-query': specifier: ^5.90.1 @@ -1335,14 +1335,14 @@ importers: specifier: workspace:* version: link:../../../packages/devtools-a11y '@tanstack/solid-devtools': - specifier: ^0.8.7 + specifier: ^0.8.8 version: link:../../../packages/solid-devtools solid-js: specifier: ^1.9.9 version: 1.9.12 devDependencies: '@tanstack/devtools-vite': - specifier: 0.8.0 + specifier: 0.8.1 version: link:../../../packages/devtools-vite vite: specifier: ^8.0.0 @@ -1357,7 +1357,7 @@ importers: examples/solid/basic: dependencies: '@tanstack/solid-devtools': - specifier: ^0.8.7 + specifier: ^0.8.8 version: link:../../../packages/solid-devtools '@tanstack/solid-query': specifier: ^5.90.1 @@ -1376,7 +1376,7 @@ importers: version: 1.9.12 devDependencies: '@tanstack/devtools-vite': - specifier: 0.8.0 + specifier: 0.8.1 version: link:../../../packages/devtools-vite vite: specifier: ^8.0.0 @@ -1391,17 +1391,17 @@ importers: examples/solid/devtools-ui: dependencies: '@tanstack/devtools-ui': - specifier: 0.5.3 + specifier: 0.6.0 version: link:../../../packages/devtools-ui '@tanstack/solid-devtools': - specifier: ^0.8.7 + specifier: ^0.8.8 version: link:../../../packages/solid-devtools solid-js: specifier: ^1.9.9 version: 1.9.12 devDependencies: '@tanstack/devtools-vite': - specifier: 0.8.0 + specifier: 0.8.1 version: link:../../../packages/devtools-vite vite: specifier: ^8.0.0 @@ -1419,7 +1419,7 @@ importers: specifier: ^1.2.0 version: 1.3.2(@testing-library/jest-dom@6.9.1)(solid-js@1.9.12)(vinxi@0.5.11(@types/node@22.19.15)(db0@0.3.4(drizzle-orm@0.45.2(pg@8.20.0)))(drizzle-orm@0.45.2(pg@8.20.0))(ioredis@5.10.1)(jiti@2.7.0)(less@4.6.4)(lightningcss@1.32.0)(rolldown@1.1.2)(sass@1.99.0)(terser@5.46.1)(tsx@4.21.0)(yaml@2.8.3))(vite@8.0.12(@types/node@22.19.15)(esbuild@0.27.4)(jiti@2.7.0)(less@4.6.4)(sass@1.99.0)(terser@5.46.1)(tsx@4.21.0)(yaml@2.8.3)) '@tanstack/solid-devtools': - specifier: ^0.8.7 + specifier: ^0.8.8 version: link:../../../packages/solid-devtools solid-js: specifier: ^1.9.9 @@ -1431,10 +1431,10 @@ importers: examples/vue/basic: dependencies: '@tanstack/devtools': - specifier: ^0.12.4 + specifier: ^0.12.5 version: link:../../../packages/devtools '@tanstack/vue-devtools': - specifier: ^0.2.21 + specifier: ^0.2.22 version: link:../../../packages/vue-devtools '@tanstack/vue-query': specifier: ^5.90.5