Skip to content
Closed
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
4 changes: 2 additions & 2 deletions changelog/2026-08-26-browser-extension-1-0.mdx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---
title: "Browser Extension 1.0.0 : Out of beta"
title: "Browser Extension 1.0.0: Out of beta"
description: "The Trunk browser extension graduates from beta with more reliable queue controls, clearer failure details, and groundwork for expanding Merge Queue beyond GitHub."
slug: "browser-extension-1-0"
date: "2026-08-26T00:00:00.000Z"
date: 2026-08-26
category: "Merge Queue"
type: "update"
---
Expand Down
20 changes: 20 additions & 0 deletions changelog/2026-08-27-dynamic-ci-private-beta.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
title: "Dynamic CI: Private beta"
description: "Dynamic CI is now in private beta — skip the CI jobs your diff doesn't need, using your own repository's history instead of hand-written path globs."
slug: dynamic-ci-private-beta
date: 2026-08-27
category: Dynamic CI
type: new-feature
---

**Dynamic CI is now in private beta.**

Most CI runs are wasted: a docs-only change doesn't need the integration suite. Path filters help, but hand-written globs are coarse and go stale. Dynamic CI decides which jobs to run from evidence instead, using your repository's own history of which file changes have broken which jobs.

- **Near drop-in for path filters.** The [`trunk-io/dynamic-ci-filter`](https://github.com/trunk-io/dynamic-ci-filter) GitHub Action emits a per-job verdict you gate on, much like `dorny/paths-filter`.
- **Auditable verdicts.** Every signal behind a skip-or-run decision is printed in the job logs and job summary.
- **Fails open.** If the service is unreachable or a job has no verdict, the job runs. A degraded response never silently skips your tests.
- **Merge queue safe.** Jobs on Trunk Merge Queue branches are never skipped, so the queue always validates the exact commit about to land.
- **Your data only.** Recommendations are derived solely from your organization's CI history. Nothing is pooled across customers.

Beta participants can find setup instructions in the [Dynamic CI docs](/dynamic-ci). Want in? Reach out on [Slack](https://slack.trunk.io).
8 changes: 7 additions & 1 deletion changelog/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,14 @@ rss: true

### August 2026

<Update label="August 27, 2026" tags={["Dynamic CI"]}>
**[Dynamic CI: Private beta](/changelog/2026-08-27-dynamic-ci-private-beta)**

Dynamic CI is now in private beta — skip the CI jobs your diff doesn't need, using your own repository's history instead of hand-written path globs.
</Update>

<Update label="August 26, 2026" tags={["Merge Queue"]}>
**[Browser Extension 1.0: Out of beta](/changelog/2026-08-26-browser-extension-1-0)**
**[Browser Extension 1.0.0: Out of beta](/changelog/2026-08-26-browser-extension-1-0)**

The Trunk browser extension graduates from beta with more reliable queue controls, clearer failure details, and groundwork for expanding Merge Queue beyond GitHub.
</Update>
Expand Down
1 change: 1 addition & 0 deletions docs.json
Original file line number Diff line number Diff line change
Expand Up @@ -636,6 +636,7 @@
{
"group": "August",
"pages": [
"changelog/2026-08-27-dynamic-ci-private-beta",
"changelog/2026-08-26-browser-extension-1-0",
"changelog/2026-08-11-flaky-tests-asana-ticketing"
]
Expand Down
2 changes: 1 addition & 1 deletion merge-queue/changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ og:title: "Trunk Merge Queue changelog"
### August 2026

<Update label="August 26, 2026" tags={["Merge Queue"]}>
**[Browser Extension 1.0: Out of beta](/changelog/2026-08-26-browser-extension-1-0)**
**[Browser Extension 1.0.0: Out of beta](/changelog/2026-08-26-browser-extension-1-0)**

The Trunk browser extension graduates from beta with more reliable queue controls, clearer failure details, and groundwork for expanding Merge Queue beyond GitHub.
</Update>
Expand Down
Loading