Skip to content

Commit 4a1f53e

Browse files
chore: release
1 parent 7c7d785 commit 4a1f53e

23 files changed

Lines changed: 93 additions & 48 deletions

.changeset/add-is-replay-context.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/cli-no-browser-headless-init.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/redact-resolve-waitpoint-log.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/session-primitive.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/truncate-error-stacks.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/build/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @trigger.dev/build
22

3+
## 4.4.5
4+
5+
### Patch Changes
6+
7+
- Updated dependencies:
8+
- `@trigger.dev/core@4.4.5`
9+
310
## 4.4.4
411

512
### Patch Changes

packages/build/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@trigger.dev/build",
3-
"version": "4.4.4",
3+
"version": "4.4.5",
44
"description": "trigger.dev build extensions",
55
"license": "MIT",
66
"publishConfig": {
@@ -78,7 +78,7 @@
7878
},
7979
"dependencies": {
8080
"@prisma/config": "^6.10.0",
81-
"@trigger.dev/core": "workspace:4.4.4",
81+
"@trigger.dev/core": "workspace:4.4.5",
8282
"mlly": "^1.7.1",
8383
"pkg-types": "^1.1.3",
8484
"resolve": "^1.22.8",

packages/cli-v3/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# trigger.dev
22

3+
## 4.4.5
4+
5+
### Patch Changes
6+
7+
- Add `--no-browser` flag to `init` and `login` to skip auto-opening the browser during authentication. Also error loudly when `init` is run without `--yes` under non-TTY stdin (previously default-and-exited silently, leaving the project half-initialized). Both commands now show an `Examples` section in `--help`. ([#3483](https://github.com/triggerdotdev/trigger.dev/pull/3483))
8+
- Updated dependencies:
9+
- `@trigger.dev/core@4.4.5`
10+
- `@trigger.dev/build@4.4.5`
11+
- `@trigger.dev/schema-to-json@4.4.5`
12+
313
## 4.4.4
414

515
### Patch Changes

packages/cli-v3/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "trigger.dev",
3-
"version": "4.4.4",
3+
"version": "4.4.5",
44
"description": "A Command-Line Interface for Trigger.dev projects",
55
"type": "module",
66
"license": "MIT",
@@ -95,9 +95,9 @@
9595
"@opentelemetry/sdk-trace-node": "2.0.1",
9696
"@opentelemetry/semantic-conventions": "1.36.0",
9797
"@s2-dev/streamstore": "^0.22.5",
98-
"@trigger.dev/build": "workspace:4.4.4",
99-
"@trigger.dev/core": "workspace:4.4.4",
100-
"@trigger.dev/schema-to-json": "workspace:4.4.4",
98+
"@trigger.dev/build": "workspace:4.4.5",
99+
"@trigger.dev/core": "workspace:4.4.5",
100+
"@trigger.dev/schema-to-json": "workspace:4.4.5",
101101
"ansi-escapes": "^7.0.0",
102102
"braces": "^3.0.3",
103103
"c12": "^1.11.1",

packages/core/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# internal-platform
22

3+
## 4.4.5
4+
5+
### Patch Changes
6+
7+
- Add `isReplay` boolean to the run context (`ctx.run.isReplay`), derived from the existing `replayedFromTaskRunFriendlyId` database field. Defaults to `false` for backwards compatibility. ([#3454](https://github.com/triggerdotdev/trigger.dev/pull/3454))
8+
- Redact the `resolveWaitpoint` runtime log so it only emits `id` and `type` instead of the full completed waitpoint. Previously the log printed the entire waitpoint (including `output`) to stdout in production runs, which could leak sensitive payloads. The value returned by `wait.forToken()` is unchanged. ([#3490](https://github.com/triggerdotdev/trigger.dev/pull/3490))
9+
- Add `SessionId` friendly ID generator and schemas for the new durable Session primitive. Exported from `@trigger.dev/core/v3/isomorphic` alongside `RunId`, `BatchId`, etc. Ships the `CreateSessionStreamWaitpoint` request/response schemas alongside the main Session CRUD. ([#3417](https://github.com/triggerdotdev/trigger.dev/pull/3417))
10+
- Truncate large error stacks and messages to prevent OOM crashes. Stack traces are capped at 50 frames (keeping top 5 + bottom 45 with an omission notice), individual stack lines at 1024 chars, and error messages at 1000 chars. Applied in parseError, sanitizeError, and OTel span recording. ([#3405](https://github.com/triggerdotdev/trigger.dev/pull/3405))
11+
312
## 4.4.4
413

514
### Patch Changes

0 commit comments

Comments
 (0)