From 75841b8cfd5e8cf3a1b1a982af284d0940e65d3d Mon Sep 17 00:00:00 2001 From: Naiyuan Qing <145280634+NevilleQingNY@users.noreply.github.com> Date: Tue, 23 Jun 2026 10:38:10 +0800 Subject: [PATCH] chore(agent): bump handoff note min CLI version to 0.3.28 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The daemon release that renders handoff notes ships in 0.3.28 (0.3.27 was the prior tag), so move the soft-gate threshold up. Below this the note is silently dropped and the frontend grays the note box — assignment is never blocked. Co-Authored-By: Claude Opus 4.8 (1M context) --- server/pkg/agent/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/pkg/agent/version.go b/server/pkg/agent/version.go index c50b24919e..93c8dbc3d5 100644 --- a/server/pkg/agent/version.go +++ b/server/pkg/agent/version.go @@ -33,7 +33,7 @@ const MinQuickCreateCLIVersion = "0.2.21" // note is simply dropped. The frontend reads HandoffSupported to gray out the // note box and warn the user, so they aren't surprised by a silently ignored // note. Bump this to the release that actually ships the daemon rendering. -const MinHandoffCLIVersion = "0.3.27" +const MinHandoffCLIVersion = "0.3.28" // HandoffSupported reports whether a daemon reporting cliVersion is new enough // to render handoff notes. Reuses the CheckMinCLIVersion parsing (including the