chore: version packages - #261
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
August 19, 2026 12:55
6deb042 to
c4be39a
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
August 20, 2026 08:37
c4be39a to
250c8d6
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.
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
@e4a/pg-js@2.4.1
Patch Changes
9f61ed0: Stop presenting the pre-decryption sender on
/downloadas verified.The
Readystate (the screen with the Yivi QR on it, before any user secret key exists and before anything is decrypted) rendered a green tick, the copy "The files are from", and the signing attribute chips next to a sender address read straight off the sealed header viaOpened.inspect(). That value carries a valid signature over the header bytes, but nothing binds it to the ciphertext (sender authenticity: the public signing identity is swappable, so any authenticated user can spoof the displayed sender postguard#338): any party the PKG will issue a signing key to can re-sign someone else's header with their own key and be shown in its place. The pg-core change that would detect that swap (pg-core: bind the public signing policy into the AEAD plaintext, so a swapped h_sig_ext is rejected postguard#347) works inside the AEAD, so even once it ships in a@e4a/pg-wasmrelease it can only run during decryption, and will never reach this screen.Readynow keeps the address, because it is what the user needs to decide whether to scan at all and withholding it would make them pay the Yivi cost before learning anything. What it drops is the tick and the chips. The label reads "These files claim to be from", with the caveat "We can confirm this only after decryption." TheConfirmandDonestates are unchanged; they renderresult.senderfromdecrypt(), and whether a post-decryption tick is warranted at all is sender authenticity: the public signing identity is swappable, so any authenticated user can spoof the displayed sender postguard#338's question rather than this change's.In
@e4a/pg-jsthis is a documentation change only, with no identifier renames. The doc comments onInspectResult.sender,InspectSealedResult.sender,inspectSealed()andOpened.inspect()now state that the identity is claimed rather than verified. They stop short of promising thatdecrypt()'ssenderis bound to the ciphertext, because it is not: the public signing policy travels outside the AEAD in the pinned@e4a/pg-wasm(0.6.1) and in every version published as of 2026-08-10 (0.6.3 is the newest), so the swap is reported after decryption too. postguard#347 adds an AEAD-protected copy of the public signing policy to pg-core, and the comments say what it will take for that copy to reach a consumer of this SDK.postguard-outlook-addin@1.0.2
Patch Changes
7767706: Request
ReadWriteItemin the manifest instead ofReadWriteMailbox.ReadWriteMailboxis the highest permission tier, and an add-in that asks for it can only be installed by an administrator. An individual user cannot sideload it. Nothing in the add-in needs that tier: Microsoft annotates every Office.js member with its minimum permission level, and across the members reachable fromsrc/the maximum is read/write item, from six compose writes (Body.setAsync,removeAttachmentAsync,addFileAttachmentFromBase64Async,saveAsync,InternetHeaders.setAsyncandInternetHeaders.removeAsync). The mailbox-tier members an add-in can reach are all unused:makeEwsRequestAsync,getSelectedItemsAsync,loadItemByIdAsync,masterCategoriesandsendAsync. So aregetCallbackTokenAsync,restUrlandewsUrl; the read flow avoids EWS deliberately.test/manifest-permission.test.tspins both halves: the tier the manifest declares, and the absence fromsrc/of any member that would need the wider one.A changed permission tier freezes existing installations until an administrator re-consents (Manifest format for the store: XML add-in manifest or unified Microsoft 365 manifest? #240), so this is much cheaper before the first AppSource submission than after.
Updated dependencies [9f61ed0]
postguard-tb-addon@0.9.6
Patch Changes
postguard-website@1.8.4
Patch Changes
9f61ed0: Stop presenting the pre-decryption sender on
/downloadas verified.The
Readystate (the screen with the Yivi QR on it, before any user secret key exists and before anything is decrypted) rendered a green tick, the copy "The files are from", and the signing attribute chips next to a sender address read straight off the sealed header viaOpened.inspect(). That value carries a valid signature over the header bytes, but nothing binds it to the ciphertext (sender authenticity: the public signing identity is swappable, so any authenticated user can spoof the displayed sender postguard#338): any party the PKG will issue a signing key to can re-sign someone else's header with their own key and be shown in its place. The pg-core change that would detect that swap (pg-core: bind the public signing policy into the AEAD plaintext, so a swapped h_sig_ext is rejected postguard#347) works inside the AEAD, so even once it ships in a@e4a/pg-wasmrelease it can only run during decryption, and will never reach this screen.Readynow keeps the address, because it is what the user needs to decide whether to scan at all and withholding it would make them pay the Yivi cost before learning anything. What it drops is the tick and the chips. The label reads "These files claim to be from", with the caveat "We can confirm this only after decryption." TheConfirmandDonestates are unchanged; they renderresult.senderfromdecrypt(), and whether a post-decryption tick is warranted at all is sender authenticity: the public signing identity is swappable, so any authenticated user can spoof the displayed sender postguard#338's question rather than this change's.In
@e4a/pg-jsthis is a documentation change only, with no identifier renames. The doc comments onInspectResult.sender,InspectSealedResult.sender,inspectSealed()andOpened.inspect()now state that the identity is claimed rather than verified. They stop short of promising thatdecrypt()'ssenderis bound to the ciphertext, because it is not: the public signing policy travels outside the AEAD in the pinned@e4a/pg-wasm(0.6.1) and in every version published as of 2026-08-10 (0.6.3 is the newest), so the swap is reported after decryption too. postguard#347 adds an AEAD-protected copy of the public signing policy to pg-core, and the comments say what it will take for that copy to reach a consumer of this SDK.Updated dependencies [9f61ed0]