Skip to content

Version Packages - #1804

Merged
RhysSullivan merged 1 commit into
mainfrom
changeset-release/main
Aug 28, 2026
Merged

Version Packages#1804
RhysSullivan merged 1 commit into
mainfrom
changeset-release/main

Conversation

@RhysSullivan

@RhysSullivan RhysSullivan commented Aug 28, 2026

Copy link
Copy Markdown
Collaborator

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@executor-js/cli@0.2.52

Patch Changes

  • Updated dependencies []:
    • @executor-js/sdk@1.6.2

@executor-js/config@1.6.2

Patch Changes

  • Updated dependencies []:
    • @executor-js/sdk@1.6.2

@executor-js/execution@1.6.2

Patch Changes

  • Updated dependencies []:
    • @executor-js/sdk@1.6.2
    • @executor-js/codemode-core@1.6.2

@executor-js/vite-plugin@0.0.62

Patch Changes

  • Updated dependencies []:
    • @executor-js/sdk@1.6.2

@executor-js/runtime-quickjs@1.6.2

Patch Changes

  • Updated dependencies []:
    • @executor-js/codemode-core@1.6.2

@executor-js/plugin-desktop-settings@1.6.2

Patch Changes

  • Updated dependencies []:
    • @executor-js/sdk@1.6.2

@executor-js/plugin-example@1.6.2

Patch Changes

  • Updated dependencies []:
    • @executor-js/sdk@1.6.2

@executor-js/plugin-file-secrets@1.6.2

Patch Changes

  • Updated dependencies []:
    • @executor-js/sdk@1.6.2

@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

@executor-js/plugin-keychain@1.6.2

Patch Changes

  • Updated dependencies []:
    • @executor-js/sdk@1.6.2

@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

@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

@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

@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

@executor-js/sdk@1.6.2

@executor-js/codemode-core@1.6.2

executor@1.6.2

Patch Changes

  • #1802 2afb6e8 Thanks @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 78311a1 Thanks @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

@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

@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

@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

@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

@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

@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

@executor-js/analytics@0.1.9

Patch Changes

  • Updated dependencies []:
    • @executor-js/execution@1.6.2

@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

@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

@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

@executor-js/runtime-workerd-subprocess@0.0.17

Patch Changes

  • Updated dependencies []:
    • @executor-js/codemode-core@1.6.2

@executor-js/plugin-encrypted-secrets@0.0.44

Patch Changes

  • Updated dependencies []:
    • @executor-js/sdk@1.6.2

@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

@executor-js/react@1.4.65

Patch Changes

  • Updated dependencies []:
    • @executor-js/sdk@1.6.2
    • @executor-js/api@1.4.65

@executor-js/desktop@1.6.2

@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Aug 28, 2026

Copy link
Copy Markdown

Deploying with  Cloudflare Workers  Cloudflare Workers

The latest updates on your project. Learn more about integrating Git with Workers.

Status Name Latest Commit Preview URL Updated (UTC)
✅ Deployment successful!
View logs
executor-marketing 9b80713 Commit Preview URL

Branch Preview URL
Aug 28 2026, 07:06 AM

@cloudflare-workers-and-pages

cloudflare-workers-and-pages Bot commented Aug 28, 2026

Copy link
Copy Markdown

Deploying with  Cloudflare Workers  Cloudflare Workers

The latest updates on your project. Learn more about integrating Git with Workers.

Status Name Latest Commit Updated (UTC)
✅ Deployment successful!
View logs
executor-cloud 9b80713 Aug 28 2026, 07:08 AM

@github-actions

github-actions Bot commented Aug 28, 2026

Copy link
Copy Markdown
Contributor

Cloudflare preview

Torn down — the PR is closed.

@pkg-pr-new

pkg-pr-new Bot commented Aug 28, 2026

Copy link
Copy Markdown

Open in StackBlitz

@executor-js/cli

npm i https://pkg.pr.new/@executor-js/cli@1804

@executor-js/config

npm i https://pkg.pr.new/@executor-js/config@1804

@executor-js/execution

npm i https://pkg.pr.new/@executor-js/execution@1804

@executor-js/sdk

npm i https://pkg.pr.new/@executor-js/sdk@1804

@executor-js/codemode-core

npm i https://pkg.pr.new/@executor-js/codemode-core@1804

@executor-js/runtime-quickjs

npm i https://pkg.pr.new/@executor-js/runtime-quickjs@1804

@executor-js/plugin-file-secrets

npm i https://pkg.pr.new/@executor-js/plugin-file-secrets@1804

@executor-js/plugin-graphql

npm i https://pkg.pr.new/@executor-js/plugin-graphql@1804

@executor-js/plugin-keychain

npm i https://pkg.pr.new/@executor-js/plugin-keychain@1804

@executor-js/plugin-mcp

npm i https://pkg.pr.new/@executor-js/plugin-mcp@1804

@executor-js/plugin-onepassword

npm i https://pkg.pr.new/@executor-js/plugin-onepassword@1804

@executor-js/plugin-openapi

npm i https://pkg.pr.new/@executor-js/plugin-openapi@1804

executor

npm i https://pkg.pr.new/executor@1804

commit: 9b80713

@RhysSullivan
RhysSullivan force-pushed the changeset-release/main branch from f0d9d18 to 0eaeb32 Compare August 28, 2026 06:36
@RhysSullivan
RhysSullivan force-pushed the changeset-release/main branch from 0eaeb32 to 9b80713 Compare August 28, 2026 07:04
@RhysSullivan
RhysSullivan merged commit e61beb7 into main Aug 28, 2026
44 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant