release.py: tag message taken from newest commit, can misdescribe the release #188
Labels
No labels
burndown-2026-06
coherence-core
consult
headless
interactive
P0
P1
P2
P3
P4
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
coilyco-flight-deck/agentic-os#188
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
release.pyderives the annotated-tag summary from the wrong commit, so the tag message can describe a change that is not in the tagged tree.Where:
scripts/release.py, inmain():entriescomes fromcommits_since(prev)=git log {prev}..HEAD, newest first. Soentries[0]is the most recent commit subject since the last tag, picked regardless of whether it is representative of the release.Observed: the v0.14.0 tag message reads
Release v0.14.0: feat(code-comments): extend comment discipline to YAML, but that commit (177f895) is NOT in the v0.14.0 tree - it landed afterward. Confirmed:So the tag message advertises a feature the tag does not contain. Misleading for anyone reading
git tag -nor release notes to decide what a pinned rev ships.Likely contributing factor: history was rewritten (rebase) after a prior release computed the message, leaving the tag annotation describing a commit that moved. But the core issue stands: the summary should reflect the release, not a single arbitrary newest subject.
Fix options:
entries[0].Low priority / cosmetic - no functional impact on consumers. Surfaced while cutting v0.15.0 for #187.
Backlog burndown 2026-06-17: closing low-priority (P3/P4) to bring the open count to a manageable level. Nothing lost — reopen if this resurfaces. Batch tag:
burndown-2026-06.