chore(deps): update alloy/op-reth dependencies#431
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. 1 Skipped Deployment
|
There was a problem hiding this comment.
Pull Request Overview
This PR updates dependencies across the project, transitioning from reth version 1.8.3 (git tag) to a specific commit revision (c3a60fa), and upgrading alloy-related libraries from version 1.0.37 to 1.0.42, and op-alloy libraries from 0.20.0 to 0.22.0.
Key changes:
- Switch reth dependencies from git tag
v1.8.3to git revisionc3a60fa - Upgrade alloy libraries from 1.0.37 to 1.0.42
- Upgrade op-alloy libraries from 0.20.0 to 0.22.0
Reviewed Changes
Copilot reviewed 2 out of 3 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| crates/flashblocks-rpc/Cargo.toml | Updates all reth dependencies from tag-based to revision-based references (c3a60fa) |
| Cargo.toml | Updates reth-optimism-payload-builder to revision-based reference and upgrades alloy/op-alloy library versions |
| Cargo.lock | Reflects all transitive dependency updates from the changes above |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
crates/flashblocks-rpc/Cargo.toml
Outdated
| reth-optimism-node = { git = "https://github.com/paradigmxyz/reth", rev = "c3a60fa" } | ||
| reth-optimism-cli = { git = "https://github.com/paradigmxyz/reth", rev = "c3a60fa" } | ||
| reth-rpc-eth-api = { git = "https://github.com/paradigmxyz/reth", rev = "c3a60fa" } | ||
| reth-optimism-primitives = { git = "https://github.com/paradigmxyz/reth", rev = "c3a60fa" } | ||
| reth-optimism-chainspec = { git = "https://github.com/paradigmxyz/reth", rev = "c3a60fa" } | ||
| reth-optimism-rpc = { git = "https://github.com/paradigmxyz/reth", rev = "c3a60fa" } | ||
| reth-optimism-evm = { git = "https://github.com/paradigmxyz/reth", rev = "c3a60fa" } | ||
| reth-optimism-forks = { git = "https://github.com/paradigmxyz/reth", rev = "c3a60fa" } | ||
| reth-provider = { git = "https://github.com/paradigmxyz/reth", rev = "c3a60fa" } | ||
| reth-primitives = { git = "https://github.com/paradigmxyz/reth", rev = "c3a60fa" } | ||
| reth-primitives-traits = { git = "https://github.com/paradigmxyz/reth", rev = "c3a60fa" } | ||
| reth-node-builder = { git = "https://github.com/paradigmxyz/reth", rev = "c3a60fa", features = [ | ||
| "test-utils", | ||
| ] } | ||
| reth-e2e-test-utils = { git = "https://github.com/paradigmxyz/reth", tag = "v1.8.3" } | ||
| reth-node-api = { git = "https://github.com/paradigmxyz/reth", tag = "v1.8.3" } | ||
| reth-tasks = { git = "https://github.com/paradigmxyz/reth", tag = "v1.8.3" } | ||
| reth-node-core = { git = "https://github.com/paradigmxyz/reth", tag = "v1.8.3" } | ||
| reth-db = { git = "https://github.com/paradigmxyz/reth", tag = "v1.8.3" } | ||
| reth-tracing = { git = "https://github.com/paradigmxyz/reth", tag = "v1.8.3" } | ||
| reth-rpc-server-types = { git = "https://github.com/paradigmxyz/reth", tag = "v1.8.3" } | ||
| reth-e2e-test-utils = { git = "https://github.com/paradigmxyz/reth", rev = "c3a60fa" } | ||
| reth-node-api = { git = "https://github.com/paradigmxyz/reth", rev = "c3a60fa" } | ||
| reth-tasks = { git = "https://github.com/paradigmxyz/reth", rev = "c3a60fa" } | ||
| reth-node-core = { git = "https://github.com/paradigmxyz/reth", rev = "c3a60fa" } | ||
| reth-db = { git = "https://github.com/paradigmxyz/reth", rev = "c3a60fa" } | ||
| reth-tracing = { git = "https://github.com/paradigmxyz/reth", rev = "c3a60fa" } | ||
| reth-rpc-server-types = { git = "https://github.com/paradigmxyz/reth", rev = "c3a60fa" } |
There was a problem hiding this comment.
The git revision 'c3a60fa' is too short and ambiguous. Git revisions should use the full 40-character SHA or at minimum 7-8 characters to avoid ambiguity. Consider using the full commit hash 'c3a60fa75a30c8b527b63143dc060082bdfee87e' as seen in Cargo.lock.
Cargo.toml
Outdated
|
|
||
| # Reth deps | ||
| reth-optimism-payload-builder = { git = "https://github.com/paradigmxyz/reth", tag = "v1.8.3" } | ||
| reth-optimism-payload-builder = { git = "https://github.com/paradigmxyz/reth", rev = "c3a60fa" } |
There was a problem hiding this comment.
The git revision 'c3a60fa' is too short and ambiguous. Git revisions should use the full 40-character SHA or at minimum 7-8 characters to avoid ambiguity. Consider using the full commit hash 'c3a60fa75a30c8b527b63143dc060082bdfee87e' as seen in Cargo.lock.
| reth-optimism-payload-builder = { git = "https://github.com/paradigmxyz/reth", rev = "c3a60fa" } | |
| reth-optimism-payload-builder = { git = "https://github.com/paradigmxyz/reth", rev = "c3a60fa75a30c8b527b63143dc060082bdfee87e" } |
|
they have pushed 1.9.0 |
de35728 to
3af330a
Compare
There was a problem hiding this comment.
Pull Request Overview
Copilot reviewed 4 out of 5 changed files in this pull request and generated no new comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
3af330a to
4aa8fc6
Compare
4aa8fc6 to
53a4d71
Compare
There was a problem hiding this comment.
Pull Request Overview
Copilot reviewed 2 out of 3 changed files in this pull request and generated no new comments.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
…t#431) * chore(deps): update alloy/op-reth dependencies * chore(deps): update reth deps to v1.9.0
…t#431) * chore(deps): update alloy/op-reth dependencies * chore(deps): update reth deps to v1.9.0
Description
Small PR to bump
alloy-rsandrethdependencies.Tomorrow (Wed Nov 5th), Ithaca will release a new github tag for
reth/op-reth. I will update the commit rev to use the new tag then.EDIT: Updated
reth/op-rethto1.9.0