Prepare next release - #123
Merged
Merged
Conversation
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@germ-network/two-mls-pq@0.15.1
Patch Changes
#122
548160aThanks @germ-mark! - Bump mls-rs to thegerm-integrationpin, and keepAPP_DATA_UPDATEpathlessThe fork's
mainwas resynced with upstreamawslabs/mls-rs, and the Germ changes wererecomposed on top of it as
germ-integration. The pin moves fromec69dc25toc6ede1ce, picking up the crypto providers, a recovered cryptokit build fix, the SafeExtensions exporter tree, and attachment CEK derivation.
The resync requires one behavioural fix. Upstream added
MlsRules::custom_proposal_requires_update_pathwith a default oftrue, soAPP_DATA_UPDATE— an attestation that changes no group membership — began forcing anupdatePath. On the PQ half that put an ML-KEM updatePath on a commit that must stay
pathless: the bind commit grew past a whole ML-KEM-768 ciphertext.
TwoMlsRulesnowoverrides the hook to
false, restoring the behaviourapqwas written against. Where apath is wanted — the FULL commit discharging an owed bind on the classical half —
commit_optionsstill pins it explicitly, which is where that decision belongs.Also drops
serde— both themls-rsfeature and the unused[workspace.dependencies]entry. Nothing in the workspace consumes either: no
.rsfile references serde and nomember crate declares it. mls-rs's serde derives are
cfg_attr-attached, so they neverparticipate in
MlsEncode/MlsDecode; removing the feature cannot move a byte of thestored format. Archiving goes through the crate's own
MlsEncode/MlsDecodewirestructs, which are untouched.
No wire, FFI, or error-variant change. Group state written by the previous pin still
loads.