Skip to content

chore(release): version packages#660

Open
github-actions[bot] wants to merge 1 commit into
mainfrom
changeset-release/main
Open

chore(release): version packages#660
github-actions[bot] wants to merge 1 commit into
mainfrom
changeset-release/main

Conversation

@github-actions

@github-actions github-actions Bot commented Jul 1, 2026

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

@chat-adapter/github@4.33.0

Minor Changes

  • 6750d59: Add Vercel Connect support to the GitHub adapter. A new installationToken config option (string or resolver) supplies installation access tokens directly, skipping the GitHub App private-key JWT exchange, and an optional webhookVerifier verifies inbound webhooks (e.g. Connect trigger-forwarded requests via a Vercel OIDC token) in place of the GitHub webhook secret. Pair with connectGitHubAdapter() from @vercel/connect/chat.

    botUserId now also auto-detects from the GITHUB_BOT_USER_ID env var, and the adapter learns its bot user id from the first comment it posts. In Connect mode (where the bot user id can't be auto-detected from an installation token) set botUserId / GITHUB_BOT_USER_ID to enable self-message detection and avoid the adapter replying to its own comments.

    Note: the connectGitHubAdapter() helper ships in @vercel/connect — release this adapter together with (or after) the @vercel/connect version that adds the @vercel/connect/chat subpath so the documented helper resolves.

Patch Changes

  • Updated dependencies [3abdc69]
  • Updated dependencies [0b63791]
  • Updated dependencies [24a04d5]
  • Updated dependencies [d4c52ca]
  • Updated dependencies [076fe5d]
    • chat@4.33.0
    • @chat-adapter/shared@4.33.0

@chat-adapter/linear@4.33.0

Minor Changes

  • 4115c94: Add Vercel Connect support to the Linear adapter. The accessToken config option now accepts a resolver (() => string | Promise<string>) in addition to a string, so tokens can be sourced from Vercel Connect at runtime, and a new optional webhookVerifier verifies inbound webhooks (e.g. Connect trigger-forwarded requests via a Vercel OIDC token) in place of the Linear webhook secret. Pair with connectLinearAdapter() from @vercel/connect/chat. Connect-mode outbound calls outside webhook handling are supported via withInstallation(organizationId, fn).

    Note: the connectLinearAdapter() helper ships in @vercel/connect — release this adapter together with (or after) the @vercel/connect version that adds the @vercel/connect/chat subpath so the documented helper resolves.

Patch Changes

  • Updated dependencies [3abdc69]
  • Updated dependencies [0b63791]
  • Updated dependencies [24a04d5]
  • Updated dependencies [d4c52ca]
  • Updated dependencies [076fe5d]
    • chat@4.33.0
    • @chat-adapter/shared@4.33.0

@chat-adapter/shared@4.33.0

Minor Changes

  • d4c52ca: add replaceBareMentions, a context-aware bare-@mention resolver that skips code spans, URLs, schemeless hosts, and existing angle-bracket tokens before handing each real @name to a platform-specific replacer

Patch Changes

create-chat-sdk@0.2.0

Minor Changes

  • ba375ce: Add Vercel Connect support to the scaffolder. Pass --connect (or choose Vercel Connect at the new interactive auth-mode prompt) to authenticate the Slack, GitHub, and Linear adapters with a Vercel Connect connector instead of stored provider secrets. The generated src/lib/bot.ts spreads the matching helper from @vercel/connect/chat into the adapter factory, @vercel/connect is added to dependencies, and .env.example lists each connector UID (for example SLACK_CONNECTOR) plus the recommended GITHUB_BOT_USER_ID for GitHub, in place of native secrets.

Patch Changes

  • 3abdc69: docs(adapters): add Cloudflare Agents as a vendor-official state adapter (agents/chat-sdk) to the catalog and docs listing. It is hidden from the create-chat-sdk CLI (Worker/Durable Objects runtime), and the interactive state picker now filters out CLI-incompatible state adapters.
  • 24a04d5: docs(adapters): add Photon as a vendor-official adapter (@photon-ai/chat-adapter-imessage) to the catalog, docs listing, and CLI scaffold spec

@chat-adapter/tests@4.33.0

Minor Changes

  • a7fb1bc: Add connectWebhookContract, a shared Vitest suite for verifying an adapter's Vercel Connect webhook verification. Given a small per-adapter descriptor (how to build the adapter in Connect mode and craft an inbound webhook), it asserts the behavior every Connect-capable adapter shares: a webhookVerifier replaces the native signature/secret check and gates inbound requests — accept (200) on a truthy result, reject (401) on a thrown error or falsy result — and is invoked with the request and raw body. Connect-capable adapters can opt in with ~10 lines.

@chat-adapter/discord@4.33.0

Patch Changes

  • d4c52ca: use the shared replaceBareMentions scanner for @mention conversion so email addresses, @handles inside URLs, and mentions inside code spans are no longer mangled into Discord mentions, and already-formatted <@id> tokens are not double-wrapped
  • Updated dependencies [3abdc69]
  • Updated dependencies [0b63791]
  • Updated dependencies [24a04d5]
  • Updated dependencies [d4c52ca]
  • Updated dependencies [076fe5d]
    • chat@4.33.0
    • @chat-adapter/shared@4.33.0

@chat-adapter/gchat@4.33.0

Patch Changes

  • Updated dependencies [3abdc69]
  • Updated dependencies [0b63791]
  • Updated dependencies [24a04d5]
  • Updated dependencies [d4c52ca]
  • Updated dependencies [076fe5d]
    • chat@4.33.0
    • @chat-adapter/shared@4.33.0

@chat-adapter/messenger@4.33.0

Patch Changes

  • Updated dependencies [3abdc69]
  • Updated dependencies [0b63791]
  • Updated dependencies [24a04d5]
  • Updated dependencies [d4c52ca]
  • Updated dependencies [076fe5d]
    • chat@4.33.0
    • @chat-adapter/shared@4.33.0

@chat-adapter/slack@4.33.0

Patch Changes

  • 0b63791: Process Slack Socket Mode retry envelopes instead of discarding them. Slack redelivers an event (immediately, +1 min, +5 min) when a prior delivery wasn't acknowledged — including events sent while the app had no open socket, e.g. during a restart or a routine connection refresh. The adapter previously acked and dropped every envelope with retry_num > 0, so such events were permanently lost even though Slack redelivered them. Retries are now routed like first deliveries (logged at info with retry_num/retry_reason); Chat.processMessage's message-id dedupe drops true duplicates.
  • Updated dependencies [3abdc69]
  • Updated dependencies [0b63791]
  • Updated dependencies [24a04d5]
  • Updated dependencies [d4c52ca]
  • Updated dependencies [076fe5d]
    • chat@4.33.0
    • @chat-adapter/shared@4.33.0

@chat-adapter/teams@4.33.0

Patch Changes

  • d4c52ca: use the shared replaceBareMentions scanner for @mention conversion so email addresses, @handles inside URLs, and mentions inside code spans are no longer mangled into <at> mention tags
  • Updated dependencies [3abdc69]
  • Updated dependencies [0b63791]
  • Updated dependencies [24a04d5]
  • Updated dependencies [d4c52ca]
  • Updated dependencies [076fe5d]
    • chat@4.33.0
    • @chat-adapter/shared@4.33.0

@chat-adapter/telegram@4.33.0

Patch Changes

  • Updated dependencies [3abdc69]
  • Updated dependencies [0b63791]
  • Updated dependencies [24a04d5]
  • Updated dependencies [d4c52ca]
  • Updated dependencies [076fe5d]
    • chat@4.33.0
    • @chat-adapter/shared@4.33.0

@chat-adapter/twilio@4.33.0

Patch Changes

  • Updated dependencies [3abdc69]
  • Updated dependencies [0b63791]
  • Updated dependencies [24a04d5]
  • Updated dependencies [d4c52ca]
  • Updated dependencies [076fe5d]
    • chat@4.33.0
    • @chat-adapter/shared@4.33.0

@chat-adapter/web@4.33.0

Patch Changes

  • Updated dependencies [3abdc69]
  • Updated dependencies [0b63791]
  • Updated dependencies [24a04d5]
  • Updated dependencies [d4c52ca]
  • Updated dependencies [076fe5d]
    • chat@4.33.0
    • @chat-adapter/shared@4.33.0

@chat-adapter/whatsapp@4.33.0

Patch Changes

  • Updated dependencies [3abdc69]
  • Updated dependencies [0b63791]
  • Updated dependencies [24a04d5]
  • Updated dependencies [d4c52ca]
  • Updated dependencies [076fe5d]
    • chat@4.33.0
    • @chat-adapter/shared@4.33.0

chat@4.33.0

Patch Changes

  • 3abdc69: docs(adapters): add Cloudflare Agents as a vendor-official state adapter (agents/chat-sdk) to the catalog and docs listing. It is hidden from the create-chat-sdk CLI (Worker/Durable Objects runtime), and the interactive state picker now filters out CLI-incompatible state adapters.
  • 0b63791: Raise the default message dedupe TTL from 5 to 10 minutes so it outlives the longest platform redelivery window. Slack's Events API retries up to ~5 minutes after the original delivery — exactly at the old TTL boundary, where a retried event could miss the expired dedupe entry from its first processing and be handled twice. Configurable behavior is unchanged (dedupeTtlMs still overrides).
  • 24a04d5: docs(adapters): add Photon as a vendor-official adapter (@photon-ai/chat-adapter-imessage) to the catalog, docs listing, and CLI scaffold spec
  • 076fe5d: preserve skipped mention routing for debounce and message patterns

@chat-adapter/state-ioredis@4.33.0

Patch Changes

@chat-adapter/state-memory@4.33.0

Patch Changes

@chat-adapter/state-pg@4.33.0

Patch Changes

@chat-adapter/state-redis@4.33.0

Patch Changes

@github-actions github-actions Bot requested a review from a team as a code owner July 1, 2026 09:10
@vercel

vercel Bot commented Jul 1, 2026

Copy link
Copy Markdown
Contributor

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
chat Ready Ready Preview, Comment, Open in v0 Jul 2, 2026 5:52pm
chat-sdk-nextjs-chat Ready Ready Preview, Comment, Open in v0 Jul 2, 2026 5:52pm

@github-actions github-actions Bot force-pushed the changeset-release/main branch from 02a6257 to df825b3 Compare July 1, 2026 12:27
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 117db4e to beae9bf Compare July 1, 2026 15:45
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 21e5514 to 4115c94 Compare July 2, 2026 15:29
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 2da1980 to 3abdc69 Compare July 2, 2026 16:00
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 713c116 to 0b63791 Compare July 2, 2026 16:31
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.

0 participants