Skip to content

chore: release v4.5.2 - #4180

Merged
carderne merged 1 commit into
mainfrom
changeset-release/main
Jul 9, 2026
Merged

chore: release v4.5.2#4180
carderne merged 1 commit into
mainfrom
changeset-release/main

Conversation

@github-actions

@github-actionsgithub-actionsBot commented Jul 7, 2026

Copy link
Copy Markdown
Contributor

Summary

4 improvements, 5 bug fixes.

Improvements

  • Add SDK and API client helpers for run bulk actions. (#4105)

  • Large batch payloads now offload to object storage instead of riding inline in the trigger request. batchTrigger and batchTriggerAndWait (and the by-id and by-task variants) offload any per-item payload over 128KB before sending, the same way single trigger and triggerAndWait already do, so a big batch no longer blows past the API body limit. (#4165)

  • Removed internal helpers that were only used by the end-of-life v3 self-hosted compute providers. (#4194)

  • Add an onEvent callback to TriggerChatTransport / useTriggerChatTransport that emits typed lifecycle events for sends, stream connects, first chunk, and turn completion. Send-success metrics, time-to-first-token, and "sent but never answered" watchdogs become a few lines of client code. (#4187)

    onEvent: (event)=>{if(event.type==="message-sent")metrics.timing("chat.send_ms",event.durationMs);if(event.type==="first-chunk")metrics.timing("chat.ttft_ms",event.sinceSendMs??0);},

Bug fixes

  • fix(cli): honor the MCP server's --dev-only flag (#4199)
  • Fix chat turns that throw (for example from an onTurnStart hook) leaking their message listener, which lost or duplicated messages sent during later turns. (#4176)
  • Fix chat.agent and chat.createSession permanently dropping user messages when several arrived during a single turn: every buffered message is now dispatched as its own turn instead of only the first. (#4176)
  • Fix chat continuation runs replaying already-answered messages: turns delivered while the run was suspended now advance the session.in resume cursor, so a new run picks up exactly where the previous one left off. (#4176)
  • Fix chat.createSession swallowing a message sent shortly after stopping a turn: the turn's message listener now detaches when the stream settles, so those messages run as the next turn. (#4176)
Raw changeset output

Releases

@trigger.dev/build@4.5.2

Patch Changes

  • Updated dependencies:
    • @trigger.dev/core@4.5.2

trigger.dev@4.5.2

Patch Changes

  • fix(cli): honor the MCP server's --dev-only flag (#4199)
  • Updated dependencies:
    • @trigger.dev/core@4.5.2
    • @trigger.dev/build@4.5.2
    • @trigger.dev/schema-to-json@4.5.2

@trigger.dev/core@4.5.2

Patch Changes

  • Add SDK and API client helpers for run bulk actions. (#4105)
  • Large batch payloads now offload to object storage instead of riding inline in the trigger request. batchTrigger and batchTriggerAndWait (and the by-id and by-task variants) offload any per-item payload over 128KB before sending, the same way single trigger and triggerAndWait already do, so a big batch no longer blows past the API body limit. (#4165)
  • Removed internal helpers that were only used by the end-of-life v3 self-hosted compute providers. (#4194)

@trigger.dev/python@4.5.2

Patch Changes

  • Updated dependencies:
    • @trigger.dev/core@4.5.2
    • @trigger.dev/sdk@4.5.2
    • @trigger.dev/build@4.5.2

@trigger.dev/react-hooks@4.5.2

Patch Changes

  • Updated dependencies:
    • @trigger.dev/core@4.5.2

@trigger.dev/redis-worker@4.5.2

Patch Changes

  • Updated dependencies:
    • @trigger.dev/core@4.5.2

@trigger.dev/rsc@4.5.2

Patch Changes

  • Updated dependencies:
    • @trigger.dev/core@4.5.2

@trigger.dev/schema-to-json@4.5.2

Patch Changes

  • Updated dependencies:
    • @trigger.dev/core@4.5.2

@trigger.dev/sdk@4.5.2

Patch Changes

  • Add SDK and API client helpers for run bulk actions. (#4105)

  • Fix chat turns that throw (for example from an onTurnStart hook) leaking their message listener, which lost or duplicated messages sent during later turns. (#4176)

  • Fix chat.agent and chat.createSession permanently dropping user messages when several arrived during a single turn: every buffered message is now dispatched as its own turn instead of only the first. (#4176)

  • Fix chat continuation runs replaying already-answered messages: turns delivered while the run was suspended now advance the session.in resume cursor, so a new run picks up exactly where the previous one left off. (#4176)

  • Fix chat.createSession swallowing a message sent shortly after stopping a turn: the turn's message listener now detaches when the stream settles, so those messages run as the next turn. (#4176)

  • Add an onEvent callback to TriggerChatTransport / useTriggerChatTransport that emits typed lifecycle events for sends, stream connects, first chunk, and turn completion. Send-success metrics, time-to-first-token, and "sent but never answered" watchdogs become a few lines of client code. (#4187)

    onEvent: (event)=>{if(event.type==="message-sent")metrics.timing("chat.send_ms",event.durationMs);if(event.type==="first-chunk")metrics.timing("chat.ttft_ms",event.sinceSendMs??0);},
  • Large batch payloads now offload to object storage instead of riding inline in the trigger request. batchTrigger and batchTriggerAndWait (and the by-id and by-task variants) offload any per-item payload over 128KB before sending, the same way single trigger and triggerAndWait already do, so a big batch no longer blows past the API body limit. (#4165)

  • Updated dependencies:

    • @trigger.dev/core@4.5.2

@trigger.dev/plugins@4.5.2

Patch Changes

  • Updated dependencies:
    • @trigger.dev/core@4.5.2

@github-actionsgithub-actionsBot changed the title chore: releasechore: release v4.5.2Jul 7, 2026

@devin-ai-integrationdevin-ai-integrationBot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

✅ Devin Review: No Issues Found

Devin Review analyzed this PR and found no bugs or issues to report.

Open in Devin Review

@github-actionsgithub-actionsBot changed the title chore: release v4.5.2chore: releaseJul 7, 2026
@github-actions
github-actionsBotforce-pushed the changeset-release/main branch from aa86d42 to 20b8c8fCompareJuly 7, 2026 13:19
@github-actionsgithub-actionsBot changed the title chore: releasechore: release v4.5.2Jul 7, 2026
@github-actionsgithub-actionsBot changed the title chore: release v4.5.2chore: releaseJul 7, 2026
@github-actions
github-actionsBotforce-pushed the changeset-release/main branch from 20b8c8f to ce8d62fCompareJuly 7, 2026 14:45
@github-actionsgithub-actionsBot changed the title chore: releasechore: release v4.5.2Jul 7, 2026
@github-actionsgithub-actionsBot changed the title chore: release v4.5.2chore: releaseJul 7, 2026
@github-actions
github-actionsBotforce-pushed the changeset-release/main branch from ce8d62f to aa4e07bCompareJuly 7, 2026 16:23
@github-actionsgithub-actionsBot changed the title chore: releasechore: release v4.5.2Jul 7, 2026
@github-actionsgithub-actionsBot changed the title chore: release v4.5.2chore: releaseJul 7, 2026
@github-actions
github-actionsBotforce-pushed the changeset-release/main branch from aa4e07b to 1495419CompareJuly 7, 2026 21:36
@github-actionsgithub-actionsBot changed the title chore: releasechore: release v4.5.2Jul 7, 2026
@github-actionsgithub-actionsBot changed the title chore: release v4.5.2chore: releaseJul 7, 2026
@github-actions
github-actionsBotforce-pushed the changeset-release/main branch from 1495419 to a2b8075CompareJuly 7, 2026 21:49
@github-actionsgithub-actionsBot changed the title chore: releasechore: release v4.5.2Jul 7, 2026
@github-actionsgithub-actionsBot changed the title chore: release v4.5.2chore: releaseJul 8, 2026
@github-actions
github-actionsBotforce-pushed the changeset-release/main branch from a2b8075 to 667d3d0CompareJuly 8, 2026 10:04
@github-actionsgithub-actionsBot changed the title chore: releasechore: release v4.5.2Jul 8, 2026
@github-actionsgithub-actionsBot changed the title chore: release v4.5.2chore: releaseJul 8, 2026
@github-actions
github-actionsBotforce-pushed the changeset-release/main branch from 667d3d0 to 536488dCompareJuly 8, 2026 10:36
@github-actionsgithub-actionsBot changed the title chore: releasechore: release v4.5.2Jul 8, 2026
@github-actionsgithub-actionsBot changed the title chore: release v4.5.2chore: releaseJul 8, 2026
@github-actions
github-actionsBotforce-pushed the changeset-release/main branch from 536488d to d9227abCompareJuly 8, 2026 13:13
@github-actionsgithub-actionsBot changed the title chore: releasechore: release v4.5.2Jul 8, 2026
@github-actionsgithub-actionsBot changed the title chore: release v4.5.2chore: releaseJul 8, 2026
@github-actions
github-actionsBotforce-pushed the changeset-release/main branch from d9227ab to 48629b4CompareJuly 8, 2026 15:55
@github-actionsgithub-actionsBot changed the title chore: releasechore: release v4.5.2Jul 8, 2026
@github-actionsgithub-actionsBot changed the title chore: release v4.5.2chore: releaseJul 8, 2026
@github-actions
github-actionsBotforce-pushed the changeset-release/main branch from 48629b4 to 8edf2ecCompareJuly 8, 2026 17:21
@github-actionsgithub-actionsBot changed the title chore: releasechore: release v4.5.2Jul 8, 2026
@github-actionsgithub-actionsBot changed the title chore: release v4.5.2chore: releaseJul 8, 2026
@github-actions
github-actionsBotforce-pushed the changeset-release/main branch from 8edf2ec to c428652CompareJuly 8, 2026 17:49
@github-actionsgithub-actionsBot changed the title chore: releasechore: release v4.5.2Jul 8, 2026
@github-actionsgithub-actionsBot changed the title chore: release v4.5.2chore: releaseJul 9, 2026
@github-actions
github-actionsBotforce-pushed the changeset-release/main branch from c428652 to 333a41cCompareJuly 9, 2026 11:11
@github-actionsgithub-actionsBot changed the title chore: releasechore: release v4.5.2Jul 9, 2026
@github-actionsgithub-actionsBot changed the title chore: release v4.5.2chore: releaseJul 9, 2026
@github-actions
github-actionsBotforce-pushed the changeset-release/main branch from 333a41c to 9617e29CompareJuly 9, 2026 12:00
@github-actionsgithub-actionsBot changed the title chore: releasechore: release v4.5.2Jul 9, 2026
@carderne
carderne enabled auto-merge (squash) July 9, 2026 12:01
@carderne
carderne merged commit 188f008 into mainJul 9, 2026
13 of 15 checks passed
@carderne
carderne deleted the changeset-release/main branch July 9, 2026 12:02
@github-actions

Copy link
Copy Markdown
ContributorAuthor

🧭 Helm Chart Prerelease Published

Version:4.5.2-pr4180.9617e29

Install:

helm upgrade --install trigger \
oci://ghcr.io/triggerdotdev/charts/trigger \
--version "4.5.2-pr4180.9617e29"

⚠️ This is a prerelease for testing. Do not use in production.

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.

1 participant

@carderne