docs(changelog): reconcile [Unreleased] with PRs merged since v0.21.0#1871
Merged
Conversation
Add the user-facing PRs merged after the v0.21.0 tag that were missing from the changelog (#1830 Added; #1854, #1856 Fixed), add the external- contributor credit on #1855, and move #1853 out of the released [0.21.0] section into [Unreleased] since it merged after the v0.21.0 tag. No version bump -- everything stays under [Unreleased]. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates CHANGELOG.md to make the [Unreleased] section accurately reflect PRs merged since the v0.21.0 tag, without cutting a release or introducing a new dated version heading.
Changes:
- Add a new
[Unreleased]### Addedentry for #1830 (org-policy repo discovery cascade + ADO Items API). - Add missing
[Unreleased]### Fixedentries for #1854 and #1856, and add missing external-contributor attribution for #1855. - Move the #1853 fix entry from the
0.21.0release section back into[Unreleased].
Show a summary per file
| File | Description |
|---|---|
| CHANGELOG.md | Reconciles [Unreleased] entries and attribution with merges since v0.21.0, including moving #1853 out of the released 0.21.0 section. |
Copilot's findings
- Files reviewed: 1/1 changed files
- Comments generated: 0
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.
TL;DR
Makes the
CHANGELOG.md[Unreleased]block faithful to what has actually merged since the v0.21.0 tag. No version bump, no dated heading -- everything stays under[Unreleased]. This is changelog hygiene only; it does not cut a release.What changed
Enumerated every PR merged after the v0.21.0 tag (commit
975f8f0, 2026-06-19 16:46) and reconciled the changelog against it.Added to
[Unreleased](were missing)### Added-- cascading org-policy repo discovery (.github->.apm->_apm) plus Azure DevOps Items API support, so ADO orgs can host a governance policy repo. (by @sergio-sisternes-epam; closes [BUG] Azure DevOps does not allow a .github repository for the policy file #1813)### Fixed--apm packno longer dropsversionfor INTERNAL/privategithub.commarketplace repos (REST Contents API instead of the raw CDN, which 404s on private repos). (by @sergio-sisternes-epam)### Fixed-- cross-package file-protection guard in stale cleanup. (by @sergio-sisternes-epam; closes apm install/update does not remove locally deployed files that were deleted from upstream package #1831)Attribution fix
by @sergio-sisternes-epamcredit (external contributor; consistent with the released entries).Misfiled entry moved
[0.21.0]section but merged 2026-06-20, after the v0.21.0 tag (verified: its commit is not an ancestor of the tag). Moved into[Unreleased]where it factually belongs.Correctly omitted
.github/workflows/change, not user-facing.Validation evidence
+21 / -5), printable ASCII per the encoding contract.src/ortests/changes, so the CI lint mirror (ruff / pylint R0801 / auth-signals) has no new code surface to flag.How to test
git show --stat HEAD-- confirms a single-file (CHANGELOG.md) change.grep -c "#1853" CHANGELOG.md-- returns1(now only in[Unreleased], removed from[0.21.0]).Note
Reviewer check on the #1853 move: if v0.21.0's published artifact was intended to include #1853, revert just that hunk. The branch base is a few commits behind
main; the changelog hunks do not conflict (none of the post-tag PRs added their own[Unreleased]entries).