Skip to content

chore: release v4.5.0-rc.2#3702

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

chore: release v4.5.0-rc.2#3702
github-actions[bot] wants to merge 1 commit into
mainfrom
changeset-release/main

Conversation

@github-actions
Copy link
Copy Markdown
Contributor

@github-actions github-actions Bot commented May 22, 2026

Summary

1 improvement.

Improvements

  • Add TriggerClient for running multiple SDK clients side-by-side, each with its own auth, preview branch, and baseURL. Useful when a single process needs to trigger tasks or read runs across multiple projects, environments, or preview branches without mutating shared global state. (#3683)
Raw changeset output

⚠️⚠️⚠️⚠️⚠️⚠️

main is currently in pre mode so this branch has prereleases rather than normal releases. If you want to exit prereleases, run changeset pre exit on main.

⚠️⚠️⚠️⚠️⚠️⚠️

Releases

@trigger.dev/[email protected]

Patch Changes

[email protected]

Patch Changes

@trigger.dev/[email protected]

Patch Changes

@trigger.dev/[email protected]

Patch Changes

@trigger.dev/[email protected]

Patch Changes

@trigger.dev/[email protected]

Patch Changes

@trigger.dev/[email protected]

Patch Changes

@trigger.dev/[email protected]

Patch Changes

@trigger.dev/[email protected]

Patch Changes

  • Add TriggerClient for running multiple SDK clients side-by-side, each with its own auth, preview branch, and baseURL. Useful when a single process needs to trigger tasks or read runs across multiple projects, environments, or preview branches without mutating shared global state. (#3683)

    import { TriggerClient } from "@trigger.dev/sdk";
    
    const prod = new TriggerClient({ accessToken: process.env.TRIGGER_PROD_KEY });
    const preview = new TriggerClient({
      accessToken: process.env.TRIGGER_PREVIEW_KEY,
      previewBranch: "signup-flow",
    });
    
    await prod.tasks.trigger("send-email", payload);
    await preview.runs.list({ status: ["COMPLETED"] });
  • Updated dependencies:

@trigger.dev/[email protected]

@github-actions github-actions Bot changed the title chore: release (rc) chore: release v4.5.0-rc.2 May 22, 2026
Copy link
Copy Markdown
Contributor

@devin-ai-integration devin-ai-integration Bot left a comment

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-actions github-actions Bot changed the title chore: release v4.5.0-rc.2 chore: release (rc) May 22, 2026
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 9634f52 to a7b2ff2 Compare May 22, 2026 13:44
@github-actions github-actions Bot changed the title chore: release (rc) chore: release v4.5.0-rc.2 May 22, 2026
@github-actions github-actions Bot changed the title chore: release v4.5.0-rc.2 chore: release (rc) May 22, 2026
@github-actions github-actions Bot force-pushed the changeset-release/main branch from a7b2ff2 to e67e643 Compare May 22, 2026 14:12
@github-actions github-actions Bot changed the title chore: release (rc) chore: release v4.5.0-rc.2 May 22, 2026
@github-actions github-actions Bot changed the title chore: release v4.5.0-rc.2 chore: release (rc) May 22, 2026
@github-actions github-actions Bot force-pushed the changeset-release/main branch from e67e643 to 8514f1e Compare May 22, 2026 14:43
@github-actions github-actions Bot changed the title chore: release (rc) chore: release v4.5.0-rc.2 May 22, 2026
@github-actions github-actions Bot changed the title chore: release v4.5.0-rc.2 chore: release (rc) May 22, 2026
@github-actions github-actions Bot changed the title chore: release (rc) chore: release v4.5.0-rc.2 May 22, 2026
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 8514f1e to 5dab2df Compare May 22, 2026 15:29
@github-actions github-actions Bot changed the title chore: release v4.5.0-rc.2 chore: release (rc) May 22, 2026
@github-actions github-actions Bot force-pushed the changeset-release/main branch from 5dab2df to f32ca91 Compare May 22, 2026 15:35
@github-actions github-actions Bot changed the title chore: release (rc) chore: release v4.5.0-rc.2 May 22, 2026
@github-actions github-actions Bot changed the title chore: release v4.5.0-rc.2 chore: release (rc) May 22, 2026
@github-actions github-actions Bot force-pushed the changeset-release/main branch from f32ca91 to cd1ea9f Compare May 22, 2026 16:20
@github-actions github-actions Bot changed the title chore: release (rc) chore: release v4.5.0-rc.2 May 22, 2026
@github-actions github-actions Bot changed the title chore: release v4.5.0-rc.2 chore: release (rc) May 23, 2026
@github-actions github-actions Bot force-pushed the changeset-release/main branch from cd1ea9f to c03f711 Compare May 23, 2026 15:09
@github-actions github-actions Bot changed the title chore: release (rc) chore: release v4.5.0-rc.2 May 23, 2026
Copy link
Copy Markdown
Contributor

@devin-ai-integration devin-ai-integration Bot left a comment

Choose a reason for hiding this comment

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

Devin Review found 1 new potential issue.

View 2 additional findings in Devin Review.

Open in Devin Review

Comment on lines +7 to +20
- Add `TriggerClient` for running multiple SDK clients side-by-side, each with its own auth, preview branch, and baseURL. Useful when a single process needs to trigger tasks or read runs across multiple projects, environments, or preview branches without mutating shared global state. ([#3683](https://github.com/triggerdotdev/trigger.dev/pull/3683))

```ts
import { TriggerClient } from "@trigger.dev/sdk";

const prod = new TriggerClient({ accessToken: process.env.TRIGGER_PROD_KEY });
const preview = new TriggerClient({
accessToken: process.env.TRIGGER_PREVIEW_KEY,
previewBranch: "signup-flow",
});

await prod.tasks.trigger("send-email", payload);
await preview.runs.list({ status: ["COMPLETED"] });
```
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.

🚩 Changelog for @trigger.dev/sdk advertises TriggerClient but no source code is included in this PR

The packages/trigger-sdk/CHANGELOG.md:7 entry describes a new TriggerClient class with usage examples, and pre.json adds a trigger-client changeset. However, this PR contains zero TypeScript source changes — the actual implementation of TriggerClient is presumably already merged into the branch before this release PR. This is normal for changeset-based release workflows, but worth confirming that the TriggerClient code actually exists on this branch and wasn't accidentally omitted from the release.

Open in Devin Review

Was this helpful? React with 👍 or 👎 to provide feedback.

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