-
Notifications
You must be signed in to change notification settings - Fork 0
chore(deps): update rust crate p256 to 0.14 #32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,5 +14,5 @@ ureq = "2" | |
| serde_json = "1" | ||
| base64 = "0.22" # 0.5.1 β wallet_hook(privy) needs Basic auth encoding | ||
| urlencoding = "2" # 0.5.1 β wallet_hook(privy) URL-encodes the wallet_id path segment | ||
| p256 = { version = "0.13", features = ["pkcs8", "ecdsa"] } # 0.6.2 β CDP-JWT (ES256) signing | ||
| p256 = { version = "0.14", features = ["pkcs8", "ecdsa"] } # 0.6.2 β CDP-JWT (ES256) signing | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. π ECDSA signing API surface should be re-verified against the new major The signer at Was this helpful? React with π or π to provide feedback. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. π΄ Rust SDK's random nonce source disappears with the upgraded crypto library, breaking the client build The upgraded elliptic-curve stack ( Lost feature unification of rand_core's `getrandom`
elliptic-curve 0.14 (what p256 0.14.0 depends on, verified from the crates.io index) switched to Was this helpful? React with π or π to provide feedback. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. π No lockfile or cargo job means Rust SDK dependency bumps are unverified The repo has no Was this helpful? React with π or π to provide feedback. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. π MSRV bump to 1.85 is not declared in the crate manifest p256 0.14.0 declares Was this helpful? React with π or π to provide feedback. |
||
| rand_core = "0.6" # 0.6.2 β nonce randomness for CDP-JWT | ||
|
Comment on lines
+17
to
18
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. π rand_core stays at 0.6 while p256 moves to a new major line
Was this helpful? React with π or π to provide feedback. |
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
π‘ Release notes not updated for the Rust client's dependency upgrade
The published Rust client's cryptography dependency is moved to a new major version (
p256 = "0.14"atsdk/rust/Cargo.toml:17) without any matching entry being added to the project's unreleased release notes, so users get a change that is never announced.Impact: People using the Rust client won't see any record of the upgrade when it ships.
Repository rule: CHANGELOG Unreleased must be updated for user-facing changes
AGENTS.mdrequires: "Conventional Commit titles; updateCHANGELOG.md(Unreleased) for user-facing changes." TheUnreleasedsection ofCHANGELOG.md:7is empty and this PR touches onlysdk/rust/Cargo.toml. A major bump of a dependency of the publishedwave-dispatchcrate affects downstream dependency resolution and is therefore user-facing.Prompt for agents
Was this helpful? React with π or π to provide feedback.