Skip to content

fix(release): ignore prerelease tags in changelog generation#1021

Merged
wpfleger96 merged 1 commit into
mainfrom
worktree-wpfleger+ignore-prerelease-tags-in-release
Jun 12, 2026
Merged

fix(release): ignore prerelease tags in changelog generation#1021
wpfleger96 merged 1 commit into
mainfrom
worktree-wpfleger+ignore-prerelease-tags-in-release

Conversation

@wpfleger96

@wpfleger96 wpfleger96 commented Jun 12, 2026

Copy link
Copy Markdown
Collaborator

git describe --match 'v[0-9]*' matched the throwaway v0.0.0-test.1 tag as LAST_TAG since it sat between v0.3.18 and HEAD. The v0.3.19 changelog then started from that commit, silently dropping all commits merged between v0.3.18 and the test tag.

Add --exclude '*-*' to the git describe call in the release recipe so only stable vX.Y.Z tags anchor the changelog range. Stable tags never contain a hyphen; prerelease tags always do. The v0.0.0-test.1 tag stays on origin as a live fixture confirming the fix holds.

  • justfile: --match 'v[0-9]*'--match 'v[0-9]*' --exclude '*-*'

Follows up on #1013.

git describe --match 'v[0-9]*' matched the throwaway v0.0.0-test.1 tag,
causing LAST_TAG to resolve to it instead of v0.3.18. The v0.3.19
changelog then started from that commit, silently dropping all commits
merged between v0.3.18 and the test tag.

Add --exclude '*-*' so stable vX.Y.Z tags are the only changelog anchors.
Prerelease tags (per semver, any -suffix) are never anchors. The test tag
stays on origin as a live fixture confirming this fix holds.

Follows up on #1013.
@wpfleger96 wpfleger96 force-pushed the worktree-wpfleger+ignore-prerelease-tags-in-release branch from 4dbf9a1 to 5e5b0c3 Compare June 12, 2026 22:36
@wpfleger96 wpfleger96 changed the title fix(release): ignore prerelease tags in changelog generation and latest-marking fix(release): ignore prerelease tags in changelog generation Jun 12, 2026
@wpfleger96 wpfleger96 merged commit faf0072 into main Jun 12, 2026
18 checks passed
@wpfleger96 wpfleger96 deleted the worktree-wpfleger+ignore-prerelease-tags-in-release branch June 12, 2026 22:36
tlongwell-block pushed a commit that referenced this pull request Jun 13, 2026
* origin/main: (33 commits)
  fix(desktop): make Windows release compile cleanly (#1029)
  Add production Docker Compose bundle (#985)
  feat(profile): show active turn badges on agent profile panel and popover (#1026)
  chore(release): release version 0.3.20 (#1027)
  fix(release): resolve Windows sidecar path and Linux AppImage updater format (#1024)
  chore(release): release version 0.3.19 (#1014)
  fix(release): ignore prerelease tags in changelog generation (#1021)
  fix: repair main build after cross-PR merge skew (#1020)
  feat(agents): show per-turn duration and prune dead turns within ~25s of host crash (#1017)
  fix(release): replace hermit with native tool setup on Windows job (#1018)
  feat(acp): surface error-class outcomes to the activity feed only, never the channel (#1010)
  fix(desktop): migrate Sprout workspace storage (#1016)
  feat(auth): force token refresh on rejected token (401/403), never the browser (#1015)
  fix(release): mark prerelease versions so they do not become latest (#1013)
  feat(acp): implement systemPrompt with protocol version gating (#981)
  fix(release): update repository name check from block/sprout to block/buzz (#1012)
  feat(release): all-OS desktop builds + universal auto-update manifest (#1011)
  Add relay disconnect UX: friendly errors, reconnect, cached identity (#1004)
  feat(agents): add active turn indicators to Agents Menu (#1005)
  ci: add fork guards to docker, release, and auto-tag workflows (#1007)
  ...

Co-authored-by: npub1t2tgm7d8f995uqvmnm8h88sg3wnpp9a5xysjf6dg3tjmgt3ltulqdp8ehr <5a968df9a7494b4e019b9ecf739e088ba61097b4312124e9a88ae5b42e3f5f3e@sprout-oss.stage.blox.sqprod.co>
Signed-off-by: npub1t2tgm7d8f995uqvmnm8h88sg3wnpp9a5xysjf6dg3tjmgt3ltulqdp8ehr <5a968df9a7494b4e019b9ecf739e088ba61097b4312124e9a88ae5b42e3f5f3e@sprout-oss.stage.blox.sqprod.co>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant