chore: prepare v0.9.1 release#838
Merged
danielmeppiel merged 1 commit intomainfrom Apr 22, 2026
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Prepares the v0.9.1 release by bumping the Python package version and rolling the existing [Unreleased] changelog entries into a dated 0.9.1 section.
Changes:
- Bump
apm-cliversion to0.9.1inpyproject.toml. - Move
[Unreleased]entries into## [0.9.1] - 2026-04-22and collapse to one line per PR.
Show a summary per file
| File | Description |
|---|---|
pyproject.toml |
Updates the project version to 0.9.1. |
CHANGELOG.md |
Rolls Unreleased content into the 0.9.1 release section and consolidates entries. |
Copilot's findings
- Files reviewed: 2/3 changed files
- Comments generated: 1
| [project] | ||
| name = "apm-cli" | ||
| version = "0.9.0" | ||
| version = "0.9.1" |
There was a problem hiding this comment.
The CLI version is bumped to 0.9.1 here, but the repo's root apm.yml still declares version: 0.9.0. Since apm config reports both the project (apm.yml) version and the CLI version, leaving these out of sync can be confusing and may also affect bundle/pack metadata that reads apm.yml. Consider bumping apm.yml to 0.9.1 as part of the release prep (or document why it intentionally differs).
- Bump version to 0.9.1 in pyproject.toml and uv.lock - Move CHANGELOG [Unreleased] entries into [0.9.1] - 2026-04-22 - Audit pass: 1 PR = 1 entry, no bloat - Consolidate the seven scattered entries from #832 into a single Added line that names the closed issues (#827/#829/#831/#834) and keeps the migration warning inline - Combine the three fork-PR fixes (#826, #836, #837) into one Fixed entry per the multi-PR convention - Drop the doc-only consolidation commits from the log Highlights of 0.9.1: - Install-time enforcement of org apm-policy.yml (#832) - pr-review-panel automation now usable from fork PRs (#824, #826, #836, #837) - Docs site publish gated on stable releases only (#822) - Repository dogfooding via .apm/ as primitive source of truth (#823) Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
32ca567 to
f87a14d
Compare
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.
Summary
Bumps to v0.9.1 and rolls the
[Unreleased]changelog into[0.9.1] - 2026-04-22.Audit pass — 1 PR = 1 entry
The Unreleased section had grown to 22 lines spanning issue numbers (#827, #829, #831, #834) instead of PR numbers, with the same PR (#832) cited 7 times across Added / Changed / Removed / Security / Fixed. This release prep collapses the changelog to one line per PR per the project convention:
enforcement: blockmigration warning visiblepr-review-panel): combined into one Fixed entry per the multi-PR convention ((#X, #Y, #Z))Highlights
apm-policy.yml(feat(policy): enforce apm-policy.yml at install time #832) — covers deps deny/allow/require, MCP deny/transport/trust-transitive,compilation.target.allow,extends:chains,policy.fetch_failureknob,policy.hashpin. Includes--no-policyescape hatch,--dry-runpreview, and the newapm policy statusdiagnostic.pr-review-panelgh-aw workflow (feat(workflows): automate apm-review-panel via github/gh-aw #824) plus three follow-ups (fix(workflows): allow fork PRs in pr-review-panel #826, fix(panel-workflow): only fire on label, add dispatch path for fork PRs #836, fix(panel-workflow): use pull_request_target so labelled fork PRs run #837) so labelled fork PRs trigger correctly..apm/as the source of truth (chore: dogfood APM by migrating primitives from .github/ to .apm/ #823).Migration
Orgs that publish
enforcement: blockinapm-policy.ymlmay see installs that previously succeeded now fail. Preview verdicts before upgrading:Verification
uv lockregenerated;pyproject.tomlanduv.lockboth at 0.9.1test_global_mcp_scope.py)Co-authored-by: Copilot 223556219+Copilot@users.noreply.github.com