From 9b80713ce5ecf8c79dc758cf1dbcd6b5c62969b8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 28 Aug 2026 07:04:44 +0000 Subject: [PATCH] Version Packages --- .../request-scoped-execution-stack-build.md | 11 ---- .changeset/restore-desktop-build-resources.md | 5 -- apps/cli/CHANGELOG.md | 20 ++++++ apps/cli/package.json | 2 +- apps/cloud/CHANGELOG.md | 21 ++++++ apps/cloud/package.json | 2 +- apps/desktop/CHANGELOG.md | 2 + apps/desktop/package.json | 2 +- apps/host-selfhost/CHANGELOG.md | 21 ++++++ apps/host-selfhost/package.json | 2 +- apps/local/CHANGELOG.md | 27 ++++++++ apps/local/package.json | 2 +- bun.lock | 64 +++++++++---------- e2e/CHANGELOG.md | 12 ++++ e2e/package.json | 2 +- examples/all-plugins/CHANGELOG.md | 14 ++++ examples/all-plugins/package.json | 2 +- examples/docs-sdk-quickstart/CHANGELOG.md | 8 +++ examples/docs-sdk-quickstart/package.json | 2 +- packages/core/analytics/CHANGELOG.md | 7 ++ packages/core/analytics/package.json | 2 +- packages/core/api/CHANGELOG.md | 9 +++ packages/core/api/package.json | 2 +- packages/core/cli/CHANGELOG.md | 7 ++ packages/core/cli/package.json | 2 +- packages/core/config/CHANGELOG.md | 7 ++ packages/core/config/package.json | 2 +- packages/core/execution/CHANGELOG.md | 8 +++ packages/core/execution/package.json | 2 +- packages/core/sdk/CHANGELOG.md | 2 + packages/core/sdk/package.json | 2 +- packages/core/vite-plugin/CHANGELOG.md | 7 ++ packages/core/vite-plugin/package.json | 2 +- packages/hosts/cloudflare/CHANGELOG.md | 10 +++ packages/hosts/cloudflare/package.json | 2 +- packages/hosts/mcp-apps-shell/CHANGELOG.md | 8 +++ packages/hosts/mcp-apps-shell/package.json | 2 +- packages/kernel/core/CHANGELOG.md | 2 + packages/kernel/core/package.json | 2 +- packages/kernel/runtime-quickjs/CHANGELOG.md | 7 ++ packages/kernel/runtime-quickjs/package.json | 2 +- .../runtime-workerd-subprocess/CHANGELOG.md | 7 ++ .../runtime-workerd-subprocess/package.json | 2 +- .../plugins/desktop-settings/CHANGELOG.md | 7 ++ .../plugins/desktop-settings/package.json | 2 +- .../plugins/encrypted-secrets/CHANGELOG.md | 7 ++ .../plugins/encrypted-secrets/package.json | 2 +- packages/plugins/example/CHANGELOG.md | 7 ++ packages/plugins/example/package.json | 2 +- packages/plugins/file-secrets/CHANGELOG.md | 7 ++ packages/plugins/file-secrets/package.json | 2 +- packages/plugins/graphql/CHANGELOG.md | 10 +++ packages/plugins/graphql/package.json | 2 +- packages/plugins/keychain/CHANGELOG.md | 7 ++ packages/plugins/keychain/package.json | 2 +- packages/plugins/mcp/CHANGELOG.md | 10 +++ packages/plugins/mcp/package.json | 2 +- packages/plugins/onepassword/CHANGELOG.md | 9 +++ packages/plugins/onepassword/package.json | 2 +- packages/plugins/openapi/CHANGELOG.md | 10 +++ packages/plugins/openapi/package.json | 2 +- .../provider-service-split/CHANGELOG.md | 8 +++ .../provider-service-split/package.json | 2 +- packages/plugins/toolkits/CHANGELOG.md | 9 +++ packages/plugins/toolkits/package.json | 2 +- packages/react/CHANGELOG.md | 8 +++ packages/react/package.json | 2 +- 67 files changed, 369 insertions(+), 80 deletions(-) delete mode 100644 .changeset/request-scoped-execution-stack-build.md delete mode 100644 .changeset/restore-desktop-build-resources.md diff --git a/.changeset/request-scoped-execution-stack-build.md b/.changeset/request-scoped-execution-stack-build.md deleted file mode 100644 index f7b383d477..0000000000 --- a/.changeset/request-scoped-execution-stack-build.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"executor": patch ---- - -**Concurrent API requests no longer share one database provider build** - -Every HTTP request gets its own database connection, opened when the request fiber's scope opens and closed when it closes. The middleware that builds a request's execution stack, however, captures the boot fiber's context once at layer-construction time and re-applies it to every request. A captured context carries Effect's current memoization map, and re-applying it replaced the fresh per-request map with the boot one — which every in-flight request in the isolate shares. - -The per-request stack build then memoized itself there. Sequential requests still rebuilt, because the memo entry is released once the request that built it finishes, so the problem was confined to requests that overlap: the second request reused the first one's stack build, and with it the first one's database connection. A request could therefore issue queries on a connection it did not own, and lose that connection mid-flight when the owner finished and closed it — typically surfacing as a failed read after a slow outbound call, on a request that had already read successfully. - -The stack is now built with a request-local memoization scope, so overlapping requests each build their own stack over their own connection. The captured context still carries the long-lived services it exists to carry. The two other per-request provider builds that ran under a captured context — the account provider and the admin-users provider — are built the same way, for the same reason. diff --git a/.changeset/restore-desktop-build-resources.md b/.changeset/restore-desktop-build-resources.md deleted file mode 100644 index 5b41e38ff0..0000000000 --- a/.changeset/restore-desktop-build-resources.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"executor": patch ---- - -Desktop: restore the macOS signing entitlements and app icon that were accidentally removed from the build inputs, and fail fast at PR time and before publishing when any configured build resource is missing. The v1.6.1 desktop build could not be signed; this release supersedes it. diff --git a/apps/cli/CHANGELOG.md b/apps/cli/CHANGELOG.md index 0e33ac8177..27f0acd066 100644 --- a/apps/cli/CHANGELOG.md +++ b/apps/cli/CHANGELOG.md @@ -1,5 +1,25 @@ # executor +## 1.6.2 + +### Patch Changes + +- [#1802](https://github.com/UsefulSoftwareCo/executor/pull/1802) [`2afb6e8`](https://github.com/UsefulSoftwareCo/executor/commit/2afb6e86ddf081afb8a246d76291a7ae668e05f4) Thanks [@RhysSullivan](https://github.com/RhysSullivan)! - **Concurrent API requests no longer share one database provider build** + + Every HTTP request gets its own database connection, opened when the request fiber's scope opens and closed when it closes. The middleware that builds a request's execution stack, however, captures the boot fiber's context once at layer-construction time and re-applies it to every request. A captured context carries Effect's current memoization map, and re-applying it replaced the fresh per-request map with the boot one — which every in-flight request in the isolate shares. + + The per-request stack build then memoized itself there. Sequential requests still rebuilt, because the memo entry is released once the request that built it finishes, so the problem was confined to requests that overlap: the second request reused the first one's stack build, and with it the first one's database connection. A request could therefore issue queries on a connection it did not own, and lose that connection mid-flight when the owner finished and closed it — typically surfacing as a failed read after a slow outbound call, on a request that had already read successfully. + + The stack is now built with a request-local memoization scope, so overlapping requests each build their own stack over their own connection. The captured context still carries the long-lived services it exists to carry. The two other per-request provider builds that ran under a captured context — the account provider and the admin-users provider — are built the same way, for the same reason. + +- [#1807](https://github.com/UsefulSoftwareCo/executor/pull/1807) [`78311a1`](https://github.com/UsefulSoftwareCo/executor/commit/78311a1ce506705a2420239fd96823203a9a1374) Thanks [@RhysSullivan](https://github.com/RhysSullivan)! - Desktop: restore the macOS signing entitlements and app icon that were accidentally removed from the build inputs, and fail fast at PR time and before publishing when any configured build resource is missing. The v1.6.1 desktop build could not be signed; this release supersedes it. + +- Updated dependencies []: + - @executor-js/sdk@1.6.2 + - @executor-js/runtime-quickjs@1.6.2 + - @executor-js/local@1.6.2 + - @executor-js/api@1.4.65 + ## 1.6.1 ### Patch Changes diff --git a/apps/cli/package.json b/apps/cli/package.json index 06952c50cd..5317348e99 100644 --- a/apps/cli/package.json +++ b/apps/cli/package.json @@ -1,6 +1,6 @@ { "name": "executor", - "version": "1.6.1", + "version": "1.6.2", "private": true, "bin": { "executor": "./bin/executor.ts" diff --git a/apps/cloud/CHANGELOG.md b/apps/cloud/CHANGELOG.md index a45b0dfb22..1ff2652ac3 100644 --- a/apps/cloud/CHANGELOG.md +++ b/apps/cloud/CHANGELOG.md @@ -1,5 +1,26 @@ # @executor-js/cloud +## 1.4.63 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/sdk@1.6.2 + - @executor-js/runtime-quickjs@1.6.2 + - @executor-js/execution@1.6.2 + - @executor-js/plugin-graphql@1.6.2 + - @executor-js/plugin-mcp@1.6.2 + - @executor-js/plugin-openapi@1.6.2 + - @executor-js/api@1.4.65 + - @executor-js/vite-plugin@0.0.62 + - @executor-js/cloudflare@0.0.44 + - @executor-js/host-mcp@1.4.4 + - @executor-js/mcp-apps-shell@1.4.13 + - @executor-js/runtime-dynamic-worker@1.4.4 + - @executor-js/plugin-toolkits@1.5.37 + - @executor-js/plugin-workos-vault@0.0.2 + - @executor-js/react@1.4.65 + ## 1.4.62 ### Patch Changes diff --git a/apps/cloud/package.json b/apps/cloud/package.json index 98b05d89e6..8e4ac20c9f 100644 --- a/apps/cloud/package.json +++ b/apps/cloud/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/cloud", - "version": "1.4.62", + "version": "1.4.63", "private": true, "type": "module", "scripts": { diff --git a/apps/desktop/CHANGELOG.md b/apps/desktop/CHANGELOG.md index a48f8523ef..6984cc7416 100644 --- a/apps/desktop/CHANGELOG.md +++ b/apps/desktop/CHANGELOG.md @@ -1,5 +1,7 @@ # @executor-js/desktop +## 1.6.2 + ## 1.6.1 ## 1.6.0 diff --git a/apps/desktop/package.json b/apps/desktop/package.json index ed1fefbb80..fe9099d391 100644 --- a/apps/desktop/package.json +++ b/apps/desktop/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/desktop", - "version": "1.6.1", + "version": "1.6.2", "private": true, "homepage": "https://github.com/UsefulSoftwareCo/executor", "license": "MIT", diff --git a/apps/host-selfhost/CHANGELOG.md b/apps/host-selfhost/CHANGELOG.md index 224c71a7ac..b60fb3586f 100644 --- a/apps/host-selfhost/CHANGELOG.md +++ b/apps/host-selfhost/CHANGELOG.md @@ -1,5 +1,26 @@ # @executor-js/host-selfhost +## 0.0.44 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/sdk@1.6.2 + - @executor-js/runtime-quickjs@1.6.2 + - @executor-js/execution@1.6.2 + - @executor-js/plugin-graphql@1.6.2 + - @executor-js/plugin-mcp@1.6.2 + - @executor-js/plugin-openapi@1.6.2 + - @executor-js/app@1.4.4 + - @executor-js/analytics@0.1.9 + - @executor-js/api@1.4.65 + - @executor-js/host-mcp@1.4.4 + - @executor-js/mcp-apps-shell@1.4.13 + - @executor-js/plugin-encrypted-secrets@0.0.44 + - @executor-js/plugin-provider-service-split@0.0.16 + - @executor-js/plugin-toolkits@1.5.37 + - @executor-js/react@1.4.65 + ## 0.0.43 ### Patch Changes diff --git a/apps/host-selfhost/package.json b/apps/host-selfhost/package.json index 5d7fd72fed..dfe5b05b09 100644 --- a/apps/host-selfhost/package.json +++ b/apps/host-selfhost/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/host-selfhost", - "version": "0.0.43", + "version": "0.0.44", "private": true, "type": "module", "exports": { diff --git a/apps/local/CHANGELOG.md b/apps/local/CHANGELOG.md index 3af12156c6..8475563751 100644 --- a/apps/local/CHANGELOG.md +++ b/apps/local/CHANGELOG.md @@ -1,5 +1,32 @@ # @executor-js/local +## 1.6.2 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/sdk@1.6.2 + - @executor-js/runtime-quickjs@1.6.2 + - @executor-js/execution@1.6.2 + - @executor-js/config@1.6.2 + - @executor-js/plugin-file-secrets@1.6.2 + - @executor-js/plugin-graphql@1.6.2 + - @executor-js/plugin-keychain@1.6.2 + - @executor-js/plugin-mcp@1.6.2 + - @executor-js/plugin-onepassword@1.6.2 + - @executor-js/plugin-openapi@1.6.2 + - @executor-js/plugin-example@1.6.2 + - @executor-js/plugin-desktop-settings@1.6.2 + - @executor-js/app@1.4.4 + - @executor-js/analytics@0.1.9 + - @executor-js/api@1.4.65 + - @executor-js/vite-plugin@0.0.62 + - @executor-js/host-mcp@1.4.4 + - @executor-js/mcp-apps-shell@1.4.13 + - @executor-js/plugin-provider-service-split@0.0.16 + - @executor-js/plugin-toolkits@1.5.37 + - @executor-js/react@1.4.65 + ## 1.6.1 ### Patch Changes diff --git a/apps/local/package.json b/apps/local/package.json index bbb62052ba..9b9b6aeb28 100644 --- a/apps/local/package.json +++ b/apps/local/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/local", - "version": "1.6.1", + "version": "1.6.2", "private": true, "type": "module", "exports": { diff --git a/bun.lock b/bun.lock index 971d7ee5d5..55d1104341 100644 --- a/bun.lock +++ b/bun.lock @@ -31,7 +31,7 @@ }, "apps/cli": { "name": "executor", - "version": "1.6.1", + "version": "1.6.2", "bin": { "executor": "./bin/executor.ts", }, @@ -60,7 +60,7 @@ }, "apps/cloud": { "name": "@executor-js/cloud", - "version": "1.4.62", + "version": "1.4.63", "dependencies": { "@cloudflare/vite-plugin": "^1.31.1", "@effect/atom-react": "catalog:", @@ -133,7 +133,7 @@ }, "apps/desktop": { "name": "@executor-js/desktop", - "version": "1.6.1", + "version": "1.6.2", "dependencies": { "@sentry/bun": "^10.57.0", "@sentry/electron": "^7.13.0", @@ -220,7 +220,7 @@ }, "apps/host-selfhost": { "name": "@executor-js/host-selfhost", - "version": "0.0.43", + "version": "0.0.44", "dependencies": { "@better-auth/api-key": "^1.6.11", "@cloudflare/worker-bundler": "0.2.1", @@ -272,7 +272,7 @@ }, "apps/local": { "name": "@executor-js/local", - "version": "1.6.1", + "version": "1.6.2", "dependencies": { "@effect/atom-react": "catalog:", "@effect/platform-node": "catalog:", @@ -352,7 +352,7 @@ }, "e2e": { "name": "@executor-js/e2e", - "version": "0.0.41", + "version": "0.0.42", "dependencies": { "@executor-js/api": "workspace:*", "@executor-js/emulate": "^0.14.0", @@ -387,7 +387,7 @@ }, "examples/all-plugins": { "name": "@executor-js/example-all-plugins", - "version": "0.0.62", + "version": "0.0.63", "dependencies": { "@executor-js/plugin-file-secrets": "workspace:*", "@executor-js/plugin-graphql": "workspace:*", @@ -406,7 +406,7 @@ }, "examples/docs-sdk-quickstart": { "name": "@executor-js/example-docs-sdk-quickstart", - "version": "0.0.47", + "version": "0.0.48", "dependencies": { "@executor-js/plugin-openapi": "workspace:*", "@executor-js/sdk": "workspace:*", @@ -463,7 +463,7 @@ }, "packages/core/analytics": { "name": "@executor-js/analytics", - "version": "0.1.8", + "version": "0.1.9", "dependencies": { "@effect/platform-node": "catalog:", "@executor-js/execution": "workspace:*", @@ -479,7 +479,7 @@ }, "packages/core/api": { "name": "@executor-js/api", - "version": "1.4.64", + "version": "1.4.65", "dependencies": { "@executor-js/execution": "workspace:*", "@executor-js/host-mcp": "workspace:*", @@ -496,7 +496,7 @@ }, "packages/core/cli": { "name": "@executor-js/cli", - "version": "0.2.51", + "version": "0.2.52", "bin": { "executor-sdk": "./dist/index.js", }, @@ -517,7 +517,7 @@ }, "packages/core/config": { "name": "@executor-js/config", - "version": "1.6.1", + "version": "1.6.2", "dependencies": { "@executor-js/sdk": "workspace:*", "jiti": "^2.6.1", @@ -538,7 +538,7 @@ }, "packages/core/execution": { "name": "@executor-js/execution", - "version": "1.6.1", + "version": "1.6.2", "dependencies": { "@executor-js/codemode-core": "workspace:*", "@executor-js/sdk": "workspace:*", @@ -604,7 +604,7 @@ }, "packages/core/sdk": { "name": "@executor-js/sdk", - "version": "1.6.1", + "version": "1.6.2", "dependencies": { "@executor-js/fumadb": "workspace:*", "@standard-schema/spec": "^1.1.0", @@ -657,7 +657,7 @@ }, "packages/core/vite-plugin": { "name": "@executor-js/vite-plugin", - "version": "0.0.61", + "version": "0.0.62", "dependencies": { "@executor-js/sdk": "workspace:*", "jiti": "^2.6.1", @@ -677,7 +677,7 @@ }, "packages/hosts/cloudflare": { "name": "@executor-js/cloudflare", - "version": "0.0.43", + "version": "0.0.44", "dependencies": { "@executor-js/api": "workspace:*", "@executor-js/execution": "workspace:*", @@ -718,7 +718,7 @@ }, "packages/hosts/mcp-apps-shell": { "name": "@executor-js/mcp-apps-shell", - "version": "1.4.12", + "version": "1.4.13", "dependencies": { "@executor-js/react": "workspace:*", "@executor-js/runtime-quickjs": "workspace:*", @@ -756,7 +756,7 @@ }, "packages/kernel/core": { "name": "@executor-js/codemode-core", - "version": "1.6.1", + "version": "1.6.2", "dependencies": { "@babel/parser": "^7.29.2", "@standard-schema/spec": "^1.0.0", @@ -829,7 +829,7 @@ }, "packages/kernel/runtime-quickjs": { "name": "@executor-js/runtime-quickjs", - "version": "1.6.1", + "version": "1.6.2", "dependencies": { "@executor-js/codemode-core": "workspace:*", "quickjs-emscripten": "catalog:", @@ -849,7 +849,7 @@ }, "packages/kernel/runtime-workerd-subprocess": { "name": "@executor-js/runtime-workerd-subprocess", - "version": "0.0.16", + "version": "0.0.17", "dependencies": { "@executor-js/codemode-core": "workspace:*", "effect": "catalog:", @@ -864,7 +864,7 @@ }, "packages/plugins/desktop-settings": { "name": "@executor-js/plugin-desktop-settings", - "version": "1.6.1", + "version": "1.6.2", "dependencies": { "@executor-js/sdk": "workspace:*", "react": "catalog:", @@ -877,7 +877,7 @@ }, "packages/plugins/encrypted-secrets": { "name": "@executor-js/plugin-encrypted-secrets", - "version": "0.0.43", + "version": "0.0.44", "dependencies": { "@executor-js/sdk": "workspace:*", "effect": "catalog:", @@ -892,7 +892,7 @@ }, "packages/plugins/example": { "name": "@executor-js/plugin-example", - "version": "1.6.1", + "version": "1.6.2", "dependencies": { "@executor-js/sdk": "workspace:*", }, @@ -915,7 +915,7 @@ }, "packages/plugins/file-secrets": { "name": "@executor-js/plugin-file-secrets", - "version": "1.6.1", + "version": "1.6.2", "dependencies": { "@executor-js/sdk": "workspace:*", }, @@ -932,7 +932,7 @@ }, "packages/plugins/graphql": { "name": "@executor-js/plugin-graphql", - "version": "1.6.1", + "version": "1.6.2", "dependencies": { "@effect/platform-node": "catalog:", "@executor-js/config": "workspace:*", @@ -971,7 +971,7 @@ }, "packages/plugins/keychain": { "name": "@executor-js/plugin-keychain", - "version": "1.6.1", + "version": "1.6.2", "dependencies": { "@executor-js/sdk": "workspace:*", "@napi-rs/keyring": "^1.2.0", @@ -990,7 +990,7 @@ }, "packages/plugins/mcp": { "name": "@executor-js/plugin-mcp", - "version": "1.6.1", + "version": "1.6.2", "dependencies": { "@cfworker/json-schema": "^4.1.1", "@effect/platform-node": "catalog:", @@ -1033,7 +1033,7 @@ }, "packages/plugins/onepassword": { "name": "@executor-js/plugin-onepassword", - "version": "1.6.1", + "version": "1.6.2", "dependencies": { "@1password/op-js": "^0.1.13", "@1password/sdk": "^0.4.1-beta.1", @@ -1067,7 +1067,7 @@ }, "packages/plugins/openapi": { "name": "@executor-js/plugin-openapi", - "version": "1.6.1", + "version": "1.6.2", "dependencies": { "@effect/platform-node": "catalog:", "@executor-js/config": "workspace:*", @@ -1108,7 +1108,7 @@ }, "packages/plugins/provider-service-split": { "name": "@executor-js/plugin-provider-service-split", - "version": "0.0.15", + "version": "0.0.16", "dependencies": { "@executor-js/plugin-openapi": "workspace:*", "@executor-js/sdk": "workspace:*", @@ -1125,7 +1125,7 @@ }, "packages/plugins/toolkits": { "name": "@executor-js/plugin-toolkits", - "version": "1.5.36", + "version": "1.5.37", "dependencies": { "@executor-js/sdk": "workspace:*", }, @@ -1194,7 +1194,7 @@ }, "packages/react": { "name": "@executor-js/react", - "version": "1.4.64", + "version": "1.4.65", "dependencies": { "@base-ui/react": "^1.3.0", "@effect/atom-react": "catalog:", diff --git a/e2e/CHANGELOG.md b/e2e/CHANGELOG.md index 62c6b7ac04..4779d631d7 100644 --- a/e2e/CHANGELOG.md +++ b/e2e/CHANGELOG.md @@ -1,5 +1,17 @@ # @executor-js/e2e +## 0.0.42 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/sdk@1.6.2 + - @executor-js/plugin-graphql@1.6.2 + - @executor-js/plugin-mcp@1.6.2 + - @executor-js/plugin-openapi@1.6.2 + - @executor-js/api@1.4.65 + - @executor-js/plugin-toolkits@1.5.37 + ## 0.0.41 ### Patch Changes diff --git a/e2e/package.json b/e2e/package.json index d32bdbad8f..f6d330287f 100644 --- a/e2e/package.json +++ b/e2e/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/e2e", - "version": "0.0.41", + "version": "0.0.42", "private": true, "type": "module", "scripts": { diff --git a/examples/all-plugins/CHANGELOG.md b/examples/all-plugins/CHANGELOG.md index c2abb97254..4d01cbe5b7 100644 --- a/examples/all-plugins/CHANGELOG.md +++ b/examples/all-plugins/CHANGELOG.md @@ -1,5 +1,19 @@ # @executor-js/example-all-plugins +## 0.0.63 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/sdk@1.6.2 + - @executor-js/plugin-file-secrets@1.6.2 + - @executor-js/plugin-graphql@1.6.2 + - @executor-js/plugin-keychain@1.6.2 + - @executor-js/plugin-mcp@1.6.2 + - @executor-js/plugin-onepassword@1.6.2 + - @executor-js/plugin-openapi@1.6.2 + - @executor-js/plugin-workos-vault@0.0.2 + ## 0.0.62 ### Patch Changes diff --git a/examples/all-plugins/package.json b/examples/all-plugins/package.json index f98aaea11c..4f8fe598e1 100644 --- a/examples/all-plugins/package.json +++ b/examples/all-plugins/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/example-all-plugins", - "version": "0.0.62", + "version": "0.0.63", "private": true, "type": "module", "scripts": { diff --git a/examples/docs-sdk-quickstart/CHANGELOG.md b/examples/docs-sdk-quickstart/CHANGELOG.md index 31e78c6df2..0e8aec9f21 100644 --- a/examples/docs-sdk-quickstart/CHANGELOG.md +++ b/examples/docs-sdk-quickstart/CHANGELOG.md @@ -1,5 +1,13 @@ # @executor-js/example-docs-sdk-quickstart +## 0.0.48 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/sdk@1.6.2 + - @executor-js/plugin-openapi@1.6.2 + ## 0.0.47 ### Patch Changes diff --git a/examples/docs-sdk-quickstart/package.json b/examples/docs-sdk-quickstart/package.json index 3951f263d7..71cd9ccd5e 100644 --- a/examples/docs-sdk-quickstart/package.json +++ b/examples/docs-sdk-quickstart/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/example-docs-sdk-quickstart", - "version": "0.0.47", + "version": "0.0.48", "private": true, "type": "module", "scripts": { diff --git a/packages/core/analytics/CHANGELOG.md b/packages/core/analytics/CHANGELOG.md index 7f8046614c..4a2cd217f0 100644 --- a/packages/core/analytics/CHANGELOG.md +++ b/packages/core/analytics/CHANGELOG.md @@ -1,5 +1,12 @@ # @executor-js/analytics +## 0.1.9 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/execution@1.6.2 + ## 0.1.8 ### Patch Changes diff --git a/packages/core/analytics/package.json b/packages/core/analytics/package.json index c4d1652a2a..e66096fe9d 100644 --- a/packages/core/analytics/package.json +++ b/packages/core/analytics/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/analytics", - "version": "0.1.8", + "version": "0.1.9", "private": true, "homepage": "https://github.com/UsefulSoftwareCo/executor/tree/main/packages/core/analytics", "bugs": { diff --git a/packages/core/api/CHANGELOG.md b/packages/core/api/CHANGELOG.md index b0a41be934..2fe6976d99 100644 --- a/packages/core/api/CHANGELOG.md +++ b/packages/core/api/CHANGELOG.md @@ -1,5 +1,14 @@ # @executor-js/api +## 1.4.65 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/sdk@1.6.2 + - @executor-js/execution@1.6.2 + - @executor-js/host-mcp@1.4.4 + ## 1.4.64 ### Patch Changes diff --git a/packages/core/api/package.json b/packages/core/api/package.json index 931655b2cf..a85e340d10 100644 --- a/packages/core/api/package.json +++ b/packages/core/api/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/api", - "version": "1.4.64", + "version": "1.4.65", "private": true, "type": "module", "exports": { diff --git a/packages/core/cli/CHANGELOG.md b/packages/core/cli/CHANGELOG.md index be831a4ce8..06b9e2901d 100644 --- a/packages/core/cli/CHANGELOG.md +++ b/packages/core/cli/CHANGELOG.md @@ -1,5 +1,12 @@ # @executor-js/cli +## 0.2.52 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/sdk@1.6.2 + ## 0.2.51 ### Patch Changes diff --git a/packages/core/cli/package.json b/packages/core/cli/package.json index 6ee3a88a88..483fa54907 100644 --- a/packages/core/cli/package.json +++ b/packages/core/cli/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/cli", - "version": "0.2.51", + "version": "0.2.52", "description": "CLI for the executor SDK — schema generation, migrations", "homepage": "https://github.com/UsefulSoftwareCo/executor/tree/main/packages/core/cli", "bugs": { diff --git a/packages/core/config/CHANGELOG.md b/packages/core/config/CHANGELOG.md index 168772f7c9..109bcfeb56 100644 --- a/packages/core/config/CHANGELOG.md +++ b/packages/core/config/CHANGELOG.md @@ -1,5 +1,12 @@ # @executor-js/config +## 1.6.2 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/sdk@1.6.2 + ## 1.6.1 ### Patch Changes diff --git a/packages/core/config/package.json b/packages/core/config/package.json index b784616c31..ed76b4be60 100644 --- a/packages/core/config/package.json +++ b/packages/core/config/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/config", - "version": "1.6.1", + "version": "1.6.2", "homepage": "https://github.com/UsefulSoftwareCo/executor/tree/main/packages/core/config", "bugs": { "url": "https://github.com/UsefulSoftwareCo/executor/issues" diff --git a/packages/core/execution/CHANGELOG.md b/packages/core/execution/CHANGELOG.md index 03e2a871f5..3740220d12 100644 --- a/packages/core/execution/CHANGELOG.md +++ b/packages/core/execution/CHANGELOG.md @@ -1,5 +1,13 @@ # @executor-js/execution +## 1.6.2 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/sdk@1.6.2 + - @executor-js/codemode-core@1.6.2 + ## 1.6.1 ### Patch Changes diff --git a/packages/core/execution/package.json b/packages/core/execution/package.json index ff3daace8b..355724706a 100644 --- a/packages/core/execution/package.json +++ b/packages/core/execution/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/execution", - "version": "1.6.1", + "version": "1.6.2", "homepage": "https://github.com/UsefulSoftwareCo/executor/tree/main/packages/core/execution", "bugs": { "url": "https://github.com/UsefulSoftwareCo/executor/issues" diff --git a/packages/core/sdk/CHANGELOG.md b/packages/core/sdk/CHANGELOG.md index d8d0ccdbe3..e8b9c61315 100644 --- a/packages/core/sdk/CHANGELOG.md +++ b/packages/core/sdk/CHANGELOG.md @@ -1,5 +1,7 @@ # @executor-js/sdk +## 1.6.2 + ## 1.6.1 ### Patch Changes diff --git a/packages/core/sdk/package.json b/packages/core/sdk/package.json index 37cec960ce..0715893922 100644 --- a/packages/core/sdk/package.json +++ b/packages/core/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/sdk", - "version": "1.6.1", + "version": "1.6.2", "homepage": "https://github.com/UsefulSoftwareCo/executor/tree/main/packages/core/sdk", "bugs": { "url": "https://github.com/UsefulSoftwareCo/executor/issues" diff --git a/packages/core/vite-plugin/CHANGELOG.md b/packages/core/vite-plugin/CHANGELOG.md index 08f41e92c3..eebb6919b1 100644 --- a/packages/core/vite-plugin/CHANGELOG.md +++ b/packages/core/vite-plugin/CHANGELOG.md @@ -1,5 +1,12 @@ # @executor-js/vite-plugin +## 0.0.62 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/sdk@1.6.2 + ## 0.0.61 ### Patch Changes diff --git a/packages/core/vite-plugin/package.json b/packages/core/vite-plugin/package.json index 64004c3ee6..cf9a1e3daa 100644 --- a/packages/core/vite-plugin/package.json +++ b/packages/core/vite-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/vite-plugin", - "version": "0.0.61", + "version": "0.0.62", "homepage": "https://github.com/UsefulSoftwareCo/executor/tree/main/packages/core/vite-plugin", "bugs": { "url": "https://github.com/UsefulSoftwareCo/executor/issues" diff --git a/packages/hosts/cloudflare/CHANGELOG.md b/packages/hosts/cloudflare/CHANGELOG.md index 2bfe8f8d05..ca84652065 100644 --- a/packages/hosts/cloudflare/CHANGELOG.md +++ b/packages/hosts/cloudflare/CHANGELOG.md @@ -1,5 +1,15 @@ # @executor-js/cloudflare +## 0.0.44 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/sdk@1.6.2 + - @executor-js/execution@1.6.2 + - @executor-js/api@1.4.65 + - @executor-js/host-mcp@1.4.4 + ## 0.0.43 ### Patch Changes diff --git a/packages/hosts/cloudflare/package.json b/packages/hosts/cloudflare/package.json index 072667ad31..f89f9b37db 100644 --- a/packages/hosts/cloudflare/package.json +++ b/packages/hosts/cloudflare/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/cloudflare", - "version": "0.0.43", + "version": "0.0.44", "private": true, "type": "module", "exports": { diff --git a/packages/hosts/mcp-apps-shell/CHANGELOG.md b/packages/hosts/mcp-apps-shell/CHANGELOG.md index 53189d2de5..7541d42610 100644 --- a/packages/hosts/mcp-apps-shell/CHANGELOG.md +++ b/packages/hosts/mcp-apps-shell/CHANGELOG.md @@ -1,5 +1,13 @@ # @executor-js/mcp-apps-shell +## 1.4.13 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/runtime-quickjs@1.6.2 + - @executor-js/react@1.4.65 + ## 1.4.12 ### Patch Changes diff --git a/packages/hosts/mcp-apps-shell/package.json b/packages/hosts/mcp-apps-shell/package.json index a0dd4967d1..9e5bf4dda6 100644 --- a/packages/hosts/mcp-apps-shell/package.json +++ b/packages/hosts/mcp-apps-shell/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/mcp-apps-shell", - "version": "1.4.12", + "version": "1.4.13", "private": true, "type": "module", "exports": { diff --git a/packages/kernel/core/CHANGELOG.md b/packages/kernel/core/CHANGELOG.md index 9542a550bf..14c9411fad 100644 --- a/packages/kernel/core/CHANGELOG.md +++ b/packages/kernel/core/CHANGELOG.md @@ -1,5 +1,7 @@ # @executor-js/codemode-core +## 1.6.2 + ## 1.6.1 ## 1.6.0 diff --git a/packages/kernel/core/package.json b/packages/kernel/core/package.json index 2fbc1beb81..8046ed3133 100644 --- a/packages/kernel/core/package.json +++ b/packages/kernel/core/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/codemode-core", - "version": "1.6.1", + "version": "1.6.2", "homepage": "https://github.com/UsefulSoftwareCo/executor/tree/main/packages/kernel/core", "bugs": { "url": "https://github.com/UsefulSoftwareCo/executor/issues" diff --git a/packages/kernel/runtime-quickjs/CHANGELOG.md b/packages/kernel/runtime-quickjs/CHANGELOG.md index 4e1adb559a..9522d30602 100644 --- a/packages/kernel/runtime-quickjs/CHANGELOG.md +++ b/packages/kernel/runtime-quickjs/CHANGELOG.md @@ -1,5 +1,12 @@ # @executor-js/runtime-quickjs +## 1.6.2 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/codemode-core@1.6.2 + ## 1.6.1 ### Patch Changes diff --git a/packages/kernel/runtime-quickjs/package.json b/packages/kernel/runtime-quickjs/package.json index b738b1da32..e75daf3cee 100644 --- a/packages/kernel/runtime-quickjs/package.json +++ b/packages/kernel/runtime-quickjs/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/runtime-quickjs", - "version": "1.6.1", + "version": "1.6.2", "homepage": "https://github.com/UsefulSoftwareCo/executor/tree/main/packages/kernel/runtime-quickjs", "bugs": { "url": "https://github.com/UsefulSoftwareCo/executor/issues" diff --git a/packages/kernel/runtime-workerd-subprocess/CHANGELOG.md b/packages/kernel/runtime-workerd-subprocess/CHANGELOG.md index a047a12e7e..601cd264cd 100644 --- a/packages/kernel/runtime-workerd-subprocess/CHANGELOG.md +++ b/packages/kernel/runtime-workerd-subprocess/CHANGELOG.md @@ -1,5 +1,12 @@ # @executor-js/runtime-workerd-subprocess +## 0.0.17 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/codemode-core@1.6.2 + ## 0.0.16 ### Patch Changes diff --git a/packages/kernel/runtime-workerd-subprocess/package.json b/packages/kernel/runtime-workerd-subprocess/package.json index 5e47083157..b556657c6e 100644 --- a/packages/kernel/runtime-workerd-subprocess/package.json +++ b/packages/kernel/runtime-workerd-subprocess/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/runtime-workerd-subprocess", - "version": "0.0.16", + "version": "0.0.17", "private": true, "type": "module", "exports": { diff --git a/packages/plugins/desktop-settings/CHANGELOG.md b/packages/plugins/desktop-settings/CHANGELOG.md index dc1af9bf82..bf7e370651 100644 --- a/packages/plugins/desktop-settings/CHANGELOG.md +++ b/packages/plugins/desktop-settings/CHANGELOG.md @@ -1,5 +1,12 @@ # @executor-js/plugin-desktop-settings +## 1.6.2 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/sdk@1.6.2 + ## 1.6.1 ### Patch Changes diff --git a/packages/plugins/desktop-settings/package.json b/packages/plugins/desktop-settings/package.json index b07faae5ce..836e6e786f 100644 --- a/packages/plugins/desktop-settings/package.json +++ b/packages/plugins/desktop-settings/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/plugin-desktop-settings", - "version": "1.6.1", + "version": "1.6.2", "homepage": "https://github.com/UsefulSoftwareCo/executor/tree/main/packages/plugins/desktop-settings", "bugs": { "url": "https://github.com/UsefulSoftwareCo/executor/issues" diff --git a/packages/plugins/encrypted-secrets/CHANGELOG.md b/packages/plugins/encrypted-secrets/CHANGELOG.md index 6a26911a02..7d931fd4b2 100644 --- a/packages/plugins/encrypted-secrets/CHANGELOG.md +++ b/packages/plugins/encrypted-secrets/CHANGELOG.md @@ -1,5 +1,12 @@ # @executor-js/plugin-encrypted-secrets +## 0.0.44 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/sdk@1.6.2 + ## 0.0.43 ### Patch Changes diff --git a/packages/plugins/encrypted-secrets/package.json b/packages/plugins/encrypted-secrets/package.json index 910ba0dcc1..e544c4efc4 100644 --- a/packages/plugins/encrypted-secrets/package.json +++ b/packages/plugins/encrypted-secrets/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/plugin-encrypted-secrets", - "version": "0.0.43", + "version": "0.0.44", "private": true, "type": "module", "exports": { diff --git a/packages/plugins/example/CHANGELOG.md b/packages/plugins/example/CHANGELOG.md index 1f8c5556fd..3b4d796d7c 100644 --- a/packages/plugins/example/CHANGELOG.md +++ b/packages/plugins/example/CHANGELOG.md @@ -1,5 +1,12 @@ # @executor-js/plugin-example +## 1.6.2 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/sdk@1.6.2 + ## 1.6.1 ### Patch Changes diff --git a/packages/plugins/example/package.json b/packages/plugins/example/package.json index 96aa46a917..b6bfde1449 100644 --- a/packages/plugins/example/package.json +++ b/packages/plugins/example/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/plugin-example", - "version": "1.6.1", + "version": "1.6.2", "homepage": "https://github.com/UsefulSoftwareCo/executor/tree/main/packages/plugins/example", "bugs": { "url": "https://github.com/UsefulSoftwareCo/executor/issues" diff --git a/packages/plugins/file-secrets/CHANGELOG.md b/packages/plugins/file-secrets/CHANGELOG.md index 0e0d66993d..ca281ff49a 100644 --- a/packages/plugins/file-secrets/CHANGELOG.md +++ b/packages/plugins/file-secrets/CHANGELOG.md @@ -1,5 +1,12 @@ # @executor-js/plugin-file-secrets +## 1.6.2 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/sdk@1.6.2 + ## 1.6.1 ### Patch Changes diff --git a/packages/plugins/file-secrets/package.json b/packages/plugins/file-secrets/package.json index c0e78f2990..8e56bccdc6 100644 --- a/packages/plugins/file-secrets/package.json +++ b/packages/plugins/file-secrets/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/plugin-file-secrets", - "version": "1.6.1", + "version": "1.6.2", "homepage": "https://github.com/UsefulSoftwareCo/executor/tree/main/packages/plugins/file-secrets", "bugs": { "url": "https://github.com/UsefulSoftwareCo/executor/issues" diff --git a/packages/plugins/graphql/CHANGELOG.md b/packages/plugins/graphql/CHANGELOG.md index cb8dbf9f15..34ad2b11af 100644 --- a/packages/plugins/graphql/CHANGELOG.md +++ b/packages/plugins/graphql/CHANGELOG.md @@ -1,5 +1,15 @@ # @executor-js/plugin-graphql +## 1.6.2 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/sdk@1.6.2 + - @executor-js/config@1.6.2 + - @executor-js/api@1.4.65 + - @executor-js/react@1.4.65 + ## 1.6.1 ### Patch Changes diff --git a/packages/plugins/graphql/package.json b/packages/plugins/graphql/package.json index 93965f36c0..dd5d3932a5 100644 --- a/packages/plugins/graphql/package.json +++ b/packages/plugins/graphql/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/plugin-graphql", - "version": "1.6.1", + "version": "1.6.2", "homepage": "https://github.com/UsefulSoftwareCo/executor/tree/main/packages/plugins/graphql", "bugs": { "url": "https://github.com/UsefulSoftwareCo/executor/issues" diff --git a/packages/plugins/keychain/CHANGELOG.md b/packages/plugins/keychain/CHANGELOG.md index e439c4b9f9..0f7b23472a 100644 --- a/packages/plugins/keychain/CHANGELOG.md +++ b/packages/plugins/keychain/CHANGELOG.md @@ -1,5 +1,12 @@ # @executor-js/plugin-keychain +## 1.6.2 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/sdk@1.6.2 + ## 1.6.1 ### Patch Changes diff --git a/packages/plugins/keychain/package.json b/packages/plugins/keychain/package.json index f1a37ad5c2..4de4b3bbc3 100644 --- a/packages/plugins/keychain/package.json +++ b/packages/plugins/keychain/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/plugin-keychain", - "version": "1.6.1", + "version": "1.6.2", "homepage": "https://github.com/UsefulSoftwareCo/executor/tree/main/packages/plugins/keychain", "bugs": { "url": "https://github.com/UsefulSoftwareCo/executor/issues" diff --git a/packages/plugins/mcp/CHANGELOG.md b/packages/plugins/mcp/CHANGELOG.md index b003a8c1b6..4fc99d0871 100644 --- a/packages/plugins/mcp/CHANGELOG.md +++ b/packages/plugins/mcp/CHANGELOG.md @@ -1,5 +1,15 @@ # @executor-js/plugin-mcp +## 1.6.2 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/sdk@1.6.2 + - @executor-js/config@1.6.2 + - @executor-js/api@1.4.65 + - @executor-js/react@1.4.65 + ## 1.6.1 ### Patch Changes diff --git a/packages/plugins/mcp/package.json b/packages/plugins/mcp/package.json index b0cc4da266..30946fae70 100644 --- a/packages/plugins/mcp/package.json +++ b/packages/plugins/mcp/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/plugin-mcp", - "version": "1.6.1", + "version": "1.6.2", "homepage": "https://github.com/UsefulSoftwareCo/executor/tree/main/packages/plugins/mcp", "bugs": { "url": "https://github.com/UsefulSoftwareCo/executor/issues" diff --git a/packages/plugins/onepassword/CHANGELOG.md b/packages/plugins/onepassword/CHANGELOG.md index e0cafb8e6b..8bd974c0b7 100644 --- a/packages/plugins/onepassword/CHANGELOG.md +++ b/packages/plugins/onepassword/CHANGELOG.md @@ -1,5 +1,14 @@ # @executor-js/plugin-onepassword +## 1.6.2 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/sdk@1.6.2 + - @executor-js/api@1.4.65 + - @executor-js/react@1.4.65 + ## 1.6.1 ### Patch Changes diff --git a/packages/plugins/onepassword/package.json b/packages/plugins/onepassword/package.json index eed8fcb083..f21ad532e6 100644 --- a/packages/plugins/onepassword/package.json +++ b/packages/plugins/onepassword/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/plugin-onepassword", - "version": "1.6.1", + "version": "1.6.2", "homepage": "https://github.com/UsefulSoftwareCo/executor/tree/main/packages/plugins/onepassword", "bugs": { "url": "https://github.com/UsefulSoftwareCo/executor/issues" diff --git a/packages/plugins/openapi/CHANGELOG.md b/packages/plugins/openapi/CHANGELOG.md index 69bddaadc6..3d62df3736 100644 --- a/packages/plugins/openapi/CHANGELOG.md +++ b/packages/plugins/openapi/CHANGELOG.md @@ -1,5 +1,15 @@ # @executor-js/plugin-openapi +## 1.6.2 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/sdk@1.6.2 + - @executor-js/config@1.6.2 + - @executor-js/api@1.4.65 + - @executor-js/react@1.4.65 + ## 1.6.1 ### Patch Changes diff --git a/packages/plugins/openapi/package.json b/packages/plugins/openapi/package.json index e64f387aef..f1679774ed 100644 --- a/packages/plugins/openapi/package.json +++ b/packages/plugins/openapi/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/plugin-openapi", - "version": "1.6.1", + "version": "1.6.2", "homepage": "https://github.com/UsefulSoftwareCo/executor/tree/main/packages/plugins/openapi", "bugs": { "url": "https://github.com/UsefulSoftwareCo/executor/issues" diff --git a/packages/plugins/provider-service-split/CHANGELOG.md b/packages/plugins/provider-service-split/CHANGELOG.md index 87d3163af8..66192a63e3 100644 --- a/packages/plugins/provider-service-split/CHANGELOG.md +++ b/packages/plugins/provider-service-split/CHANGELOG.md @@ -1,5 +1,13 @@ # @executor-js/plugin-provider-service-split +## 0.0.16 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/sdk@1.6.2 + - @executor-js/plugin-openapi@1.6.2 + ## 0.0.15 ### Patch Changes diff --git a/packages/plugins/provider-service-split/package.json b/packages/plugins/provider-service-split/package.json index 7891a36b9c..4fc4a95e26 100644 --- a/packages/plugins/provider-service-split/package.json +++ b/packages/plugins/provider-service-split/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/plugin-provider-service-split", - "version": "0.0.15", + "version": "0.0.16", "private": true, "type": "module", "exports": { diff --git a/packages/plugins/toolkits/CHANGELOG.md b/packages/plugins/toolkits/CHANGELOG.md index a19f76ad38..3b35bc00e7 100644 --- a/packages/plugins/toolkits/CHANGELOG.md +++ b/packages/plugins/toolkits/CHANGELOG.md @@ -1,5 +1,14 @@ # @executor-js/plugin-toolkits +## 1.5.37 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/sdk@1.6.2 + - @executor-js/api@1.4.65 + - @executor-js/react@1.4.65 + ## 1.5.36 ### Patch Changes diff --git a/packages/plugins/toolkits/package.json b/packages/plugins/toolkits/package.json index 7ba9bf5e3a..ca726960ab 100644 --- a/packages/plugins/toolkits/package.json +++ b/packages/plugins/toolkits/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/plugin-toolkits", - "version": "1.5.36", + "version": "1.5.37", "homepage": "https://github.com/UsefulSoftwareCo/executor/tree/main/packages/plugins/toolkits", "bugs": { "url": "https://github.com/UsefulSoftwareCo/executor/issues" diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index 39e4854a5c..c58144ba52 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,13 @@ # @executor-js/react +## 1.4.65 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/sdk@1.6.2 + - @executor-js/api@1.4.65 + ## 1.4.64 ### Patch Changes diff --git a/packages/react/package.json b/packages/react/package.json index d36640dd3b..8493e149b6 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/react", - "version": "1.4.64", + "version": "1.4.65", "private": true, "type": "module", "exports": {