Skip to content

ci: Version Packages - #685

Merged
AlemTuzlak merged 1 commit into
mainfrom
changeset-release/main
Jun 2, 2026
Merged

ci: Version Packages#685
AlemTuzlak merged 1 commit into
mainfrom
changeset-release/main

Conversation

@github-actions

Copy link
Copy Markdown
Contributor

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm 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

@tanstack/ai@0.26.1

Patch Changes

  • Updated dependencies [7adff0f]:
    • @tanstack/ai-event-client@0.5.2

@tanstack/ai-client@0.16.1

Patch Changes

  • Updated dependencies [7adff0f]:
    • @tanstack/ai-event-client@0.5.2
    • @tanstack/ai@0.26.1

@tanstack/ai-code-mode@0.2.3

Patch Changes

  • Updated dependencies []:
    • @tanstack/ai@0.26.1

@tanstack/ai-code-mode-skills@0.2.3

Patch Changes

  • Updated dependencies []:
    • @tanstack/ai@0.26.1
    • @tanstack/ai-code-mode@0.2.3

@tanstack/ai-devtools-core@0.4.6

Patch Changes

  • Updated dependencies [7adff0f]:
    • @tanstack/ai-event-client@0.5.2
    • @tanstack/ai@0.26.1

@tanstack/ai-event-client@0.5.2

Patch Changes

  • #6837adff0f - Defer devtools runtime-id generation to first use so importing @tanstack/ai is safe in edge/global scope.

    @tanstack/ai-event-client previously seeded its runtime id at module scope by calling crypto.randomUUID() (falling back to Math.random()) inside a top-level IIFE. Because @tanstack/ai's chat() always pulls in the devtools middleware, this random-value generation ran at module-evaluation time. Edge runtimes such as Cloudflare Workers forbid generating random values in global scope, so simply importing chat() crashed the Worker with Disallowed operation called within global scope.

    The runtime id is now generated lazily on first use (inside getAIDevtoolsRuntimeId() / createAIDevtoolsEventEnvelope()) and memoized, so evaluating the module performs no random-value generation. The cross-bundle global (globalThis.__TANSTACK_AI_DEVTOOLS_RUNTIME_ID__) and the generated values are unchanged. Fixes#667.

  • Updated dependencies []:

    • @tanstack/ai@0.26.1

@tanstack/ai-fal@0.7.21

Patch Changes

  • Updated dependencies []:
    • @tanstack/ai@0.26.1

@tanstack/ai-isolate-cloudflare@0.2.19

Patch Changes

  • Updated dependencies []:
    • @tanstack/ai-code-mode@0.2.3

@tanstack/ai-isolate-node@0.1.28

Patch Changes

  • Updated dependencies []:
    • @tanstack/ai-code-mode@0.2.3

@tanstack/ai-isolate-quickjs@0.1.28

Patch Changes

  • Updated dependencies []:
    • @tanstack/ai-code-mode@0.2.3

@tanstack/ai-preact@0.9.1

Patch Changes

  • Updated dependencies []:
    • @tanstack/ai@0.26.1
    • @tanstack/ai-client@0.16.1

@tanstack/ai-react@0.15.1

Patch Changes

  • Updated dependencies []:
    • @tanstack/ai@0.26.1
    • @tanstack/ai-client@0.16.1

@tanstack/ai-solid@0.13.1

Patch Changes

  • Updated dependencies []:
    • @tanstack/ai@0.26.1
    • @tanstack/ai-client@0.16.1

@tanstack/ai-svelte@0.13.1

Patch Changes

  • Updated dependencies []:
    • @tanstack/ai@0.26.1
    • @tanstack/ai-client@0.16.1

@tanstack/ai-vue@0.13.1

Patch Changes

  • Updated dependencies []:
    • @tanstack/ai@0.26.1
    • @tanstack/ai-client@0.16.1

@tanstack/ai-vue-ui@0.2.13

Patch Changes

  • Updated dependencies []:
    • @tanstack/ai-vue@0.13.1

@tanstack/preact-ai-devtools@0.1.49

Patch Changes

  • Updated dependencies []:
    • @tanstack/ai-devtools-core@0.4.6

@tanstack/react-ai-devtools@0.2.49

Patch Changes

  • Updated dependencies []:
    • @tanstack/ai-devtools-core@0.4.6

@tanstack/solid-ai-devtools@0.2.49

Patch Changes

  • Updated dependencies []:
    • @tanstack/ai-devtools-core@0.4.6

@AlemTuzlak
AlemTuzlak merged commit 8977a64 into mainJun 2, 2026
2 checks passed
@AlemTuzlak
AlemTuzlak deleted the changeset-release/main branch June 2, 2026 06:42
Sign up for freeto 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.

@tanstack/ai-event-client generates a random runtime ID at module scope, crashing on Cloudflare Workers / edge runtimes

1 participant

@AlemTuzlak