feat(scripts): carry aionrs changelog into the bump PR - #703
Merged
Conversation
piorpua
pushed a commit
that referenced
this pull request
Jul 29, 2026
🤖 I have created a release *beep* *boop* --- ## [0.1.54](v0.1.53...v0.1.54) (2026-07-29) ### Features * multi-account user scope isolation ([#669](#669)) ([7f8ed6c](7f8ed6c)) * **project:** Project Explorer backend (runtime, WS monitor, HTTP) ([#701](#701)) ([0a79100](0a79100)) * **scripts:** carry aionrs changelog into the bump PR ([#703](#703)) ([f34cfb6](f34cfb6)) ### Code Refactoring * **acp:** upgrade agent-client-protocol SDK 0.11.1 -> 2.0.0 ([#708](#708)) ([9e185f0](9e185f0)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
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.
What
Enhance
just update-aionrsso bumping the embedded aionrs engine also surfaces aionrs's own feat/fix/perf changes in AionCore's release notes.Previously the bump landed as a hidden
chore(deps)commit, so aionrs's user-facing changes never reached AionCore's release-please CHANGELOG, even though aionrs is the core agent/provider engine.How
aionrs-changelog-footer.sh/.ps1): read aionrs commit subjects, keep only feat/fix/perf, rewrite the scope toengine, dedupe, and group by type.update-aionrs.sh/.ps1: preflight checks, bump the six Cargo.toml tags,cargo check, pull theold...newrange viagh api compare, then open a PR whose body carries the transformed entries as a conventional-commit footer.squash_message=PR_BODY, release-please reads those footer lines from the squashed commit and files them under Features / Bug Fixes automatically.just push(full pre-push gate); on gate failure the branch stays local and no PR is opened, since a failing bump usually needs adaptation code.Test plan
.ps1parity mirrors the bash logic line for line; pwsh was not available locally, so runpwsh -File scripts/just/aionrs-changelog-footer.test.ps1on Windows to confirm.