Files
codewhale/scripts/sync-changelog.sh
T
Hunter B 44c13eb63f fix(release): check-versions validates the generated TUI changelog slice, not byte equality
The packaged changelog is now a recent-releases slice produced by
scripts/sync-changelog.sh (which gains a --check mode); also restore the
SECURITY.md contact line the version gate guards, and finish the stale
binary-name sweep (--bin codewhale examples, qa harness doc).
2026-06-09 23:32:40 -07:00

42 lines
1.4 KiB
Bash
Executable File

#!/usr/bin/env sh
# Regenerate crates/tui/CHANGELOG.md from the workspace root CHANGELOG.md.
# The /change command embeds this file into the binary via include_str!, so
# it deliberately keeps only the most recent release sections.
#
# Usage: scripts/sync-changelog.sh [--check] [sections-to-keep]
# --check verify crates/tui/CHANGELOG.md is up to date without writing
# (exit 1 if regeneration would change it)
# sections-to-keep defaults to 15
set -eu
CHECK=0
if [ "${1:-}" = "--check" ]; then
CHECK=1
shift
fi
KEEP="${1:-15}"
root="$(cd "$(dirname "$0")/.." && pwd)"
tmp="$(mktemp)"
trap 'rm -f "$tmp"' EXIT
awk -v keep="$KEEP" '
/^\[/ && /\]: http/ { exit }
/^## \[/ { count++ }
count > keep { exit }
{ print }
' "$root/CHANGELOG.md" > "$tmp"
printf '%s\n' \
'---' \
'' \
'Older releases: [CHANGELOG.md](https://github.com/Hmbown/CodeWhale/blob/main/CHANGELOG.md) and [docs/CHANGELOG_ARCHIVE.md](https://github.com/Hmbown/CodeWhale/blob/main/docs/CHANGELOG_ARCHIVE.md).' \
>> "$tmp"
if [ "$CHECK" = 1 ]; then
if cmp -s "$tmp" "$root/crates/tui/CHANGELOG.md"; then
echo "crates/tui/CHANGELOG.md is up to date"
else
echo "crates/tui/CHANGELOG.md is out of date; run scripts/sync-changelog.sh" >&2
exit 1
fi
else
cp "$tmp" "$root/crates/tui/CHANGELOG.md"
echo "wrote crates/tui/CHANGELOG.md ($(wc -l < "$root/crates/tui/CHANGELOG.md") lines, $KEEP sections kept)"
fi