Skip to content

Tags: triggerdotdev/trigger.dev

Tags

v4.5.12

Toggle v4.5.12's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: release v4.5.12 (#4610)

v.docker.4.5.12

Toggle v.docker.4.5.12's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: release v4.5.12 (#4610)

helm-v4.5.12

Toggle helm-v4.5.12's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore: release v4.5.12 (#4610)

re2-test-supervisor-tri-13357

Toggle re2-test-supervisor-tri-13357's commit message

Verified

This commit was signed with the committer’s verified signature.
myftija Saadi Myftija
chore(supervisor): format test file with oxfmt

re2-test-supervisor-security-context

Toggle re2-test-supervisor-security-context's commit message
fix(supervisor): pin the uid at the restricted level

re2-test-supervisor-seccomp-profile-config

Toggle re2-test-supervisor-seccomp-profile-config's commit message
feat(supervisor): gate the runner seccomp profile by runtime scope

re2-test-supervisor-runtime-uid

Toggle re2-test-supervisor-runtime-uid's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat(supervisor): configurable security context for run pods

Adds KUBERNETES_RUNNER_SECURITY_CONTEXT (off | baseline | restricted), selecting how constrained the run container is.

baseline drops the capability bounding set and blocks privilege escalation. restricted additionally pins the container to a non-root uid, chosen by runtime so bun images get their own.

Default is off, so this is inert on merge.

re2-test-supervisor-main-cffaa05

Toggle re2-test-supervisor-main-cffaa05's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat(supervisor): optional priority class for run pods (#4671)

Adds an optional priority class for run pods.

```
KUBERNETES_RUN_POD_PRIORITY_CLASS_NAME
```

When set, the value is applied as `priorityClassName` on the run pod
spec. When unset, pods are created exactly as before.

Off by default, and inert unless set. It sits beside the existing
`KUBERNETES_SCHEDULER_NAME` option and follows the same conditional
shape:

```ts
...(env.KUBERNETES_RUN_POD_PRIORITY_CLASS_NAME
  ? { priorityClassName: env.KUBERNETES_RUN_POD_PRIORITY_CLASS_NAME }
  : {}),
```

## Verification

`typecheck --filter supervisor`, `format` and `lint` clean. No changeset
or `.server-changes/` note: off by default, no user-visible behaviour
change.

re2-test-supervisor-main-2496a8a8

Toggle re2-test-supervisor-main-2496a8a8's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat(supervisor): optional image registry rewrite for run pods

Adds two optional env vars that rewrite the registry host of run pod images at pod creation, so a supervisor can pull from a registry in its own region. Off by default and inert unless both are set. Exact host-prefix matching, so look-alike hosts pass through untouched.

re2-test-supervisor-2026-08-18

Toggle re2-test-supervisor-2026-08-18's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat(supervisor): optional image registry rewrite for run pods

Adds two optional env vars that rewrite the registry host of run pod images at pod creation, so a supervisor can pull from a registry in its own region. Off by default and inert unless both are set. Exact host-prefix matching, so look-alike hosts pass through untouched.