chore(release): v0.31.1 — QA format_parity SKIP fix + MCP M5 pmcp scaffold#909
Merged
Conversation
…ffold Cuts a patch release combining the two PRs that landed post-v0.31.0 (#907, #908) plus incidental `cargo fmt --all` normalization across the workspace. Wire-level changes: - Workspace + root `aprender` package bumped 0.31.0 → 0.31.1 - All 60+ path-dep pins updated in lockstep so the published crates resolve against each other without range-version drift - `opentelemetry` / `opentelemetry_sdk` / `opentelemetry-otlp` kept at 0.31.0 (external deps — global sed caught them as false-positives during bump) CHANGELOG.md covers: - Fixed: `apr qa` format_parity gate SKIPs non-GGUF primaries (#907) - Added: `pmcp = "2.3"` optional dep behind `pmcp-dispatcher` feature (#908) Pre-push gates: - cargo fmt --all (applied — 45 lines across 17 non-Cargo files) - cargo test -p aprender-contracts --lib: 1371 passed / 0 failed - cargo deny check advisories: advisories ok Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
…c-sccache wrapper
The `sovereign-ci:stable` container image is currently missing the
`rustc-sccache` wrapper script, causing every sccache-gated CI job
(ci/test, ci/lint, ci/coverage, ci/gate) to fail at the rustc probe:
error: could not execute process `rustc-sccache /.../rustc -vV`
(never executed)
Caused by: No such file or directory (os error 2)
Reruns fail identically — not transient.
Workaround: flip `enable_sccache: true → false` on this repo's
workflow input. The sovereign-ci reusable workflow reads this to set
`RUSTC_WRAPPER: ${{ inputs.enable_sccache && 'rustc-sccache' || '' }}`,
so disabling it removes the wrapper entirely and CI builds proceed
normally (just slower, since there's no compile cache).
Revert once paiml/.github ships a runner image with the wrapper
present — this is a temporary unblock for the v0.31.1 release PR.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.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.
Summary
Cuts v0.31.1 patch release combining two PRs that landed post-v0.31.0:
apr qa format_paritySKIPs non-GGUF primary instead of FAILingpmcp = "2.3"optional dep behindpmcp-dispatcherfeature (default off)Plus
cargo fmt --allnormalization (45 lines across 17 non-Cargo files; no semantic changes).Wire-level
aprenderpackage: 0.31.0 → 0.31.1opentelemetryfamily kept at 0.31.0 (external — not our bump)Pre-push gates
cargo fmt --all --check— clean after formatcargo test -p aprender-contracts --lib— 1371 passed / 0 failedcargo deny check advisories—advisories okcargo check --workspace— clean buildPost-merge
v0.31.1on the squashed merge commitTest plan
ci / gate+workspace-testgreen before merge🤖 Generated with Claude Code