Conversation
The reporter-finding step piped `grep -oE '#[0-9]+'` into `sort -un`. Because every line starts with `#` (not a digit), numeric sort read them all as 0, so `-u` collapsed the entire list to a single ref — the "PRIMARY" step for crediting issue reporters silently surfaced only one issue. Sort on the numeric field after `#` instead, which dedups correctly and keeps numeric ordering. Found while cutting v0.65.0: the range referenced 15 issues/PRs but the command reported only #3350, nearly dropping @caillou's credit for reporting #3343. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
worktrunk-bot
approved these changes
Jul 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Release v0.65.0. Version bump plus the 0.65.0 changelog section.
User-facing changes in this release:
alt-xflashes why a worktree wasn't removed (feat(picker): surface alt-x decline reasons in the header #3336, feat(picker): flash alt-x removal-failure reasons in the header #3350) — the keep/failure reason now appears in the picker header instead of only draining to stderr on exit.-vvdiagnostics consolidate ondiagnostic.md, led by the performance profile (Consolidate -vv notifications onto diagnostic.md, led by the performance profile #3329). This entry's bullet was previously misfiled under the already-released0.63.0section (the PR merged after0.64.0was tagged); this release moves it into0.65.0, where the change actually ships, and drops a misleading "removedprofile.txt" clause for a file that never existed.wt removepreserves your subdirectory position (fix: preserve subdirectory position on wt remove #3344, closeswt removeshould probably preserve the current working directory #3343, thanks @caillou for reporting).Also included: a fix to the release skill's reporter-finding grep —
sort -unon#-prefixed lines collapsed the whole issue-reference list to a single entry (every line sorts as numeric 0), which nearly dropped @caillou's credit. Now sorts on the numeric field after#.The nightly cross-platform suite (full-tests linux/macos/windows, feature-powerset, release-target, nix-flake, minimal-versions) passed green on the cut-from tip before this PR was opened.