release: 0.2.2#15
Merged
Merged
Conversation
version 0.2.1 -> 0.2.2. Four defects, none of them found by reading the code — all four came from a host putting the library into real use. The CHANGELOG leads with the one that had already destroyed evidence: 330 records signed by a key the manifest deleted on rotation, unverifiable forever. Then the two stale claims (__version__ two releases behind while public API; the sink promising cross-process serialisation it never had), then the one addition (is_control_flow_signal made public, since a host needs it to avoid signing false failures). __init__ needed no edit for this bump — 0.2.2 is the first release where __version__ derives from the packaging config rather than being a literal someone has to remember. It reported 0.2.2 the moment pyproject did. No change to the signature form or the chain. Records written by 0.1.x, 0.2.0 and 0.2.1 verify unchanged, and existing manifests stay readable: pubkeys is additive and schema_version is untouched, because from_dict rejects any version but its own and a bump would make every manifest in the field unreadable.
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.
Cuts 0.2.2 over the four fixes now on
main(#11, #12, #13, #14). Version bump + CHANGELOG only — no code.What ships
manifest.pubkeysis append-only. Verifier resolves rotated-away keys from the manifest alone.__version__two releases staleis_control_flow_signalwas privateAll four were reported by a host putting the library into real use, not by reading the code. One had already destroyed evidence — 330 records signed with a key that exists nowhere.
Compatibility
pubkeysis additive andschema_versionis untouched, becausefrom_dictrejects any version but its own and a bump would make every manifest in the field unreadable._is_control_flow_signalstill resolves, for hosts pinning>=0.2,<0.3.Worth noting
__init__.pyneeded no edit for this bump. 0.2.2 is the first release where__version__derives from the packaging config instead of being a literal someone has to remember — it reported0.2.2the momentpyproject.tomldid. That is #11 paying for itself one release after landing.After merge