Skip to content

Commit 1f4c851

Browse files
Merge branch 'main' into fix/replay-payload-2813-clean
2 parents abe07b5 + 440c16c commit 1f4c851

File tree

194 files changed

+12079
-1063
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

194 files changed

+12079
-1063
lines changed

.changeset/fix-batch-queue-processing.md

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

.changeset/metal-steaks-try.md

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

.changeset/modern-boxes-watch.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
@@ -13,4 +13,5 @@ samejr
1313
isshaddad
1414
# Outside contributors
1515
gautamsi
16-
capaj
16+
capaj
17+
chengzp

.github/workflows/release.yml

Lines changed: 17 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,10 +189,25 @@ jobs:
189189
# Get current release body and replace the generic link with the tag-specific one.
190190
# Use word boundary after GENERIC_URL (closing paren) to avoid matching URLs that
191191
# already have a version ID appended (idempotent on re-runs).
192-
gh release view "${TAG}" --json body --jq '.body' > /tmp/release-body.md
192+
gh release view "${TAG}" --repo triggerdotdev/trigger.dev --json body --jq '.body' > /tmp/release-body.md
193193
sed -i "s|${GENERIC_URL})|${DOCKER_URL})|g" /tmp/release-body.md
194194
195-
gh release edit "${TAG}" --notes-file /tmp/release-body.md
195+
gh release edit "${TAG}" --repo triggerdotdev/trigger.dev --notes-file /tmp/release-body.md
196+
197+
# Dispatch changelog entry creation to the marketing site repo.
198+
# Runs after update-release so the GitHub release body already has the exact Docker image URL.
199+
dispatch-changelog:
200+
name: 📝 Dispatch changelog PR
201+
needs: [release, update-release]
202+
if: needs.release.outputs.published == 'true'
203+
runs-on: ubuntu-latest
204+
steps:
205+
- uses: peter-evans/repository-dispatch@v3
206+
with:
207+
token: ${{ secrets.CROSS_REPO_PAT }}
208+
repository: triggerdotdev/trigger.dev-site-v3
209+
event-type: new-release
210+
client-payload: '{"version": "${{ needs.release.outputs.published_package_version }}"}'
196211

197212
# The prerelease job needs to be on the same workflow file due to a limitation related to how npm verifies OIDC claims.
198213
prerelease:

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,5 @@ apps/**/public/build
6767
**/.claude/settings.local.json
6868
.mcp.log
6969
.mcp.json
70-
.cursor/debug.log
70+
.cursor/debug.log
71+
ailogger-output.log

.server-changes/batch-queue-perf-fixes.md

Lines changed: 0 additions & 10 deletions
This file was deleted.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
area: webapp
3+
type: feature
4+
---
5+
6+
Added `/engine/v1/dev/disconnect` endpoint to auto-cancel runs when the CLI disconnects. Maximum of 500 runs can be cancelled. Uses the bulk action system when there are more than 25 runs to cancel.

.server-changes/fix-blocking-waitpoint-race-condition.md

Lines changed: 0 additions & 6 deletions
This file was deleted.
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+
Strip `secure` query parameter from QUERY_CLICKHOUSE_URL before passing to ClickHouse client. This was already done for the main and logs ClickHouse clients but was missing for the query client, causing a startup crash with `Error: Unknown URL parameters: secure`.

0 commit comments

Comments
 (0)