From f50a005cefaac231f03acef750b63cddef1b45aa Mon Sep 17 00:00:00 2001 From: "claude[bot]" <41898282+claude[bot]@users.noreply.github.com> Date: Thu, 11 Dec 2025 23:33:30 +0000 Subject: [PATCH] feat: add feature/bun-executable to branch selector MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add feature/bun-executable to the allowed branches list in the Version Channel selector, enabling users to switch to this branch from the settings UI. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Alex Newman --- src/services/worker/http/routes/SettingsRoutes.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/worker/http/routes/SettingsRoutes.ts b/src/services/worker/http/routes/SettingsRoutes.ts index f4fe8a1d..bf4a8584 100644 --- a/src/services/worker/http/routes/SettingsRoutes.ts +++ b/src/services/worker/http/routes/SettingsRoutes.ts @@ -211,7 +211,7 @@ export class SettingsRoutes extends BaseRouteHandler { } // Validate branch name - const allowedBranches = ['main', 'beta/7.0']; + const allowedBranches = ['main', 'beta/7.0', 'feature/bun-executable']; if (!allowedBranches.includes(branch)) { res.status(400).json({ success: false,