From 6a01907af71c57b9f43bb535bd1bc021414ff0d8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 25 Aug 2026 19:13:29 +0000 Subject: [PATCH] Version Packages --- .changeset/cloudflare-mcp-codemode-opt-out.md | 8 --- .changeset/gmail-settings-access.md | 5 -- .changeset/lean-connection-health.md | 5 -- .changeset/oauth-popup-reserve-on-click.md | 9 --- .changeset/reland-outbound-mcp-v2.md | 5 -- .changeset/skills-tool-executor-only.md | 5 -- .changeset/stdio-interrupt-child-cleanup.md | 7 -- apps/cli/CHANGELOG.md | 12 ++++ 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 | 6 ++ 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 | 22 +++++++ packages/plugins/mcp/package.json | 2 +- packages/plugins/onepassword/CHANGELOG.md | 9 +++ packages/plugins/onepassword/package.json | 2 +- packages/plugins/openapi/CHANGELOG.md | 16 +++++ 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 | 14 ++++ packages/react/package.json | 2 +- 72 files changed, 389 insertions(+), 108 deletions(-) delete mode 100644 .changeset/cloudflare-mcp-codemode-opt-out.md delete mode 100644 .changeset/gmail-settings-access.md delete mode 100644 .changeset/lean-connection-health.md delete mode 100644 .changeset/oauth-popup-reserve-on-click.md delete mode 100644 .changeset/reland-outbound-mcp-v2.md delete mode 100644 .changeset/skills-tool-executor-only.md delete mode 100644 .changeset/stdio-interrupt-child-cleanup.md diff --git a/.changeset/cloudflare-mcp-codemode-opt-out.md b/.changeset/cloudflare-mcp-codemode-opt-out.md deleted file mode 100644 index 780b98d43..000000000 --- a/.changeset/cloudflare-mcp-codemode-opt-out.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"@executor-js/plugin-mcp": patch -"@executor-js/plugin-openapi": patch ---- - -**Cloudflare ships as MCP-only, with code mode opted out** - -The Cloudflare OpenAPI preset is gone from the default catalog; the MCP preset is the one Cloudflare entry. Its endpoint now pins `?codemode=false` because Cloudflare's MCP server otherwise hides the tool catalog behind a single code-execution tool, and executor already provides the code-execution surface. Hand-entered `mcp.cloudflare.com` URLs missing the opt-out get an inline warning in the add flow telling the user to append `?codemode=false`. diff --git a/.changeset/gmail-settings-access.md b/.changeset/gmail-settings-access.md deleted file mode 100644 index 8fe9f8e43..000000000 --- a/.changeset/gmail-settings-access.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@executor-js/plugin-openapi": patch ---- - -Request Gmail's basic-settings scope alongside full mailbox access so Google integrations can create and manage Gmail filters without including domain-admin-only sharing settings. diff --git a/.changeset/lean-connection-health.md b/.changeset/lean-connection-health.md deleted file mode 100644 index 02577c496..000000000 --- a/.changeset/lean-connection-health.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@executor-js/sdk": patch ---- - -Keep `connections.list` health output compact unless callers opt into diagnostics with `verbose: true`. Default list responses now retain only the health status, identity, and check timestamp; verbose responses continue to include HTTP status, diagnostic detail, and bounded upstream response samples. diff --git a/.changeset/oauth-popup-reserve-on-click.md b/.changeset/oauth-popup-reserve-on-click.md deleted file mode 100644 index cf8d9430a..000000000 --- a/.changeset/oauth-popup-reserve-on-click.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"@executor-js/react": patch ---- - -**A slow OAuth discovery no longer kills the connect with no popup and no error** - -The transparent connect flows opened the sign-in window only after their setup round trips had answered: DCR after probe and dynamic registration, CIMD after minting the client, reconnect after starting the session. `window.open` needs transient user activation, which browsers expire a few seconds after the click, so once the API was slow enough the browser refused the window and the connect ended with nothing on screen but the button returning to "Connect". Every MCP integration takes that path. - -The window is now claimed on the click itself and navigated when the authorization URL arrives, however long that takes, and it is closed again on the paths that end without signing in (failed probe, no registration endpoint, rejected registration, failed client mint) as well as on cancel and unmount. A window the browser does refuse is now reported instead of swallowed: the flows stop before their round trips, and the sign-in error renders above the dialog footer, where the automatic flows can actually show it, rather than inside a method tab panel they never render. diff --git a/.changeset/reland-outbound-mcp-v2.md b/.changeset/reland-outbound-mcp-v2.md deleted file mode 100644 index 326eab128..000000000 --- a/.changeset/reland-outbound-mcp-v2.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@executor-js/plugin-mcp": minor ---- - -Restore MCP spec 2026-07-28 negotiation for outbound MCP connections. Remote Streamable HTTP connections auto-negotiate the modern protocol era again, stdio servers can opt in per integration, and the negotiated era is recorded on connection handshake traces. diff --git a/.changeset/skills-tool-executor-only.md b/.changeset/skills-tool-executor-only.md deleted file mode 100644 index 04a8e3a40..000000000 --- a/.changeset/skills-tool-executor-only.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"executor": patch ---- - -Scope the `skills` tool to Executor's own documentation. Its description, argument, index, and unknown-name error now state that it serves a fixed catalog of how-to docs for this server's tools, so an agent on a host without a skill tool of its own no longer reads it as a general reader for the harness's or the user's skills. diff --git a/.changeset/stdio-interrupt-child-cleanup.md b/.changeset/stdio-interrupt-child-cleanup.md deleted file mode 100644 index 687598ade..000000000 --- a/.changeset/stdio-interrupt-child-cleanup.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@executor-js/plugin-mcp": patch ---- - -**Interrupted stdio dials no longer strand the spawned child process** - -Cancelling an in-flight health check or tool discovery (a UI refresh aborting the request, or the 15s discovery timeout) abandoned the MCP connect handshake without closing the transport, leaving the spawned stdio child running indefinitely: for `docker run -i --rm` integrations, one stranded container per interrupted dial. The connect handshake now aborts on interruption (the SDK closes the transport, ending stdin and escalating to SIGTERM/SIGKILL), and tool discovery closes the connection even when the interrupt lands between the handshake completing and discovery starting. diff --git a/apps/cli/CHANGELOG.md b/apps/cli/CHANGELOG.md index 4144daee4..246471d27 100644 --- a/apps/cli/CHANGELOG.md +++ b/apps/cli/CHANGELOG.md @@ -1,5 +1,17 @@ # executor +## 1.6.0 + +### Patch Changes + +- [#1737](https://github.com/UsefulSoftwareCo/executor/pull/1737) [`9296f36`](https://github.com/UsefulSoftwareCo/executor/commit/9296f36a8adbfdeec700ce33c37987127857b2fd) Thanks [@RhysSullivan](https://github.com/RhysSullivan)! - Scope the `skills` tool to Executor's own documentation. Its description, argument, index, and unknown-name error now state that it serves a fixed catalog of how-to docs for this server's tools, so an agent on a host without a skill tool of its own no longer reads it as a general reader for the harness's or the user's skills. + +- Updated dependencies [[`a2d1417`](https://github.com/UsefulSoftwareCo/executor/commit/a2d141758e478274813c8c24d354e1fd0f66af49)]: + - @executor-js/sdk@1.6.0 + - @executor-js/local@1.6.0 + - @executor-js/api@1.4.63 + - @executor-js/runtime-quickjs@1.6.0 + ## 1.5.42 ### Patch Changes diff --git a/apps/cli/package.json b/apps/cli/package.json index 8daeeb7e5..a21ce368d 100644 --- a/apps/cli/package.json +++ b/apps/cli/package.json @@ -1,6 +1,6 @@ { "name": "executor", - "version": "1.5.42", + "version": "1.6.0", "private": true, "bin": { "executor": "./bin/executor.ts" diff --git a/apps/cloud/CHANGELOG.md b/apps/cloud/CHANGELOG.md index f7651fd1e..69496f303 100644 --- a/apps/cloud/CHANGELOG.md +++ b/apps/cloud/CHANGELOG.md @@ -1,5 +1,26 @@ # @executor-js/cloud +## 1.4.61 + +### Patch Changes + +- Updated dependencies [[`c11bef2`](https://github.com/UsefulSoftwareCo/executor/commit/c11bef2cd049db7bbf51b15e18761b14acccb534), [`46cea2c`](https://github.com/UsefulSoftwareCo/executor/commit/46cea2cbb1f414ae58ac876819a51b11967909a6), [`a2d1417`](https://github.com/UsefulSoftwareCo/executor/commit/a2d141758e478274813c8c24d354e1fd0f66af49), [`2bdbedf`](https://github.com/UsefulSoftwareCo/executor/commit/2bdbedf257f54d7c209e8c856c618174c10d6bb3), [`0b0b74f`](https://github.com/UsefulSoftwareCo/executor/commit/0b0b74f673b8098c5248159be36c648097f3c87b), [`256e25e`](https://github.com/UsefulSoftwareCo/executor/commit/256e25e7b291b0c023bc7547d092004b66781bba)]: + - @executor-js/plugin-mcp@1.6.0 + - @executor-js/plugin-openapi@1.6.0 + - @executor-js/sdk@1.6.0 + - @executor-js/react@1.4.63 + - @executor-js/runtime-dynamic-worker@1.4.4 + - @executor-js/api@1.4.63 + - @executor-js/execution@1.6.0 + - @executor-js/vite-plugin@0.0.60 + - @executor-js/cloudflare@0.0.42 + - @executor-js/host-mcp@1.4.4 + - @executor-js/mcp-apps-shell@1.4.11 + - @executor-js/plugin-graphql@1.6.0 + - @executor-js/plugin-toolkits@1.5.35 + - @executor-js/plugin-workos-vault@0.0.2 + - @executor-js/runtime-quickjs@1.6.0 + ## 1.4.60 ### Patch Changes diff --git a/apps/cloud/package.json b/apps/cloud/package.json index df90fee0c..a9add7028 100644 --- a/apps/cloud/package.json +++ b/apps/cloud/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/cloud", - "version": "1.4.60", + "version": "1.4.61", "private": true, "type": "module", "scripts": { diff --git a/apps/desktop/CHANGELOG.md b/apps/desktop/CHANGELOG.md index 69f0c90c5..1eabb33d0 100644 --- a/apps/desktop/CHANGELOG.md +++ b/apps/desktop/CHANGELOG.md @@ -1,5 +1,7 @@ # @executor-js/desktop +## 1.6.0 + ## 1.5.42 ## 1.5.41 diff --git a/apps/desktop/package.json b/apps/desktop/package.json index 366b730be..d068c0739 100644 --- a/apps/desktop/package.json +++ b/apps/desktop/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/desktop", - "version": "1.5.42", + "version": "1.6.0", "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 cf5b60f9a..09803bcb1 100644 --- a/apps/host-selfhost/CHANGELOG.md +++ b/apps/host-selfhost/CHANGELOG.md @@ -1,5 +1,26 @@ # @executor-js/host-selfhost +## 0.0.42 + +### Patch Changes + +- Updated dependencies [[`c11bef2`](https://github.com/UsefulSoftwareCo/executor/commit/c11bef2cd049db7bbf51b15e18761b14acccb534), [`46cea2c`](https://github.com/UsefulSoftwareCo/executor/commit/46cea2cbb1f414ae58ac876819a51b11967909a6), [`a2d1417`](https://github.com/UsefulSoftwareCo/executor/commit/a2d141758e478274813c8c24d354e1fd0f66af49), [`2bdbedf`](https://github.com/UsefulSoftwareCo/executor/commit/2bdbedf257f54d7c209e8c856c618174c10d6bb3), [`0b0b74f`](https://github.com/UsefulSoftwareCo/executor/commit/0b0b74f673b8098c5248159be36c648097f3c87b), [`256e25e`](https://github.com/UsefulSoftwareCo/executor/commit/256e25e7b291b0c023bc7547d092004b66781bba)]: + - @executor-js/plugin-mcp@1.6.0 + - @executor-js/plugin-openapi@1.6.0 + - @executor-js/sdk@1.6.0 + - @executor-js/react@1.4.63 + - @executor-js/plugin-provider-service-split@0.0.14 + - @executor-js/app@1.4.4 + - @executor-js/analytics@0.1.7 + - @executor-js/api@1.4.63 + - @executor-js/execution@1.6.0 + - @executor-js/host-mcp@1.4.4 + - @executor-js/mcp-apps-shell@1.4.11 + - @executor-js/plugin-encrypted-secrets@0.0.42 + - @executor-js/plugin-graphql@1.6.0 + - @executor-js/plugin-toolkits@1.5.35 + - @executor-js/runtime-quickjs@1.6.0 + ## 0.0.41 ### Patch Changes diff --git a/apps/host-selfhost/package.json b/apps/host-selfhost/package.json index 3b64081aa..a78ce49f7 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.41", + "version": "0.0.42", "private": true, "type": "module", "exports": { diff --git a/apps/local/CHANGELOG.md b/apps/local/CHANGELOG.md index 12d187e2f..755369a8a 100644 --- a/apps/local/CHANGELOG.md +++ b/apps/local/CHANGELOG.md @@ -1,5 +1,32 @@ # @executor-js/local +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`c11bef2`](https://github.com/UsefulSoftwareCo/executor/commit/c11bef2cd049db7bbf51b15e18761b14acccb534), [`46cea2c`](https://github.com/UsefulSoftwareCo/executor/commit/46cea2cbb1f414ae58ac876819a51b11967909a6), [`a2d1417`](https://github.com/UsefulSoftwareCo/executor/commit/a2d141758e478274813c8c24d354e1fd0f66af49), [`2bdbedf`](https://github.com/UsefulSoftwareCo/executor/commit/2bdbedf257f54d7c209e8c856c618174c10d6bb3), [`0b0b74f`](https://github.com/UsefulSoftwareCo/executor/commit/0b0b74f673b8098c5248159be36c648097f3c87b), [`256e25e`](https://github.com/UsefulSoftwareCo/executor/commit/256e25e7b291b0c023bc7547d092004b66781bba)]: + - @executor-js/plugin-mcp@1.6.0 + - @executor-js/plugin-openapi@1.6.0 + - @executor-js/sdk@1.6.0 + - @executor-js/react@1.4.63 + - @executor-js/plugin-provider-service-split@0.0.14 + - @executor-js/app@1.4.4 + - @executor-js/analytics@0.1.7 + - @executor-js/api@1.4.63 + - @executor-js/config@1.6.0 + - @executor-js/execution@1.6.0 + - @executor-js/vite-plugin@0.0.60 + - @executor-js/host-mcp@1.4.4 + - @executor-js/mcp-apps-shell@1.4.11 + - @executor-js/plugin-desktop-settings@1.6.0 + - @executor-js/plugin-example@1.6.0 + - @executor-js/plugin-file-secrets@1.6.0 + - @executor-js/plugin-graphql@1.6.0 + - @executor-js/plugin-keychain@1.6.0 + - @executor-js/plugin-onepassword@1.6.0 + - @executor-js/plugin-toolkits@1.5.35 + - @executor-js/runtime-quickjs@1.6.0 + ## 1.5.42 ### Patch Changes diff --git a/apps/local/package.json b/apps/local/package.json index 43b22005f..e4ab63c2f 100644 --- a/apps/local/package.json +++ b/apps/local/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/local", - "version": "1.5.42", + "version": "1.6.0", "private": true, "type": "module", "exports": { diff --git a/bun.lock b/bun.lock index b1a156873..0ca43d813 100644 --- a/bun.lock +++ b/bun.lock @@ -31,7 +31,7 @@ }, "apps/cli": { "name": "executor", - "version": "1.5.42", + "version": "1.6.0", "bin": { "executor": "./bin/executor.ts", }, @@ -60,7 +60,7 @@ }, "apps/cloud": { "name": "@executor-js/cloud", - "version": "1.4.60", + "version": "1.4.61", "dependencies": { "@cloudflare/vite-plugin": "^1.31.1", "@effect/atom-react": "catalog:", @@ -133,7 +133,7 @@ }, "apps/desktop": { "name": "@executor-js/desktop", - "version": "1.5.42", + "version": "1.6.0", "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.41", + "version": "0.0.42", "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.5.42", + "version": "1.6.0", "dependencies": { "@effect/atom-react": "catalog:", "@effect/platform-node": "catalog:", @@ -352,7 +352,7 @@ }, "e2e": { "name": "@executor-js/e2e", - "version": "0.0.39", + "version": "0.0.40", "dependencies": { "@executor-js/api": "workspace:*", "@executor-js/emulate": "^0.13.9", @@ -387,7 +387,7 @@ }, "examples/all-plugins": { "name": "@executor-js/example-all-plugins", - "version": "0.0.60", + "version": "0.0.61", "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.45", + "version": "0.0.46", "dependencies": { "@executor-js/plugin-openapi": "workspace:*", "@executor-js/sdk": "workspace:*", @@ -461,7 +461,7 @@ }, "packages/core/analytics": { "name": "@executor-js/analytics", - "version": "0.1.6", + "version": "0.1.7", "dependencies": { "@effect/platform-node": "catalog:", "@executor-js/execution": "workspace:*", @@ -477,7 +477,7 @@ }, "packages/core/api": { "name": "@executor-js/api", - "version": "1.4.62", + "version": "1.4.63", "dependencies": { "@executor-js/execution": "workspace:*", "@executor-js/host-mcp": "workspace:*", @@ -494,7 +494,7 @@ }, "packages/core/cli": { "name": "@executor-js/cli", - "version": "0.2.49", + "version": "0.2.50", "bin": { "executor-sdk": "./dist/index.js", }, @@ -515,7 +515,7 @@ }, "packages/core/config": { "name": "@executor-js/config", - "version": "1.5.42", + "version": "1.6.0", "dependencies": { "@executor-js/sdk": "workspace:*", "jiti": "^2.6.1", @@ -536,7 +536,7 @@ }, "packages/core/execution": { "name": "@executor-js/execution", - "version": "1.5.42", + "version": "1.6.0", "dependencies": { "@executor-js/codemode-core": "workspace:*", "@executor-js/sdk": "workspace:*", @@ -602,7 +602,7 @@ }, "packages/core/sdk": { "name": "@executor-js/sdk", - "version": "1.5.42", + "version": "1.6.0", "dependencies": { "@executor-js/fumadb": "workspace:*", "@standard-schema/spec": "^1.1.0", @@ -655,7 +655,7 @@ }, "packages/core/vite-plugin": { "name": "@executor-js/vite-plugin", - "version": "0.0.59", + "version": "0.0.60", "dependencies": { "@executor-js/sdk": "workspace:*", "jiti": "^2.6.1", @@ -675,7 +675,7 @@ }, "packages/hosts/cloudflare": { "name": "@executor-js/cloudflare", - "version": "0.0.41", + "version": "0.0.42", "dependencies": { "@executor-js/api": "workspace:*", "@executor-js/execution": "workspace:*", @@ -716,7 +716,7 @@ }, "packages/hosts/mcp-apps-shell": { "name": "@executor-js/mcp-apps-shell", - "version": "1.4.10", + "version": "1.4.11", "dependencies": { "@executor-js/react": "workspace:*", "@executor-js/runtime-quickjs": "workspace:*", @@ -754,7 +754,7 @@ }, "packages/kernel/core": { "name": "@executor-js/codemode-core", - "version": "1.5.42", + "version": "1.6.0", "dependencies": { "@babel/parser": "^7.29.2", "@standard-schema/spec": "^1.0.0", @@ -827,7 +827,7 @@ }, "packages/kernel/runtime-quickjs": { "name": "@executor-js/runtime-quickjs", - "version": "1.5.42", + "version": "1.6.0", "dependencies": { "@executor-js/codemode-core": "workspace:*", "quickjs-emscripten": "catalog:", @@ -847,7 +847,7 @@ }, "packages/kernel/runtime-workerd-subprocess": { "name": "@executor-js/runtime-workerd-subprocess", - "version": "0.0.14", + "version": "0.0.15", "dependencies": { "@executor-js/codemode-core": "workspace:*", "effect": "catalog:", @@ -862,7 +862,7 @@ }, "packages/plugins/desktop-settings": { "name": "@executor-js/plugin-desktop-settings", - "version": "1.5.42", + "version": "1.6.0", "dependencies": { "@executor-js/sdk": "workspace:*", "react": "catalog:", @@ -875,7 +875,7 @@ }, "packages/plugins/encrypted-secrets": { "name": "@executor-js/plugin-encrypted-secrets", - "version": "0.0.41", + "version": "0.0.42", "dependencies": { "@executor-js/sdk": "workspace:*", "effect": "catalog:", @@ -890,7 +890,7 @@ }, "packages/plugins/example": { "name": "@executor-js/plugin-example", - "version": "1.5.42", + "version": "1.6.0", "dependencies": { "@executor-js/sdk": "workspace:*", }, @@ -913,7 +913,7 @@ }, "packages/plugins/file-secrets": { "name": "@executor-js/plugin-file-secrets", - "version": "1.5.42", + "version": "1.6.0", "dependencies": { "@executor-js/sdk": "workspace:*", }, @@ -930,7 +930,7 @@ }, "packages/plugins/graphql": { "name": "@executor-js/plugin-graphql", - "version": "1.5.42", + "version": "1.6.0", "dependencies": { "@effect/platform-node": "catalog:", "@executor-js/config": "workspace:*", @@ -969,7 +969,7 @@ }, "packages/plugins/keychain": { "name": "@executor-js/plugin-keychain", - "version": "1.5.42", + "version": "1.6.0", "dependencies": { "@executor-js/sdk": "workspace:*", "@napi-rs/keyring": "^1.2.0", @@ -988,7 +988,7 @@ }, "packages/plugins/mcp": { "name": "@executor-js/plugin-mcp", - "version": "1.5.42", + "version": "1.6.0", "dependencies": { "@cfworker/json-schema": "^4.1.1", "@effect/platform-node": "catalog:", @@ -1031,7 +1031,7 @@ }, "packages/plugins/onepassword": { "name": "@executor-js/plugin-onepassword", - "version": "1.5.42", + "version": "1.6.0", "dependencies": { "@1password/op-js": "^0.1.13", "@1password/sdk": "^0.4.1-beta.1", @@ -1065,7 +1065,7 @@ }, "packages/plugins/openapi": { "name": "@executor-js/plugin-openapi", - "version": "1.5.42", + "version": "1.6.0", "dependencies": { "@effect/platform-node": "catalog:", "@executor-js/config": "workspace:*", @@ -1106,7 +1106,7 @@ }, "packages/plugins/provider-service-split": { "name": "@executor-js/plugin-provider-service-split", - "version": "0.0.13", + "version": "0.0.14", "dependencies": { "@executor-js/plugin-openapi": "workspace:*", "@executor-js/sdk": "workspace:*", @@ -1123,7 +1123,7 @@ }, "packages/plugins/toolkits": { "name": "@executor-js/plugin-toolkits", - "version": "1.5.34", + "version": "1.5.35", "dependencies": { "@executor-js/sdk": "workspace:*", }, @@ -1192,7 +1192,7 @@ }, "packages/react": { "name": "@executor-js/react", - "version": "1.4.62", + "version": "1.4.63", "dependencies": { "@base-ui/react": "^1.3.0", "@effect/atom-react": "catalog:", diff --git a/e2e/CHANGELOG.md b/e2e/CHANGELOG.md index cd520d27d..5481491dc 100644 --- a/e2e/CHANGELOG.md +++ b/e2e/CHANGELOG.md @@ -1,5 +1,17 @@ # @executor-js/e2e +## 0.0.40 + +### Patch Changes + +- Updated dependencies [[`c11bef2`](https://github.com/UsefulSoftwareCo/executor/commit/c11bef2cd049db7bbf51b15e18761b14acccb534), [`46cea2c`](https://github.com/UsefulSoftwareCo/executor/commit/46cea2cbb1f414ae58ac876819a51b11967909a6), [`a2d1417`](https://github.com/UsefulSoftwareCo/executor/commit/a2d141758e478274813c8c24d354e1fd0f66af49), [`0b0b74f`](https://github.com/UsefulSoftwareCo/executor/commit/0b0b74f673b8098c5248159be36c648097f3c87b), [`256e25e`](https://github.com/UsefulSoftwareCo/executor/commit/256e25e7b291b0c023bc7547d092004b66781bba)]: + - @executor-js/plugin-mcp@1.6.0 + - @executor-js/plugin-openapi@1.6.0 + - @executor-js/sdk@1.6.0 + - @executor-js/api@1.4.63 + - @executor-js/plugin-graphql@1.6.0 + - @executor-js/plugin-toolkits@1.5.35 + ## 0.0.39 ### Patch Changes diff --git a/e2e/package.json b/e2e/package.json index 040a042eb..2f8bd94b0 100644 --- a/e2e/package.json +++ b/e2e/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/e2e", - "version": "0.0.39", + "version": "0.0.40", "private": true, "type": "module", "scripts": { diff --git a/examples/all-plugins/CHANGELOG.md b/examples/all-plugins/CHANGELOG.md index e6bd92860..c9ef985b4 100644 --- a/examples/all-plugins/CHANGELOG.md +++ b/examples/all-plugins/CHANGELOG.md @@ -1,5 +1,19 @@ # @executor-js/example-all-plugins +## 0.0.61 + +### Patch Changes + +- Updated dependencies [[`c11bef2`](https://github.com/UsefulSoftwareCo/executor/commit/c11bef2cd049db7bbf51b15e18761b14acccb534), [`46cea2c`](https://github.com/UsefulSoftwareCo/executor/commit/46cea2cbb1f414ae58ac876819a51b11967909a6), [`a2d1417`](https://github.com/UsefulSoftwareCo/executor/commit/a2d141758e478274813c8c24d354e1fd0f66af49), [`0b0b74f`](https://github.com/UsefulSoftwareCo/executor/commit/0b0b74f673b8098c5248159be36c648097f3c87b), [`256e25e`](https://github.com/UsefulSoftwareCo/executor/commit/256e25e7b291b0c023bc7547d092004b66781bba)]: + - @executor-js/plugin-mcp@1.6.0 + - @executor-js/plugin-openapi@1.6.0 + - @executor-js/sdk@1.6.0 + - @executor-js/plugin-file-secrets@1.6.0 + - @executor-js/plugin-graphql@1.6.0 + - @executor-js/plugin-keychain@1.6.0 + - @executor-js/plugin-onepassword@1.6.0 + - @executor-js/plugin-workos-vault@0.0.2 + ## 0.0.60 ### Patch Changes diff --git a/examples/all-plugins/package.json b/examples/all-plugins/package.json index da944c116..42f5f94fa 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.60", + "version": "0.0.61", "private": true, "type": "module", "scripts": { diff --git a/examples/docs-sdk-quickstart/CHANGELOG.md b/examples/docs-sdk-quickstart/CHANGELOG.md index 5eec50eb1..a28725253 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.46 + +### Patch Changes + +- Updated dependencies [[`c11bef2`](https://github.com/UsefulSoftwareCo/executor/commit/c11bef2cd049db7bbf51b15e18761b14acccb534), [`46cea2c`](https://github.com/UsefulSoftwareCo/executor/commit/46cea2cbb1f414ae58ac876819a51b11967909a6), [`a2d1417`](https://github.com/UsefulSoftwareCo/executor/commit/a2d141758e478274813c8c24d354e1fd0f66af49)]: + - @executor-js/plugin-openapi@1.6.0 + - @executor-js/sdk@1.6.0 + ## 0.0.45 ### Patch Changes diff --git a/examples/docs-sdk-quickstart/package.json b/examples/docs-sdk-quickstart/package.json index e46fc1889..4a91d1354 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.45", + "version": "0.0.46", "private": true, "type": "module", "scripts": { diff --git a/packages/core/analytics/CHANGELOG.md b/packages/core/analytics/CHANGELOG.md index b26ac6af8..1c08c54c3 100644 --- a/packages/core/analytics/CHANGELOG.md +++ b/packages/core/analytics/CHANGELOG.md @@ -1,5 +1,12 @@ # @executor-js/analytics +## 0.1.7 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/execution@1.6.0 + ## 0.1.6 ### Patch Changes diff --git a/packages/core/analytics/package.json b/packages/core/analytics/package.json index ea638f087..9e793a9b2 100644 --- a/packages/core/analytics/package.json +++ b/packages/core/analytics/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/analytics", - "version": "0.1.6", + "version": "0.1.7", "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 bbe48b574..688eeee75 100644 --- a/packages/core/api/CHANGELOG.md +++ b/packages/core/api/CHANGELOG.md @@ -1,5 +1,14 @@ # @executor-js/api +## 1.4.63 + +### Patch Changes + +- Updated dependencies [[`a2d1417`](https://github.com/UsefulSoftwareCo/executor/commit/a2d141758e478274813c8c24d354e1fd0f66af49)]: + - @executor-js/sdk@1.6.0 + - @executor-js/execution@1.6.0 + - @executor-js/host-mcp@1.4.4 + ## 1.4.62 ### Patch Changes diff --git a/packages/core/api/package.json b/packages/core/api/package.json index ada420e1b..5eacfe461 100644 --- a/packages/core/api/package.json +++ b/packages/core/api/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/api", - "version": "1.4.62", + "version": "1.4.63", "private": true, "type": "module", "exports": { diff --git a/packages/core/cli/CHANGELOG.md b/packages/core/cli/CHANGELOG.md index e36cf1b6f..0e0f3add3 100644 --- a/packages/core/cli/CHANGELOG.md +++ b/packages/core/cli/CHANGELOG.md @@ -1,5 +1,12 @@ # @executor-js/cli +## 0.2.50 + +### Patch Changes + +- Updated dependencies [[`a2d1417`](https://github.com/UsefulSoftwareCo/executor/commit/a2d141758e478274813c8c24d354e1fd0f66af49)]: + - @executor-js/sdk@1.6.0 + ## 0.2.49 ### Patch Changes diff --git a/packages/core/cli/package.json b/packages/core/cli/package.json index 682f5b728..2bbe9b266 100644 --- a/packages/core/cli/package.json +++ b/packages/core/cli/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/cli", - "version": "0.2.49", + "version": "0.2.50", "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 3cb611596..46237be0f 100644 --- a/packages/core/config/CHANGELOG.md +++ b/packages/core/config/CHANGELOG.md @@ -1,5 +1,12 @@ # @executor-js/config +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`a2d1417`](https://github.com/UsefulSoftwareCo/executor/commit/a2d141758e478274813c8c24d354e1fd0f66af49)]: + - @executor-js/sdk@1.6.0 + ## 1.5.42 ### Patch Changes diff --git a/packages/core/config/package.json b/packages/core/config/package.json index 65fb56eca..b4bce2cb9 100644 --- a/packages/core/config/package.json +++ b/packages/core/config/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/config", - "version": "1.5.42", + "version": "1.6.0", "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 2b54daa44..6b7241d16 100644 --- a/packages/core/execution/CHANGELOG.md +++ b/packages/core/execution/CHANGELOG.md @@ -1,5 +1,13 @@ # @executor-js/execution +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`a2d1417`](https://github.com/UsefulSoftwareCo/executor/commit/a2d141758e478274813c8c24d354e1fd0f66af49)]: + - @executor-js/sdk@1.6.0 + - @executor-js/codemode-core@1.6.0 + ## 1.5.42 ### Patch Changes diff --git a/packages/core/execution/package.json b/packages/core/execution/package.json index b344b472d..20940d0c3 100644 --- a/packages/core/execution/package.json +++ b/packages/core/execution/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/execution", - "version": "1.5.42", + "version": "1.6.0", "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 4423d546a..346be2436 100644 --- a/packages/core/sdk/CHANGELOG.md +++ b/packages/core/sdk/CHANGELOG.md @@ -1,5 +1,11 @@ # @executor-js/sdk +## 1.6.0 + +### Patch Changes + +- [#1648](https://github.com/UsefulSoftwareCo/executor/pull/1648) [`a2d1417`](https://github.com/UsefulSoftwareCo/executor/commit/a2d141758e478274813c8c24d354e1fd0f66af49) Thanks [@baggiiiie](https://github.com/baggiiiie)! - Keep `connections.list` health output compact unless callers opt into diagnostics with `verbose: true`. Default list responses now retain only the health status, identity, and check timestamp; verbose responses continue to include HTTP status, diagnostic detail, and bounded upstream response samples. + ## 1.5.42 ### Patch Changes diff --git a/packages/core/sdk/package.json b/packages/core/sdk/package.json index 6545c8281..17874f8d7 100644 --- a/packages/core/sdk/package.json +++ b/packages/core/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/sdk", - "version": "1.5.42", + "version": "1.6.0", "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 277d89806..a2e26bf07 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.60 + +### Patch Changes + +- Updated dependencies [[`a2d1417`](https://github.com/UsefulSoftwareCo/executor/commit/a2d141758e478274813c8c24d354e1fd0f66af49)]: + - @executor-js/sdk@1.6.0 + ## 0.0.59 ### Patch Changes diff --git a/packages/core/vite-plugin/package.json b/packages/core/vite-plugin/package.json index aba715a07..4166fe4e6 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.59", + "version": "0.0.60", "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 ea7df00ec..93a6ae71c 100644 --- a/packages/hosts/cloudflare/CHANGELOG.md +++ b/packages/hosts/cloudflare/CHANGELOG.md @@ -1,5 +1,15 @@ # @executor-js/cloudflare +## 0.0.42 + +### Patch Changes + +- Updated dependencies [[`a2d1417`](https://github.com/UsefulSoftwareCo/executor/commit/a2d141758e478274813c8c24d354e1fd0f66af49)]: + - @executor-js/sdk@1.6.0 + - @executor-js/api@1.4.63 + - @executor-js/execution@1.6.0 + - @executor-js/host-mcp@1.4.4 + ## 0.0.41 ### Patch Changes diff --git a/packages/hosts/cloudflare/package.json b/packages/hosts/cloudflare/package.json index 79eba80ac..f6a292759 100644 --- a/packages/hosts/cloudflare/package.json +++ b/packages/hosts/cloudflare/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/cloudflare", - "version": "0.0.41", + "version": "0.0.42", "private": true, "type": "module", "exports": { diff --git a/packages/hosts/mcp-apps-shell/CHANGELOG.md b/packages/hosts/mcp-apps-shell/CHANGELOG.md index 0c5100ceb..5d5ae0197 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.11 + +### Patch Changes + +- Updated dependencies [[`2bdbedf`](https://github.com/UsefulSoftwareCo/executor/commit/2bdbedf257f54d7c209e8c856c618174c10d6bb3)]: + - @executor-js/react@1.4.63 + - @executor-js/runtime-quickjs@1.6.0 + ## 1.4.10 ### Patch Changes diff --git a/packages/hosts/mcp-apps-shell/package.json b/packages/hosts/mcp-apps-shell/package.json index dccf1396c..14f6cab9f 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.10", + "version": "1.4.11", "private": true, "type": "module", "exports": { diff --git a/packages/kernel/core/CHANGELOG.md b/packages/kernel/core/CHANGELOG.md index fbcb33457..091a00320 100644 --- a/packages/kernel/core/CHANGELOG.md +++ b/packages/kernel/core/CHANGELOG.md @@ -1,5 +1,7 @@ # @executor-js/codemode-core +## 1.6.0 + ## 1.5.42 ## 1.5.41 diff --git a/packages/kernel/core/package.json b/packages/kernel/core/package.json index 657dacd8b..ec8701de5 100644 --- a/packages/kernel/core/package.json +++ b/packages/kernel/core/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/codemode-core", - "version": "1.5.42", + "version": "1.6.0", "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 cd9579188..46bac973e 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.0 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/codemode-core@1.6.0 + ## 1.5.42 ### Patch Changes diff --git a/packages/kernel/runtime-quickjs/package.json b/packages/kernel/runtime-quickjs/package.json index 1479dfd8b..8e9d8dba7 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.5.42", + "version": "1.6.0", "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 e7bca976d..462125d3e 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.15 + +### Patch Changes + +- Updated dependencies []: + - @executor-js/codemode-core@1.6.0 + ## 0.0.14 ### Patch Changes diff --git a/packages/kernel/runtime-workerd-subprocess/package.json b/packages/kernel/runtime-workerd-subprocess/package.json index a72abff29..66b32fd78 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.14", + "version": "0.0.15", "private": true, "type": "module", "exports": { diff --git a/packages/plugins/desktop-settings/CHANGELOG.md b/packages/plugins/desktop-settings/CHANGELOG.md index 9f2be893e..7931f1c09 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.0 + +### Patch Changes + +- Updated dependencies [[`a2d1417`](https://github.com/UsefulSoftwareCo/executor/commit/a2d141758e478274813c8c24d354e1fd0f66af49)]: + - @executor-js/sdk@1.6.0 + ## 1.5.42 ### Patch Changes diff --git a/packages/plugins/desktop-settings/package.json b/packages/plugins/desktop-settings/package.json index f4fa0ae7b..fd1016ab6 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.5.42", + "version": "1.6.0", "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 4e55a78b4..18abe13c9 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.42 + +### Patch Changes + +- Updated dependencies [[`a2d1417`](https://github.com/UsefulSoftwareCo/executor/commit/a2d141758e478274813c8c24d354e1fd0f66af49)]: + - @executor-js/sdk@1.6.0 + ## 0.0.41 ### Patch Changes diff --git a/packages/plugins/encrypted-secrets/package.json b/packages/plugins/encrypted-secrets/package.json index f78aee5a1..f2272cdc9 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.41", + "version": "0.0.42", "private": true, "type": "module", "exports": { diff --git a/packages/plugins/example/CHANGELOG.md b/packages/plugins/example/CHANGELOG.md index 8f68c06d3..578bffb51 100644 --- a/packages/plugins/example/CHANGELOG.md +++ b/packages/plugins/example/CHANGELOG.md @@ -1,5 +1,12 @@ # @executor-js/plugin-example +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`a2d1417`](https://github.com/UsefulSoftwareCo/executor/commit/a2d141758e478274813c8c24d354e1fd0f66af49)]: + - @executor-js/sdk@1.6.0 + ## 1.5.42 ### Patch Changes diff --git a/packages/plugins/example/package.json b/packages/plugins/example/package.json index b6afab966..498bd2020 100644 --- a/packages/plugins/example/package.json +++ b/packages/plugins/example/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/plugin-example", - "version": "1.5.42", + "version": "1.6.0", "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 2118d5a4f..a0539f41e 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.0 + +### Patch Changes + +- Updated dependencies [[`a2d1417`](https://github.com/UsefulSoftwareCo/executor/commit/a2d141758e478274813c8c24d354e1fd0f66af49)]: + - @executor-js/sdk@1.6.0 + ## 1.5.42 ### Patch Changes diff --git a/packages/plugins/file-secrets/package.json b/packages/plugins/file-secrets/package.json index 0808aaf07..ece5b3665 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.5.42", + "version": "1.6.0", "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 9635c2251..7c0516040 100644 --- a/packages/plugins/graphql/CHANGELOG.md +++ b/packages/plugins/graphql/CHANGELOG.md @@ -1,5 +1,15 @@ # @executor-js/plugin-graphql +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`a2d1417`](https://github.com/UsefulSoftwareCo/executor/commit/a2d141758e478274813c8c24d354e1fd0f66af49), [`2bdbedf`](https://github.com/UsefulSoftwareCo/executor/commit/2bdbedf257f54d7c209e8c856c618174c10d6bb3)]: + - @executor-js/sdk@1.6.0 + - @executor-js/react@1.4.63 + - @executor-js/api@1.4.63 + - @executor-js/config@1.6.0 + ## 1.5.42 ### Patch Changes diff --git a/packages/plugins/graphql/package.json b/packages/plugins/graphql/package.json index 327582cb5..eaf8f691e 100644 --- a/packages/plugins/graphql/package.json +++ b/packages/plugins/graphql/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/plugin-graphql", - "version": "1.5.42", + "version": "1.6.0", "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 7e95a5505..680709d84 100644 --- a/packages/plugins/keychain/CHANGELOG.md +++ b/packages/plugins/keychain/CHANGELOG.md @@ -1,5 +1,12 @@ # @executor-js/plugin-keychain +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`a2d1417`](https://github.com/UsefulSoftwareCo/executor/commit/a2d141758e478274813c8c24d354e1fd0f66af49)]: + - @executor-js/sdk@1.6.0 + ## 1.5.42 ### Patch Changes diff --git a/packages/plugins/keychain/package.json b/packages/plugins/keychain/package.json index cdd4e1e8e..e0a285003 100644 --- a/packages/plugins/keychain/package.json +++ b/packages/plugins/keychain/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/plugin-keychain", - "version": "1.5.42", + "version": "1.6.0", "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 6acf7ea2a..ac60bf0e7 100644 --- a/packages/plugins/mcp/CHANGELOG.md +++ b/packages/plugins/mcp/CHANGELOG.md @@ -1,5 +1,27 @@ # @executor-js/plugin-mcp +## 1.6.0 + +### Minor Changes + +- [#1733](https://github.com/UsefulSoftwareCo/executor/pull/1733) [`0b0b74f`](https://github.com/UsefulSoftwareCo/executor/commit/0b0b74f673b8098c5248159be36c648097f3c87b) Thanks [@RhysSullivan](https://github.com/RhysSullivan)! - Restore MCP spec 2026-07-28 negotiation for outbound MCP connections. Remote Streamable HTTP connections auto-negotiate the modern protocol era again, stdio servers can opt in per integration, and the negotiated era is recorded on connection handshake traces. + +### Patch Changes + +- [#1660](https://github.com/UsefulSoftwareCo/executor/pull/1660) [`c11bef2`](https://github.com/UsefulSoftwareCo/executor/commit/c11bef2cd049db7bbf51b15e18761b14acccb534) Thanks [@RhysSullivan](https://github.com/RhysSullivan)! - **Cloudflare ships as MCP-only, with code mode opted out** + + The Cloudflare OpenAPI preset is gone from the default catalog; the MCP preset is the one Cloudflare entry. Its endpoint now pins `?codemode=false` because Cloudflare's MCP server otherwise hides the tool catalog behind a single code-execution tool, and executor already provides the code-execution surface. Hand-entered `mcp.cloudflare.com` URLs missing the opt-out get an inline warning in the add flow telling the user to append `?codemode=false`. + +- [#1654](https://github.com/UsefulSoftwareCo/executor/pull/1654) [`256e25e`](https://github.com/UsefulSoftwareCo/executor/commit/256e25e7b291b0c023bc7547d092004b66781bba) Thanks [@RhysSullivan](https://github.com/RhysSullivan)! - **Interrupted stdio dials no longer strand the spawned child process** + + Cancelling an in-flight health check or tool discovery (a UI refresh aborting the request, or the 15s discovery timeout) abandoned the MCP connect handshake without closing the transport, leaving the spawned stdio child running indefinitely: for `docker run -i --rm` integrations, one stranded container per interrupted dial. The connect handshake now aborts on interruption (the SDK closes the transport, ending stdin and escalating to SIGTERM/SIGKILL), and tool discovery closes the connection even when the interrupt lands between the handshake completing and discovery starting. + +- Updated dependencies [[`a2d1417`](https://github.com/UsefulSoftwareCo/executor/commit/a2d141758e478274813c8c24d354e1fd0f66af49), [`2bdbedf`](https://github.com/UsefulSoftwareCo/executor/commit/2bdbedf257f54d7c209e8c856c618174c10d6bb3)]: + - @executor-js/sdk@1.6.0 + - @executor-js/react@1.4.63 + - @executor-js/api@1.4.63 + - @executor-js/config@1.6.0 + ## 1.5.42 ### Patch Changes diff --git a/packages/plugins/mcp/package.json b/packages/plugins/mcp/package.json index 9864dd7ff..79deee56f 100644 --- a/packages/plugins/mcp/package.json +++ b/packages/plugins/mcp/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/plugin-mcp", - "version": "1.5.42", + "version": "1.6.0", "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 1e216ca20..4f23ed82a 100644 --- a/packages/plugins/onepassword/CHANGELOG.md +++ b/packages/plugins/onepassword/CHANGELOG.md @@ -1,5 +1,14 @@ # @executor-js/plugin-onepassword +## 1.6.0 + +### Patch Changes + +- Updated dependencies [[`a2d1417`](https://github.com/UsefulSoftwareCo/executor/commit/a2d141758e478274813c8c24d354e1fd0f66af49), [`2bdbedf`](https://github.com/UsefulSoftwareCo/executor/commit/2bdbedf257f54d7c209e8c856c618174c10d6bb3)]: + - @executor-js/sdk@1.6.0 + - @executor-js/react@1.4.63 + - @executor-js/api@1.4.63 + ## 1.5.42 ### Patch Changes diff --git a/packages/plugins/onepassword/package.json b/packages/plugins/onepassword/package.json index ee98c9ed6..d64929a9a 100644 --- a/packages/plugins/onepassword/package.json +++ b/packages/plugins/onepassword/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/plugin-onepassword", - "version": "1.5.42", + "version": "1.6.0", "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 b930d0bab..4730a2ffb 100644 --- a/packages/plugins/openapi/CHANGELOG.md +++ b/packages/plugins/openapi/CHANGELOG.md @@ -1,5 +1,21 @@ # @executor-js/plugin-openapi +## 1.6.0 + +### Patch Changes + +- [#1660](https://github.com/UsefulSoftwareCo/executor/pull/1660) [`c11bef2`](https://github.com/UsefulSoftwareCo/executor/commit/c11bef2cd049db7bbf51b15e18761b14acccb534) Thanks [@RhysSullivan](https://github.com/RhysSullivan)! - **Cloudflare ships as MCP-only, with code mode opted out** + + The Cloudflare OpenAPI preset is gone from the default catalog; the MCP preset is the one Cloudflare entry. Its endpoint now pins `?codemode=false` because Cloudflare's MCP server otherwise hides the tool catalog behind a single code-execution tool, and executor already provides the code-execution surface. Hand-entered `mcp.cloudflare.com` URLs missing the opt-out get an inline warning in the add flow telling the user to append `?codemode=false`. + +- [#1669](https://github.com/UsefulSoftwareCo/executor/pull/1669) [`46cea2c`](https://github.com/UsefulSoftwareCo/executor/commit/46cea2cbb1f414ae58ac876819a51b11967909a6) Thanks [@RhysSullivan](https://github.com/RhysSullivan)! - Request Gmail's basic-settings scope alongside full mailbox access so Google integrations can create and manage Gmail filters without including domain-admin-only sharing settings. + +- Updated dependencies [[`a2d1417`](https://github.com/UsefulSoftwareCo/executor/commit/a2d141758e478274813c8c24d354e1fd0f66af49), [`2bdbedf`](https://github.com/UsefulSoftwareCo/executor/commit/2bdbedf257f54d7c209e8c856c618174c10d6bb3)]: + - @executor-js/sdk@1.6.0 + - @executor-js/react@1.4.63 + - @executor-js/api@1.4.63 + - @executor-js/config@1.6.0 + ## 1.5.42 ### Patch Changes diff --git a/packages/plugins/openapi/package.json b/packages/plugins/openapi/package.json index 887cb2ad3..fc7a75aae 100644 --- a/packages/plugins/openapi/package.json +++ b/packages/plugins/openapi/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/plugin-openapi", - "version": "1.5.42", + "version": "1.6.0", "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 4162c2a4d..fa2dbf91d 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.14 + +### Patch Changes + +- Updated dependencies [[`c11bef2`](https://github.com/UsefulSoftwareCo/executor/commit/c11bef2cd049db7bbf51b15e18761b14acccb534), [`46cea2c`](https://github.com/UsefulSoftwareCo/executor/commit/46cea2cbb1f414ae58ac876819a51b11967909a6), [`a2d1417`](https://github.com/UsefulSoftwareCo/executor/commit/a2d141758e478274813c8c24d354e1fd0f66af49)]: + - @executor-js/plugin-openapi@1.6.0 + - @executor-js/sdk@1.6.0 + ## 0.0.13 ### Patch Changes diff --git a/packages/plugins/provider-service-split/package.json b/packages/plugins/provider-service-split/package.json index 78943a9d7..fd603b015 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.13", + "version": "0.0.14", "private": true, "type": "module", "exports": { diff --git a/packages/plugins/toolkits/CHANGELOG.md b/packages/plugins/toolkits/CHANGELOG.md index 7b2286ccc..87371b324 100644 --- a/packages/plugins/toolkits/CHANGELOG.md +++ b/packages/plugins/toolkits/CHANGELOG.md @@ -1,5 +1,14 @@ # @executor-js/plugin-toolkits +## 1.5.35 + +### Patch Changes + +- Updated dependencies [[`a2d1417`](https://github.com/UsefulSoftwareCo/executor/commit/a2d141758e478274813c8c24d354e1fd0f66af49), [`2bdbedf`](https://github.com/UsefulSoftwareCo/executor/commit/2bdbedf257f54d7c209e8c856c618174c10d6bb3)]: + - @executor-js/sdk@1.6.0 + - @executor-js/react@1.4.63 + - @executor-js/api@1.4.63 + ## 1.5.34 ### Patch Changes diff --git a/packages/plugins/toolkits/package.json b/packages/plugins/toolkits/package.json index 92db77f81..702f94f5a 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.34", + "version": "1.5.35", "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 f85d10302..2686df224 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,19 @@ # @executor-js/react +## 1.4.63 + +### Patch Changes + +- [#1703](https://github.com/UsefulSoftwareCo/executor/pull/1703) [`2bdbedf`](https://github.com/UsefulSoftwareCo/executor/commit/2bdbedf257f54d7c209e8c856c618174c10d6bb3) Thanks [@RhysSullivan](https://github.com/RhysSullivan)! - **A slow OAuth discovery no longer kills the connect with no popup and no error** + + The transparent connect flows opened the sign-in window only after their setup round trips had answered: DCR after probe and dynamic registration, CIMD after minting the client, reconnect after starting the session. `window.open` needs transient user activation, which browsers expire a few seconds after the click, so once the API was slow enough the browser refused the window and the connect ended with nothing on screen but the button returning to "Connect". Every MCP integration takes that path. + + The window is now claimed on the click itself and navigated when the authorization URL arrives, however long that takes, and it is closed again on the paths that end without signing in (failed probe, no registration endpoint, rejected registration, failed client mint) as well as on cancel and unmount. A window the browser does refuse is now reported instead of swallowed: the flows stop before their round trips, and the sign-in error renders above the dialog footer, where the automatic flows can actually show it, rather than inside a method tab panel they never render. + +- Updated dependencies [[`a2d1417`](https://github.com/UsefulSoftwareCo/executor/commit/a2d141758e478274813c8c24d354e1fd0f66af49)]: + - @executor-js/sdk@1.6.0 + - @executor-js/api@1.4.63 + ## 1.4.62 ### Patch Changes diff --git a/packages/react/package.json b/packages/react/package.json index 171d7032b..b85800ce7 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@executor-js/react", - "version": "1.4.62", + "version": "1.4.63", "private": true, "type": "module", "exports": {