diff --git a/.changeset/metal-aliens-juggle.md b/.changeset/metal-aliens-juggle.md deleted file mode 100644 index 5ea3dc72..00000000 --- a/.changeset/metal-aliens-juggle.md +++ /dev/null @@ -1,15 +0,0 @@ ---- -'@tanstack/devtools-event-client': minor -'@tanstack/react-devtools': minor -'@tanstack/solid-devtools': minor -'@tanstack/devtools-event-bus': minor -'@tanstack/devtools': minor ---- - -Added event bus functionality into @tanstack/devtools - -- @tanstack/devtools now comes with an integrated Event Bus on the Client. -- The Event Bus allows for seamless communication between different parts of your running application - without tight coupling. -- Exposed APIs for publishing and subscribing to events. -- Added config for the client event bus diff --git a/examples/react/basic/package.json b/examples/react/basic/package.json index 509d7ff1..c5db8983 100644 --- a/examples/react/basic/package.json +++ b/examples/react/basic/package.json @@ -10,7 +10,7 @@ }, "dependencies": { "@tanstack/devtools-event-client": "workspace:^", - "@tanstack/react-devtools": "^0.1.1", + "@tanstack/react-devtools": "^0.2.0", "@tanstack/react-query": "^5.83.0", "@tanstack/react-query-devtools": "^5.83.0", "@tanstack/react-router": "^1.130.2", diff --git a/examples/react/start/package.json b/examples/react/start/package.json index 59a6ff5f..fb1ed8b4 100644 --- a/examples/react/start/package.json +++ b/examples/react/start/package.json @@ -19,7 +19,7 @@ "@tailwindcss/vite": "^4.0.6", "@tanstack/devtools-event-bus": "workspace:^", "@tanstack/devtools-event-client": "workspace:^", - "@tanstack/react-devtools": "^0.1.1", + "@tanstack/react-devtools": "^0.2.0", "@tanstack/react-query": "^5.83.0", "@tanstack/react-query-devtools": "^5.83.0", "@tanstack/react-router": "^1.130.2", diff --git a/examples/solid/basic/package.json b/examples/solid/basic/package.json index 6cbd1104..48942f02 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.1.1", + "@tanstack/solid-devtools": "^0.2.0", "@tanstack/solid-query": "^5.83.0", "@tanstack/solid-query-devtools": "^5.83.0", "@tanstack/solid-router": "^1.129.8", diff --git a/packages/devtools/CHANGELOG.md b/packages/devtools/CHANGELOG.md index c4b2ea09..2f2719af 100644 --- a/packages/devtools/CHANGELOG.md +++ b/packages/devtools/CHANGELOG.md @@ -1,5 +1,22 @@ # @tanstack/devtools +## 0.2.0 + +### Minor Changes + +- Added event bus functionality into @tanstack/devtools ([#11](https://github.com/TanStack/devtools/pull/11)) + + - @tanstack/devtools now comes with an integrated Event Bus on the Client. + - The Event Bus allows for seamless communication between different parts of your running application + without tight coupling. + - Exposed APIs for publishing and subscribing to events. + - Added config for the client event bus + +### Patch Changes + +- Updated dependencies [[`77e2f6e`](https://github.com/TanStack/devtools/commit/77e2f6e8d3d5cc82b8d37fcc00c01078e9960003)]: + - @tanstack/devtools-event-bus@0.2.0 + ## 0.1.1 ### Patch Changes diff --git a/packages/devtools/package.json b/packages/devtools/package.json index 20a24b42..b7bd8fb4 100644 --- a/packages/devtools/package.json +++ b/packages/devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/devtools", - "version": "0.1.1", + "version": "0.2.0", "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 new file mode 100644 index 00000000..2dd9dff5 --- /dev/null +++ b/packages/event-bus-client/CHANGELOG.md @@ -0,0 +1,13 @@ +# @tanstack/devtools-event-client + +## 0.2.0 + +### Minor Changes + +- Added event bus functionality into @tanstack/devtools ([#11](https://github.com/TanStack/devtools/pull/11)) + + - @tanstack/devtools now comes with an integrated Event Bus on the Client. + - The Event Bus allows for seamless communication between different parts of your running application + without tight coupling. + - Exposed APIs for publishing and subscribing to events. + - Added config for the client event bus diff --git a/packages/event-bus-client/package.json b/packages/event-bus-client/package.json index 49021398..2e4e0c0e 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.1.1", + "version": "0.2.0", "description": "TanStack Event Client is a lightweight event client for TanStack Devtools event bus.", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/event-bus/CHANGELOG.md b/packages/event-bus/CHANGELOG.md new file mode 100644 index 00000000..00778dd5 --- /dev/null +++ b/packages/event-bus/CHANGELOG.md @@ -0,0 +1,13 @@ +# @tanstack/devtools-event-bus + +## 0.2.0 + +### Minor Changes + +- Added event bus functionality into @tanstack/devtools ([#11](https://github.com/TanStack/devtools/pull/11)) + + - @tanstack/devtools now comes with an integrated Event Bus on the Client. + - The Event Bus allows for seamless communication between different parts of your running application + without tight coupling. + - Exposed APIs for publishing and subscribing to events. + - Added config for the client event bus diff --git a/packages/event-bus/package.json b/packages/event-bus/package.json index dcb16231..6cf5fef9 100644 --- a/packages/event-bus/package.json +++ b/packages/event-bus/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/devtools-event-bus", - "version": "0.1.1", + "version": "0.2.0", "description": "TanStack Event Bus is a lightweight event bus for TanStack Devtools.", "author": "Tanner Linsley", "license": "MIT", diff --git a/packages/react-devtools/CHANGELOG.md b/packages/react-devtools/CHANGELOG.md index afe5f3c1..a75d1975 100644 --- a/packages/react-devtools/CHANGELOG.md +++ b/packages/react-devtools/CHANGELOG.md @@ -1,5 +1,22 @@ # @tanstack/react-devtools +## 0.2.0 + +### Minor Changes + +- Added event bus functionality into @tanstack/devtools ([#11](https://github.com/TanStack/devtools/pull/11)) + + - @tanstack/devtools now comes with an integrated Event Bus on the Client. + - The Event Bus allows for seamless communication between different parts of your running application + without tight coupling. + - Exposed APIs for publishing and subscribing to events. + - Added config for the client event bus + +### Patch Changes + +- Updated dependencies [[`77e2f6e`](https://github.com/TanStack/devtools/commit/77e2f6e8d3d5cc82b8d37fcc00c01078e9960003)]: + - @tanstack/devtools@0.2.0 + ## 0.1.1 ### Patch Changes diff --git a/packages/react-devtools/package.json b/packages/react-devtools/package.json index 42232bc7..32f60f55 100644 --- a/packages/react-devtools/package.json +++ b/packages/react-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/react-devtools", - "version": "0.1.1", + "version": "0.2.0", "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 9a87a11f..d02f32dc 100644 --- a/packages/solid-devtools/CHANGELOG.md +++ b/packages/solid-devtools/CHANGELOG.md @@ -1,5 +1,22 @@ # @tanstack/solid-devtools +## 0.2.0 + +### Minor Changes + +- Added event bus functionality into @tanstack/devtools ([#11](https://github.com/TanStack/devtools/pull/11)) + + - @tanstack/devtools now comes with an integrated Event Bus on the Client. + - The Event Bus allows for seamless communication between different parts of your running application + without tight coupling. + - Exposed APIs for publishing and subscribing to events. + - Added config for the client event bus + +### Patch Changes + +- Updated dependencies [[`77e2f6e`](https://github.com/TanStack/devtools/commit/77e2f6e8d3d5cc82b8d37fcc00c01078e9960003)]: + - @tanstack/devtools@0.2.0 + ## 0.1.1 ### Patch Changes diff --git a/packages/solid-devtools/package.json b/packages/solid-devtools/package.json index 714dc60d..26f591de 100644 --- a/packages/solid-devtools/package.json +++ b/packages/solid-devtools/package.json @@ -1,6 +1,6 @@ { "name": "@tanstack/solid-devtools", - "version": "0.1.1", + "version": "0.2.0", "description": "TanStack Devtools is a set of tools for building advanced devtools for your Solid application.", "author": "Tanner Linsley", "license": "MIT", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 62289d57..99a27403 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -78,7 +78,7 @@ importers: specifier: workspace:^ version: link:../../../packages/event-bus-client '@tanstack/react-devtools': - specifier: ^0.1.1 + specifier: ^0.2.0 version: link:../../../packages/react-devtools '@tanstack/react-query': specifier: ^5.83.0 @@ -164,7 +164,7 @@ importers: specifier: workspace:^ version: link:../../../packages/event-bus-client '@tanstack/react-devtools': - specifier: ^0.1.1 + specifier: ^0.2.0 version: link:../../../packages/react-devtools '@tanstack/react-query': specifier: ^5.83.0 @@ -240,12 +240,10 @@ importers: specifier: ^4.2.4 version: 4.2.4 - examples/react/start/generated/prisma: {} - examples/solid/basic: dependencies: '@tanstack/solid-devtools': - specifier: ^0.1.1 + specifier: ^0.2.0 version: link:../../../packages/solid-devtools '@tanstack/solid-query': specifier: ^5.83.0