Skip to content

Commit 684b0d9

Browse files
committed
Merge remote-tracking branch 'origin/main' into samejr/thinking-orbs-storybook
2 parents dd4cd07 + b42e5c3 commit 684b0d9

391 files changed

Lines changed: 30620 additions & 5194 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.

.changeset/chat-agent-preserve-partial-on-stream-failure.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": patch
3+
---
4+
5+
You can now choose the region a run executes in when triggering a task through the MCP server.
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+
Transient connection errors when a run starts are now retried for longer, so a brief connectivity blip no longer sends the run back through the queue and delays its first attempt.

.github/workflows/check-review-md.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
with:
3939
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
4040
use_sticky_comment: true
41-
allowed_bots: "devin-ai-integration[bot]"
41+
allowed_bots: "devin-ai-integration[bot],claude[bot]"
4242

4343
claude_args: |
4444
--max-turns 30

.github/workflows/claude-md-audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
with:
4141
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY }}
4242
use_sticky_comment: true
43-
allowed_bots: "devin-ai-integration[bot]"
43+
allowed_bots: "devin-ai-integration[bot],claude[bot]"
4444

4545
claude_args: |
4646
--max-turns 25

.github/workflows/dependabot-critical-alerts.yml

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

.github/workflows/dependabot-weekly-summary.yml

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

.github/workflows/typecheck.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,19 @@ jobs:
2323
version: 10.33.2
2424

2525
- name: ⎔ Setup node
26-
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
26+
uses: WarpBuilds/setup-node@bc639b444d583175926b588962199c247d23e8d3 # v6
2727
with:
2828
node-version: 24.18.0
2929
cache: "pnpm"
3030

31+
- name: Restore Turbo cache
32+
uses: WarpBuilds/cache@40f3443ae7b70e568d6e2070ea897f3df94d7553 # v1
33+
with:
34+
path: node_modules/.cache/turbo
35+
key: turbo-typecheck-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}-${{ github.sha }}
36+
restore-keys: |
37+
turbo-typecheck-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}-
38+
3139
- name: 📥 Download deps
3240
run: pnpm install --frozen-lockfile
3341

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,3 +79,6 @@ ailogger-output.log
7979

8080
# local git worktree checkouts (not source) — keeps oxfmt/oxlint from descending into them
8181
.worktrees/
82+
83+
# local planning/design docs, not committed
84+
**/docs/superpowers/
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+
Batch triggers no longer fail to start their runs when an environment is under heavy API load. If a batch still can't finish being created, `batchTriggerAndWait` now fails with an error instead of leaving the parent run waiting forever, and the batches page says so rather than reporting that it resumed.

0 commit comments

Comments
 (0)