From 942af56f11cbd8466e25ae189c65ba56a9ddd602 Mon Sep 17 00:00:00 2001 From: Tejas Chopra Date: Sun, 16 Aug 2026 20:14:30 -0700 Subject: [PATCH] fix(ccr): re-inject headroom_retrieve when history references it on the sessionless path Changelog-only correction. The work shipped in commit d6d121e3 via PR #2533 but is absent from the generated CHANGELOG. Its subject is valid Conventional Commit. The parse failure is in the message body, where release-please reports `unexpected token` at line 99 column 48 and says it expected a closing parenthesis. Line 99 opens a parenthesis in a code reference and the line ends before it closes, so the parser reaches a newline mid-expression and rejects the whole commit. This is a distinct failure class from the one PR #3063 guards. That gate validates PR titles; this commit's title was already correct. A malformed body can still drop a change from the changelog, and on squash-merge the body is assembled from the PR description, which nothing validates. This empty commit restores the entry. It changes no code; d6d121e3 remains the commit that carries the change. Refs: #2533, #2440