Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@
"updateInternalDependencies": "patch",
"ignore": [
"webapp",
"coordinator",
"docker-provider",
"kubernetes-provider",
"supervisor"
],
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": {
Expand Down
5 changes: 5 additions & 0 deletions .changeset/wild-v3-provider-helpers.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@trigger.dev/core": patch
---

Removed internal helpers that were only used by the end-of-life v3 self-hosted compute providers.
Comment thread
nicktrn marked this conversation as resolved.
4 changes: 2 additions & 2 deletions .claude/rules/server-apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ paths:

# Server App Changes

When modifying server apps (webapp, supervisor, coordinator, etc.) with **no package changes**, add a `.server-changes/` file instead of a changeset:
When modifying server apps (webapp, supervisor, etc.) with **no package changes**, add a `.server-changes/` file instead of a changeset:

```bash
cat > .server-changes/descriptive-name.md << 'EOF'
Expand All @@ -18,6 +18,6 @@ Brief description of what changed and why.
EOF
```

- **area**: `webapp` | `supervisor` | `coordinator` | `kubernetes-provider` | `docker-provider`
- **area**: `webapp` | `supervisor`
- **type**: `feature` | `fix` | `improvement` | `breaking`
- If the PR also touches `packages/`, just the changeset is sufficient (no `.server-changes/` needed).
3 changes: 0 additions & 3 deletions .cursorignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
apps/docker-provider/
apps/kubernetes-provider/
apps/proxy/
apps/coordinator/
packages/rsc/
.changeset
.zed
Expand Down
105 changes: 0 additions & 105 deletions .github/workflows/publish-worker.yml

This file was deleted.

14 changes: 0 additions & 14 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ on:
- ".github/workflows/unit-tests.yml"
- ".github/workflows/e2e.yml"
- ".github/workflows/publish-webapp.yml"
- ".github/workflows/publish-worker.yml"
- "packages/**"
- "!packages/**/*.md"
- "!packages/**/*.eslintrc"
Expand Down Expand Up @@ -80,19 +79,6 @@ jobs:
# to its own namespace; set the IMAGE_REGISTRY repository variable to override.
image_registry: ${{ vars.IMAGE_REGISTRY || format('ghcr.io/{0}', github.repository_owner) }}

publish-worker:
needs: [typecheck]
permissions:
contents: read
packages: write
uses: ./.github/workflows/publish-worker.yml
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
with:
image_tag: ${{ inputs.image_tag }}
image_registry: ${{ vars.IMAGE_REGISTRY || format('ghcr.io/{0}', github.repository_owner) }}

publish-worker-v4:
needs: [typecheck]
permissions:
Expand Down
6 changes: 3 additions & 3 deletions .server-changes/README.md
Comment thread
nicktrn marked this conversation as resolved.
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Server Changes

This directory tracks changes to server-only components (webapp, supervisor, coordinator, etc.) that are not captured by changesets. Changesets only track published npm packages — server changes would otherwise go undocumented.
This directory tracks changes to server-only components (webapp, supervisor, etc.) that are not captured by changesets. Changesets only track published npm packages — server changes would otherwise go undocumented.

## When to add a file

**Server-only PRs**: If your PR only changes `apps/webapp/`, `apps/supervisor/`, `apps/coordinator/`, or other server components (and does NOT change anything in `packages/`), add a `.server-changes/` file.
**Server-only PRs**: If your PR only changes `apps/webapp/`, `apps/supervisor/`, or other server components (and does NOT change anything in `packages/`), add a `.server-changes/` file.
Comment thread
nicktrn marked this conversation as resolved.

**Mixed PRs** (both packages and server): Just add a changeset as usual. No `.server-changes/` file needed — the changeset covers it.

Expand All @@ -31,7 +31,7 @@ Speed up batch queue processing by removing stalls and fixing retry race

### Fields

- **area** (required): `webapp` | `supervisor` | `coordinator` | `kubernetes-provider` | `docker-provider`
- **area** (required): `webapp` | `supervisor`
- **type** (required): `feature` | `fix` | `improvement` | `breaking`

### Description
Expand Down
2 changes: 1 addition & 1 deletion CHANGESETS.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Speed up batch queue processing by removing stalls and fixing retry race
EOF
```

- `area`: `webapp` | `supervisor` | `coordinator` | `kubernetes-provider` | `docker-provider`
- `area`: `webapp` | `supervisor`
- `type`: `feature` | `fix` | `improvement` | `breaking`

For **mixed PRs** (both packages and server): just add a changeset. No `.server-changes/` file needed.
Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Comment thread
nicktrn marked this conversation as resolved.
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ Most of the time the changes you'll make are likely to be categorized as patch r

## Adding server changes

Changesets only track published npm packages. If your PR only changes server components (`apps/webapp/`, `apps/supervisor/`, `apps/coordinator/`, etc.) with no package changes, add a `.server-changes/` file so the change appears in release notes.
Changesets only track published npm packages. If your PR only changes server components (`apps/webapp/`, `apps/supervisor/`, etc.) with no package changes, add a `.server-changes/` file so the change appears in release notes.

Create a markdown file with a descriptive name:

Expand All @@ -281,7 +281,7 @@ EOF
```

**Fields:**
- `area` (required): `webapp` | `supervisor` | `coordinator` | `kubernetes-provider` | `docker-provider`
- `area` (required): `webapp` | `supervisor`
- `type` (required): `feature` | `fix` | `improvement` | `breaking`

The body text (below the frontmatter) is a one-line description of the change. Keep it concise — it will appear in release notes.
Expand Down
4 changes: 0 additions & 4 deletions apps/coordinator/.env.example

This file was deleted.

3 changes: 0 additions & 3 deletions apps/coordinator/.gitignore

This file was deleted.

60 changes: 0 additions & 60 deletions apps/coordinator/Containerfile

This file was deleted.

3 changes: 0 additions & 3 deletions apps/coordinator/README.md

This file was deleted.

30 changes: 0 additions & 30 deletions apps/coordinator/package.json

This file was deleted.

Loading
Loading