Skip to content

Commit c386f04

Browse files
Merge branch 'triggerdotdev:main' into main
2 parents 59c678f + 6961004 commit c386f04

111 files changed

Lines changed: 2454 additions & 827 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
---
2+
"@trigger.dev/core": patch
3+
---
4+
5+
`envvars.upload` now accepts an optional `isSecret` flag, letting you create the imported variables as secret (redacted) environment variables. When omitted, variables default to non-secret.
6+
7+
```ts
8+
await envvars.upload("proj_1234", "prod", {
9+
variables: { STRIPE_SECRET_KEY: "sk_live_..." },
10+
isSecret: true,
11+
});
12+
```

.changeset/mollifier-buffer-extensions.md

Lines changed: 0 additions & 5 deletions
This file was deleted.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@trigger.dev/redis-worker": patch
3+
---
4+
5+
`MollifierDrainer` accepts a `drainBatchSize` option (default 1) that controls how many entries are popped per env per tick — in-flight handlers remain capped by the global `concurrency`. `MollifierBuffer` also gains `getDrainingCount()` / `listStaleDraining()`, backed by a new `mollifier:draining` ZSET maintained atomically with pop/ack/fail/requeue (observability-only).

.changeset/mollifier-drainer-terminal-failure-callback.md

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

.changeset/pre.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,29 @@
2525
"bundle-skills-single-pass",
2626
"cap-idempotency-key-length",
2727
"chat-agent-on-boot-hook",
28+
"chat-agent-tools",
2829
"chat-agent",
2930
"chat-history-read-primitives",
3031
"chat-session-attributes",
3132
"chat-slim-wire-merge",
3233
"chat-start-session-action-typed-client-data",
3334
"cli-deploy-skip-rewrite-timestamp",
35+
"coerce-concurrency-key-to-string",
3436
"locals-key-dual-package-fix",
3537
"mcp-agent-chat-sessions",
3638
"mcp-list-runs-region",
3739
"mock-chat-agent-test-harness",
40+
"mollifier-buffer-extensions",
41+
"mollifier-buffer-pipeline-list-entries",
42+
"mollifier-drainer-terminal-failure-callback",
3843
"mollifier-redis-worker-primitives",
44+
"mollifier-tag-cap",
3945
"plugin-auth-path",
4046
"resource-catalog-runtime-registration",
4147
"retry-middleware-errors",
4248
"retry-sigsegv",
4349
"runs-list-region-filter",
50+
"s2-batch-transform-linger-fix",
4451
"sessions-primitive",
4552
"trigger-client",
4653
"unflatten-attributes-conflict",

.github/VOUCHED.td

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,5 @@ chengzp
2121
bharathkumar39293
2222
bhekanik
2323
jrossi
24-
ThullyoCunha
24+
ThullyoCunha
25+
ConProgramming

.github/workflows/changesets-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Setup node
3737
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
3838
with:
39-
node-version: 20.20.0
39+
node-version: 20.20.2
4040
cache: "pnpm"
4141

4242
- name: Install dependencies

.github/workflows/claude.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: ⎔ Setup node
4040
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
4141
with:
42-
node-version: 20.20.0
42+
node-version: 20.20.2
4343
cache: "pnpm"
4444

4545
- name: 📥 Download deps

.github/workflows/e2e-webapp-auth-full.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
- name: ⎔ Setup node
8686
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
8787
with:
88-
node-version: 20.20.0
88+
node-version: 20.20.2
8989
cache: "pnpm"
9090

9191
- name: 🐳 Login to DockerHub

.github/workflows/e2e-webapp.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
- name: ⎔ Setup node
6060
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
6161
with:
62-
node-version: 20.20.0
62+
node-version: 20.20.2
6363
cache: "pnpm"
6464

6565
# ..to avoid rate limits when pulling images

0 commit comments

Comments
 (0)