Skip to content

chore(deps)(deps): bump the trigger group with 2 updates#8

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/trigger-0c2eaad948
Open

chore(deps)(deps): bump the trigger group with 2 updates#8
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/trigger-0c2eaad948

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Mar 15, 2026

Bumps the trigger group with 2 updates: @trigger.dev/sdk and @trigger.dev/build.

Updates @trigger.dev/sdk from 3.3.17 to 4.4.3

Release notes

Sourced from @​trigger.dev/sdk's releases.

@​trigger.dev/sdk@4.4.1

Patch Changes

  • Add OTEL metrics pipeline for task workers. Workers collect process CPU/memory, Node.js runtime metrics (event loop utilization, event loop delay, heap usage), and user-defined custom metrics via otel.metrics.getMeter(). Metrics are exported to ClickHouse with 10-second aggregation buckets and 1m/5m rollups, and are queryable through the dashboard query engine with typed attribute columns, prettyFormat() for human-readable values, and AI query support. (#3061)
  • Updated dependencies:
    • @trigger.dev/core@4.4.1

@​trigger.dev/sdk@4.4.0

Minor Changes

  • Added query.execute() which lets you query your Trigger.dev data using TRQL (Trigger Query Language) and returns results as typed JSON rows or CSV. It supports configurable scope (environment, project, or organization), time filtering via period or from/to ranges, and a format option for JSON or CSV output. (#3060)

    import { query } from "@trigger.dev/sdk";
    import type { QueryTable } from "@trigger.dev/sdk";
    // Basic untyped query
    const result = await query.execute("SELECT run_id, status FROM runs LIMIT 10");
    // Type-safe query using QueryTable to pick specific columns
    const typedResult = await query.execute<QueryTable<"runs", "run_id" | "status" | "triggered_at">>(
    "SELECT run_id, status, triggered_at FROM runs LIMIT 10"
    );
    typedResult.results.forEach((row) => {
    console.log(row.run_id, row.status); // Fully typed
    });
    // Aggregation query with inline types
    const stats = await query.execute<{ status: string; count: number }>(
    "SELECT status, COUNT(*) as count FROM runs GROUP BY status",
    { scope: "project", period: "30d" }
    );
    // CSV export
    const csv = await query.execute("SELECT run_id, status FROM runs", {
    format: "csv",
    period: "7d",
    });
    console.log(csv.results); // Raw CSV string

Patch Changes

  • Add maxDelay option to debounce feature. This allows setting a maximum time limit for how long a debounced run can be delayed, ensuring execution happens within a specified window even with continuous triggers. (#2984)

    await myTask.trigger(payload, {
      debounce: {
        key: "my-key",
        delay: "5s",

... (truncated)

Changelog

Sourced from @​trigger.dev/sdk's changelog.

4.4.3

Patch Changes

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

4.4.2

Patch Changes

  • Add input streams for bidirectional communication with running tasks. Define typed input streams with streams.input<T>({ id }), then consume inside tasks via .wait() (suspends the process), .once() (waits for next message), or .on() (subscribes to a continuous stream). Send data from backends with .send(runId, data) or from frontends with the new useInputStreamSend React hook. (#3146)

    Upgrade S2 SDK from 0.17 to 0.22 with support for custom endpoints (s2-lite) via the new endpoints configuration, AppendRecord.string() API, and maxInflightBytes session option.

  • fix(sdk): batch triggerAndWait variants now return correct run.taskIdentifier instead of unknown (#3080)

  • Add PAYLOAD_TOO_LARGE error to handle graceful recovery of sending batch trigger items with payloads that exceed the maximum payload size (#3137)

  • Updated dependencies:

    • @trigger.dev/core@4.4.2

4.4.1

Patch Changes

  • Add OTEL metrics pipeline for task workers. Workers collect process CPU/memory, Node.js runtime metrics (event loop utilization, event loop delay, heap usage), and user-defined custom metrics via otel.metrics.getMeter(). Metrics are exported to ClickHouse with 10-second aggregation buckets and 1m/5m rollups, and are queryable through the dashboard query engine with typed attribute columns, prettyFormat() for human-readable values, and AI query support. (#3061)
  • Updated dependencies:
    • @trigger.dev/core@4.4.1

4.4.0

Minor Changes

  • Added query.execute() which lets you query your Trigger.dev data using TRQL (Trigger Query Language) and returns results as typed JSON rows or CSV. It supports configurable scope (environment, project, or organization), time filtering via period or from/to ranges, and a format option for JSON or CSV output. (#3060)

    import { query } from "@trigger.dev/sdk";
    import type { QueryTable } from "@trigger.dev/sdk";
    // Basic untyped query
    const result = await query.execute("SELECT run_id, status FROM runs LIMIT 10");
    // Type-safe query using QueryTable to pick specific columns
    const typedResult = await query.execute<QueryTable<"runs", "run_id" | "status" | "triggered_at">>(
    "SELECT run_id, status, triggered_at FROM runs LIMIT 10"
    );
    typedResult.results.forEach((row) => {
    console.log(row.run_id, row.status); // Fully typed
    });
    // Aggregation query with inline types

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​trigger.dev/sdk since your current version.


Updates @trigger.dev/build from 3.3.17 to 4.4.3

Release notes

Sourced from @​trigger.dev/build's releases.

@​trigger.dev/build@4.4.1

Patch Changes

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

@​trigger.dev/build@4.4.0

Patch Changes

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

@​trigger.dev/build@4.3.3

Patch Changes

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

@​trigger.dev/build@4.3.2

Patch Changes

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

@​trigger.dev/build@4.3.1

Patch Changes

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

@​trigger.dev/build@4.3.0

Patch Changes

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

@​trigger.dev/build@4.2.0

Patch Changes

  • syncVercelEnvVars to skip API and read env vars directly from env.process for Vercel build environments. New syncNeonEnvVars build extension for syncing environment variables from Neon database projects to Trigger.dev. The extension automatically detects branches and builds appropriate PostgreSQL connection strings for non-production, non-dev environments (staging, preview). (#2729)
  • Updated dependencies:
    • @trigger.dev/core@4.2.0

@​trigger.dev/build@4.1.2

Patch Changes

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

@​trigger.dev/build@4.1.1

... (truncated)

Changelog

Sourced from @​trigger.dev/build's changelog.

4.4.3

Patch Changes

  • Add syncSupabaseEnvVars to pull database connection strings and save them as trigger.dev environment variables (#3152)
  • Updated dependencies:
    • @trigger.dev/core@4.4.3

4.4.2

Patch Changes

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

4.4.1

Patch Changes

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

4.4.0

Patch Changes

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

4.3.3

Patch Changes

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

4.3.2

Patch Changes

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

4.3.1

Patch Changes

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

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​trigger.dev/build since your current version.


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Mar 15, 2026

Labels

The following labels could not be found: dependencies, npm. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@vercel
Copy link

vercel bot commented Mar 15, 2026

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

Project Deployment Actions Updated (UTC)
progresstracker Ready Ready Preview, Comment Mar 23, 2026 0:48am

Bumps the trigger group with 2 updates: [@trigger.dev/sdk](https://github.com/triggerdotdev/trigger.dev/tree/HEAD/packages/trigger-sdk) and [@trigger.dev/build](https://github.com/triggerdotdev/trigger.dev/tree/HEAD/packages/build).


Updates `@trigger.dev/sdk` from 3.3.17 to 4.4.3
- [Release notes](https://github.com/triggerdotdev/trigger.dev/releases)
- [Changelog](https://github.com/triggerdotdev/trigger.dev/blob/main/packages/trigger-sdk/CHANGELOG.md)
- [Commits](https://github.com/triggerdotdev/trigger.dev/commits/v4.4.3/packages/trigger-sdk)

Updates `@trigger.dev/build` from 3.3.17 to 4.4.3
- [Release notes](https://github.com/triggerdotdev/trigger.dev/releases)
- [Changelog](https://github.com/triggerdotdev/trigger.dev/blob/main/packages/build/CHANGELOG.md)
- [Commits](https://github.com/triggerdotdev/trigger.dev/commits/v4.4.3/packages/build)

---
updated-dependencies:
- dependency-name: "@trigger.dev/sdk"
  dependency-version: 4.4.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: trigger
- dependency-name: "@trigger.dev/build"
  dependency-version: 4.4.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: trigger
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/trigger-0c2eaad948 branch from de72322 to d61da21 Compare March 23, 2026 00:37
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