3 improvements.
Improvements
-
Schedule policy warnings now show how to override the default cron window when the execution window doesn't fit the configured schedule. (
630eb75) -
Thrown error
causechains are now captured and surfaced. When a task throws an error that wraps another, the run error in the dashboard, CLI dev output, and failure alerts all carry the full chain instead of only the outermost message:throw new Error("Could not sync the customer", { cause: originalError });The chain is flattened outermost first, capped at five causes, and cycle-safe. It also surfaces as a
causesarray on theerrorfield of API and realtime run records.triggerAndWaitandtriggerAndSubscriberebuild it as a nativecauseon the error they hand back, soerr.causeworks in your own catch blocks. (4f36f61) -
chat.agent()now excludes summarized assistant steps and tool results from the model's context after inner compaction, while preserving the full visible conversation in the trace. (fc77bfc)
How to upgrade
Update the trigger.dev/* packages to v4.6.3 using your package manager:
npx trigger.dev@latest update # npmpnpm dlx trigger.dev@latest update # pnpmyarn dlx trigger.dev@latest update # yarnbunx trigger.dev@latest update # bun
Self-hosted users: update your Docker image to ghcr.io/triggerdotdev/trigger.dev:v4.6.3.




