Skip to content

Commit 8b7eace

Browse files
authored
Merge branch 'main' into fix/external-trace-id-per-run
2 parents 6efeb47 + 2496a8a commit 8b7eace

855 files changed

Lines changed: 69253 additions & 10984 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: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"trigger.dev": patch
3+
---
4+
5+
New projects created with `trigger init` use Node.js 24 by default. Deployments without explicit `runtime` now use their project's configured default runtime.

.env.example

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ NODE_ENV=development
2323
CLICKHOUSE_URL=http://default:password@localhost:8123
2424
RUN_REPLICATION_CLICKHOUSE_URL=http://default:password@localhost:8123
2525
RUN_REPLICATION_ENABLED=1
26+
# LOGS_SEARCH_PROJECTOR_ENABLED=1
27+
# LOGS_SEARCH_PROJECTOR_PREVIEW_ENABLED=1
2628
# Store task run spans/traces in ClickHouse so the dashboard trace view is
2729
# populated in local dev. The local stack is ClickHouse-backed (see above), so
2830
# leaving this unset falls back to the "postgres" store and dev run traces show

.github/VOUCHED.td

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,5 @@ brentshulman-silkline
2828
Leafgard
2929
Rohan170603
3030
NERLOE
31-
Jakub-Vacek
31+
Jakub-Vacek
32+
gtremper

.github/workflows/code-quality.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,3 +36,6 @@ jobs:
3636

3737
- name: 🔎 Lint
3838
run: pnpm exec oxlint .
39+
40+
- name: ✂️ Check unused code and dependencies
41+
run: pnpm run knip

.oxfmtrc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"**/storybook-static/",
2222
"**/.changeset/",
2323
"**/dist/",
24+
"**/.worktrees/",
2425
"internal-packages/tsql/src/grammar/",
2526
"internal-packages/llm-model-catalog/src/defaultPrices.ts",
2627
"internal-packages/llm-model-catalog/src/modelCatalog.ts",

.oxlintrc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"ignorePatterns": [
1313
"**/dist/**",
1414
"**/build/**",
15+
"**/.worktrees/**",
1516
"**/*.d.ts",
1617
"**/seed.js",
1718
"**/seedCloud.ts",
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
area: webapp
3+
type: fix
4+
---
5+
6+
Failed AI SDK tool call and embedding spans now show the error message and stack trace in the run inspector, below the tool input.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
area: webapp
3+
type: fix
4+
---
5+
6+
Using `*` as a concurrency key no longer stops a queue from being processed. Triggering a single run with that key could leave the whole queue stalled, including runs using other concurrency keys on it, until something else was triggered on the same queue.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
area: webapp
3+
type: fix
4+
---
5+
6+
Fixed a brief window after promoting or rolling back a deployment where newly triggered runs could still execute on the previous version. New runs now pick up the current version immediately.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
area: webapp
3+
type: improvement
4+
---
5+
6+
Global log search now supports faster bounded substring matching and clearer time-range expansion.

0 commit comments

Comments
 (0)