From 4dd009c155117aac12e6411514cb621738f335a3 Mon Sep 17 00:00:00 2001 From: Ulzii Otgonbaatar Date: Tue, 26 May 2026 13:59:47 -0600 Subject: [PATCH] Bump Cloud Hypervisor default to v51.1 New instances will use CH v51.1 instead of v49.0. Both binaries remain embedded so existing v49.0 standby instances can still restore using their stored version. v49.0 can be removed from SupportedVersions once all v49.0 standbys have drained. Co-authored-by: Cursor --- lib/vmm/binaries_darwin.go | 2 +- lib/vmm/binaries_linux.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/vmm/binaries_darwin.go b/lib/vmm/binaries_darwin.go index f91decb4..5c46eaf5 100644 --- a/lib/vmm/binaries_darwin.go +++ b/lib/vmm/binaries_darwin.go @@ -16,7 +16,7 @@ const ( V51_1 CHVersion = "v51.1" ) -const DefaultVersion = V49_0 +const DefaultVersion = V51_1 // SupportedVersions lists supported Cloud Hypervisor versions. // On macOS, Cloud Hypervisor is not supported (use vz instead). diff --git a/lib/vmm/binaries_linux.go b/lib/vmm/binaries_linux.go index 620e1d08..6856b789 100644 --- a/lib/vmm/binaries_linux.go +++ b/lib/vmm/binaries_linux.go @@ -26,7 +26,7 @@ const ( V51_1 CHVersion = "v51.1" ) -const DefaultVersion = V49_0 +const DefaultVersion = V51_1 var SupportedVersions = []CHVersion{V49_0, V51_1}