Skip to content

Commit 47efd09

Browse files
authored
Merge branch 'main' into fix/waitpoint-completion-db-error-mislabel
2 parents 2f7fff6 + 2856662 commit 47efd09

125 files changed

Lines changed: 4701 additions & 931 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: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"@trigger.dev/core": patch
3+
"trigger.dev": patch
4+
---
5+
6+
Add experimental Node.js 24 and 26 task runtimes. Set `runtime` to `experimental-node-24` or `experimental-node-26` in `trigger.config.ts`.
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@trigger.dev/core": patch
3+
---
4+
5+
Add `defaultRegion` to the project GET and list API responses; null when unset.

.claude/rules/server-apps.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@ area: webapp
1414
type: fix
1515
---
1616
17-
Brief description of what changed and why.
17+
Fix pages occasionally loading unstyled during deploys. The dashboard now recovers automatically.
1818
EOF
1919
```
2020

2121
- **area**: `webapp` | `supervisor`
2222
- **type**: `feature` | `fix` | `improvement` | `breaking`
2323
- If the PR also touches `packages/`, just the changeset is sufficient (no `.server-changes/` needed).
24+
25+
The body ships **verbatim in user-facing release notes**. Keep it to 1–2 short sentences, non-technical, written for a dashboard user: describe what changed for them, never the implementation (no header names, endpoints, middleware, storage mechanisms, internal tools). See `.server-changes/README.md` for full guidance.

.env.example

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ LOGIN_ORIGIN=http://localhost:3030
66
DATABASE_URL=postgresql://postgres:postgres@localhost:5432/postgres?schema=public
77
# This sets the URL used for direct connections to the database and should only be needed in limited circumstances
88
# See: https://www.prisma.io/docs/reference/api-reference/prisma-schema-reference#fields:~:text=the%20shadow%20database.-,directUrl,-No
9-
DIRECT_URL=${DATABASE_URL}
9+
DIRECT_URL=postgresql://postgres:postgres@localhost:5432/postgres?schema=public
1010
# Dedicated run-ops database (@internal/run-ops-database). Only needed to run prisma commands
1111
# against it or to enable the run-ops split; start it with `docker compose --profile runops up`.
1212
RUN_OPS_DATABASE_URL=postgresql://postgres:postgres@localhost:5434/postgres?schema=public
@@ -166,4 +166,4 @@ POSTHOG_PROJECT_KEY=
166166
# Uncomment these to send metrics to the local Prometheus via OTEL Collector:
167167
# INTERNAL_OTEL_METRIC_EXPORTER_ENABLED=1
168168
# INTERNAL_OTEL_METRIC_EXPORTER_URL=http://localhost:4318/v1/metrics
169-
# INTERNAL_OTEL_METRIC_EXPORTER_INTERVAL_MS=15000
169+
# INTERNAL_OTEL_METRIC_EXPORTER_INTERVAL_MS=15000

.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: 22.23.1
39+
node-version: 24.18.0
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
@@ -44,7 +44,7 @@ jobs:
4444
- name: ⎔ Setup node
4545
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
4646
with:
47-
node-version: 22.23.1
47+
node-version: 24.18.0
4848
cache: "pnpm"
4949

5050
- name: 📥 Download deps

.github/workflows/code-quality.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: ⎔ Setup node
2626
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
2727
with:
28-
node-version: 22.23.1
28+
node-version: 24.18.0
2929
cache: "pnpm"
3030

3131
- name: 📥 Download deps

.github/workflows/dashboard-agent-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
- name: Setup node
5252
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
5353
with:
54-
node-version: 22.23.1
54+
node-version: 24.18.0
5555
cache: "pnpm"
5656

5757
- name: Install + build the CLI and the agent's 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: 22.23.1
88+
node-version: 24.18.0
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: 22.23.1
62+
node-version: 24.18.0
6363
cache: "pnpm"
6464

6565
# ..to avoid rate limits when pulling images

0 commit comments

Comments
 (0)