releases.shpreview

Trigger.dev v4.4.3

Rollup

v4.4.3

Error tracking dashboard, Supabase environment variable sync, and dev run auto-cancel on CLI exit.

Improvements

  1. syncSupabaseEnvVars automates Supabase connection string integration into environment variables. The feature retrieves database credentials and eliminates manual configuration steps for Supabase-connected tasks. (docs, #3152)
// trigger.config.ts
import { defineConfig } from "@trigger.dev/sdk";
import { syncSupabaseEnvVars } from "@trigger.dev/build/extensions/core";

export default defineConfig({
  build: {
    extensions: [syncSupabaseEnvVars()],
  },
});
  1. Auto-cancel in-flight dev runs when CLI terminates, using a detached watchdog process that survives pnpm SIGKILL. (#3191)

Server Changes

These changes are included in the v4.4.3 Docker image and are already live on Trigger.dev Cloud:

  1. New Errors page for viewing and tracking run failures. Errors are grouped by fingerprint — view top errors for a time period, filter by task, search by text, and see occurrences over time. Users can list affected runs and bulk replay them from the error detail view. (#3172)

    Private alpha on Trigger.dev Cloud — The Errors page is available now for self-hosted users. On Trigger.dev Cloud it's currently in private alpha, with a full public release coming soon.

  2. Test page AI payload generation automatically creates example payloads using AI. For schemaTask tasks, the AI uses your task's JSON schema to generate valid payloads. New sidebar tabs provide visibility into Options, AI, and Schema. (#3188)

How to Upgrade

Update the trigger.dev/* packages to v4.4.3 using your package manager:

npx trigger.dev@latest update # npm
pnpm dlx trigger.dev@latest update # pnpm
yarn dlx trigger.dev@latest update # yarn
bunx trigger.dev@latest update # bun

Self-hosted users: update your Docker image to ghcr.io/triggerdotdev/trigger.dev:v4.4.3.

Fetched June 3, 2026