Skip to content

Commit 308bdc4

Browse files
committed
Merge branch 'feat/self-serve-schedules-addon' of https://github.com/triggerdotdev/trigger.dev into feat/self-serve-schedules-addon
2 parents a98d9f1 + 964f4a8 commit 308bdc4

81 files changed

Lines changed: 2251 additions & 719 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.

.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

.github/workflows/e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: ⎔ Setup node
3838
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
3939
with:
40-
node-version: 20.20.0
40+
node-version: 20.20.2
4141

4242
- name: 📥 Download deps
4343
run: pnpm install --frozen-lockfile --filter trigger.dev...

0 commit comments

Comments
 (0)