From 5194cc8050cbb4e75ee4d72a96907fc58824abf8 Mon Sep 17 00:00:00 2001 From: Michael Suchacz <203725896+ibetitsmike@users.noreply.github.com> Date: Fri, 27 Feb 2026 10:41:02 +0100 Subject: [PATCH] chore(dogfood): bump Mux to 1.3.0, use next channel and bun runner (#22357) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bump the Mux module in the dogfood template: - Version: 1.1.0 → 1.3.0 - `install_version`: set to `"next"` - `runner`: set to `"bun"` --- dogfood/coder/main.tf | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/dogfood/coder/main.tf b/dogfood/coder/main.tf index 3d4957a94d..9492495856 100644 --- a/dogfood/coder/main.tf +++ b/dogfood/coder/main.tf @@ -373,13 +373,15 @@ module "personalize" { } module "mux" { - count = data.coder_workspace.me.start_count - source = "registry.coder.com/coder/mux/coder" - version = "1.1.0" - agent_id = coder_agent.dev.id - subdomain = true - display_name = "Mux" - add-project = local.repo_dir + count = data.coder_workspace.me.start_count + source = "registry.coder.com/coder/mux/coder" + version = "1.3.0" + agent_id = coder_agent.dev.id + subdomain = true + display_name = "Mux" + add-project = local.repo_dir + install_version = "next" + package_manager = "bun" } module "code-server" {