release: passkey-kit 0.17.1 - #8
Merged
Merged
Conversation
There was a problem hiding this comment.
Pull request overview
Prepares passkey-kit@0.17.1 for Mercury’s additive schema-2 rollout while updating release and deployment documentation.
Changes:
- Prefer schema-2 candidates and validate legacy wallet consistency.
- Add dual-response tests and bump the package version.
- Publish current deployment guidance and remove obsolete coordination material.
Reviewed changes
Copilot reviewed 18 out of 18 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
src/version.ts |
Updates the generated SDK version. |
src/indexer/mercury.ts |
Handles additive schema-2 responses. |
src/indexer/mercury.test.ts |
Tests dual-field response handling. |
SECURITY.md |
Links the canonical deployment manifest. |
relayer-proxy/README.md |
Clarifies testnet-only configuration. |
README.md |
Updates discovery and contract documentation. |
packages/passkey-kit-sdk/README.md |
Clarifies wallet compatibility. |
package.json |
Bumps the package to 0.17.1. |
docs/security-signer-provenance-v2.md |
Records implementation and rollout status. |
docs/security-deterministic-deployer.md |
Updates security and deployer guidance. |
docs/releasing.md |
Adds release provenance guidance. |
docs/migration-v1.md |
Documents pending schema-2 deployment. |
docs/indexer-signer-provenance-response.md |
Replaces coordination details with the public schema contract. |
docs/history/PROPOSAL.md |
Removes the obsolete historical proposal. |
docs/deployments-testnet-2026-07-11.md |
Marks the old manifest as superseded. |
docs/deployments-2026-09-01.md |
Adds hosted-service status. |
docs/deployments-2026-08-19.md |
Marks the prior release as superseded. |
CHANGELOG.md |
Adds the 0.17.1 release notes. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Comment on lines
+446
to
456
| const dualShapeConsistent = | ||
| res.schema !== 2 || | ||
| !Array.isArray(res.candidates) || | ||
| !Array.isArray(res.wallets) || | ||
| sameContractIds(candidates, res.wallets); | ||
| const complete = | ||
| res.schema === 2 && | ||
| claimedComplete && | ||
| indexedThroughLedger !== undefined && | ||
| dualShapeConsistent && | ||
| candidates.every(candidateHasBirth); |
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
candidatesduring an additive Mercury rolloutcandidatesand legacywalletscontract setspasskey-kit@0.17.1without a contract or binding changeVerification
passkey-kit@0.17.1Deployment status
Mercury schema 2 is not live yet.
The SDK fails closed until that service deployment completes.
The contract, demo, relayer, and canonical WASM do not change.