Rust Xpra Feature Changelog
Generate concise, feature-only release notes from commits after a requested base release.
Workflow
Read
CHANGELOG.md, inspectgit status --short, and preserve unrelated worktree changes.Resolve the requested release to the actual tag. Account for version/tag differences such as release
0.2.0being taggedv0.2.Use every commit reachable from the base tag through
HEAD. If an intermediate release such as0.2.1has no tag, do not omit its changes; the fullBASE..HEADrange already includes them.Inspect commit subjects, bodies, stats, and relevant diffs. Use README or capability changes as supporting evidence. Do not classify from subjects alone.
Include commits that add a capability users, servers, packagers, or supported environments can use, including:
- protocol, authentication, compression, or remote-integration support;
- image/video encoding support;
- window, cursor, notification, bell, desktop, or other client behavior;
- new platform, build, linking, or packaging options.
Exclude:
- bug fixes and corrections to existing behavior;
- graceful failure or error-handling changes;
- resource cleanup and decoder lifecycle fixes;
- refactoring, file moves, helper extraction, and code cleanup;
- warning-level, formatting, diagnostic, or debug-log-only changes.
Preserve the current release heading, category names, emoji, indentation, and wording style. Do not change the release version or date unless requested.
Write each entry as a short imperative capability description with a full commit link:
* 🖧 Network: * [send `ping` packets](https://github.com/Xpra-org/rust-xpra/commit/FULL_HASH)Put entries under the most specific existing category:
🔧 Platforms, build and packaging🖧 Network🌈 Encodings✨ Features
Reuse a commit in more than one category only when it delivers genuinely distinct facets, such as an encoding plus a packaging/linking option.
Leave excluded commits out of
CHANGELOG.md; do not add a fixes or refactoring section.
Validation
Compare the final entries with the complete
BASE..HEADcommit list and confirm every included commit is a feature.Verify every linked full hash resolves to a commit.
Run:
git diff --check -- CHANGELOG.md git diff -- CHANGELOG.mdConfirm only
CHANGELOG.mdand intentional skill files changed during this task.