-
Notifications
You must be signed in to change notification settings - Fork 180
chore(deps): bump regex-automata from 0.4.11 to 0.4.12 in the patch-versions group #6160
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,7 +64,7 @@ directories = "6" | |
displaydoc = "0.2" | ||
educe = { version = "0.6.0", features = ["Debug"], default-features = false } | ||
enumflags2 = "0.7" | ||
ethereum-types = { version = "0.15", features = ["ethbloom"] } | ||
ethereum-types = { version = "0.16", features = ["ethbloom"] } | ||
ez-jsonrpc-types = "0.5" | ||
fil_actor_account_state = { version = "24.1.3" } | ||
fil_actor_cron_state = { version = "24.1.3" } | ||
|
@@ -114,7 +114,7 @@ is-terminal = "0.4" | |
itertools = "0.14" | ||
jsonrpsee = { version = "0.26", features = ["server", "ws-client", "http-client", "macros"] } | ||
jsonwebtoken = { version = "10", features = ["rust_crypto"] } | ||
keccak-hash = "0.11" | ||
keccak-hash = "0.12" | ||
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. 🧩 Analysis chainkeccak-hash 0.12: confirm API compatibility Approve, but double‑check for API or trait changes (e.g., keccak_256 signatures) and MSRV bumps. 🌐 Web query:
💡 Result: I couldn't find a keccak-hash 0.12 release — the latest published release is 0.11.0 (Sep 11, 2024). No 0.12 changelog or release notes are available, so there are no documented breaking changes from 0.11 to 0.12. [1][2] Sources:
Cargo.toml: invalid keccak-hash version 🤖 Prompt for AI Agents
|
||
kubert-prometheus-process = "0.2" | ||
lazy-regex = "3" | ||
libp2p = { workspace = true, features = [ | ||
|
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.
🧩 Analysis chain
ethereum-types 0.16: sanity-check features and MSRV
Looks fine; please verify “ethbloom” feature still exists and there are no breaking API/MSRV bumps impacting us.
🌐 Web query:
💡 Result:
Short answer: I can't find an ethereum-types 0.16 release. The latest published version is 0.15.1 (2024-09-12). In 0.15.1 ethbloom exists as a feature (it was made optional in 0.14.0) and the crate still exposes an "ethbloom" feature (enabled by default in 0.15.1). [1][2]
Sources
Invalid ethereum-types version bump
Cargo.toml:67 sets
ethereum-types = "0.16"
, but no such release exists on crates.io; update to a valid version (e.g.,0.15.1
).🤖 Prompt for AI Agents