release: commitward 0.3.0 - #10
Merged
Merged
Conversation
Minor rather than patch: no signature moved, but `compile()` behaves differently for every caller. It now merges `anchor_checkpoints()` into the compiled set — last, so a same-named on-disk entry cannot shadow it (#9). Every compiled registry, including an empty one, therefore carries `anchor-gate-integrity`, which watches the gate's own registry and hook files. A caller that compiled N checkpoints gets N+1 back, and a commit touching a registry or hook now always fires at least one checkpoint — including the commit that first adopts a registry. Acknowledge it with a HITL-ACK line like any other fire. That is the point of the change: the registry could not be the sole protector of the registry, so one checkpoint now lives outside it, in the binary. Additive in the same release: `anchor_checkpoints()` is public, so a consumer can inspect the floor rather than trust it.
lyubomir-bozhinov
marked this pull request as ready for review
July 30, 2026 07:22
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.
Version bump only —
Cargo.toml+Cargo.lock, matching7ed509a(release: commitward 0.2.1). Tagging and publishing stay human steps.Why 0.3.0 and not 0.2.3
No signature moved, but
compile()behaves differently for every caller (#9):A caller that compiles N checkpoints now gets N+1 back. Every compiled registry — including an empty one — carries
anchor-gate-integrity, which watches the gate's own registry and hook files and is compiled into the binary, so no YAML edit removes it.That is the point rather than a side effect: the registry could not be the sole protector of the registry, so one checkpoint now lives outside it.
What consumers will feel
A commit touching a registry or the commit-msg hook now always fires at least one checkpoint — including the commit that first adopts a registry. Acknowledge it with a
HITL-ACKline like any other fire; it fires, it does not block.The NF3 "no checkpoints supplied" warning still fires when the caller supplied nothing, with its claim narrowed to what is now true — the compiled set is never empty, so the warning asks about the caller's input instead.
Additive in the same release:
anchor_checkpoints()is public, so a consumer can inspect the floor rather than trust it.Verification
cargo test --locked40 passed / 0 failed · lock refreshed viacargo check.