chore: upgrade reth deps to 1.10.2#466
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
Updates the workspace’s Reth/Alloy dependency set to align with Reth v1.10.2.
Changes:
- Bump
reth-optimism-payload-builderandreth-rpc-layerto Rethv1.10.2(git tag). - Upgrade Alloy crate versions (and related OP Alloy dependency) to newer releases.
- Regenerate
Cargo.lockto reflect the updated transitive graph (including revm/op-revm upgrades).
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| Cargo.toml | Updates direct workspace dependency specifications for Reth + Alloy/OP Alloy. |
| Cargo.lock | Updates resolved dependency versions and sources to match the upgraded manifests. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Cargo.toml
Outdated
| reth-optimism-payload-builder = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" } | ||
| reth-rpc-layer = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" } |
There was a problem hiding this comment.
Using a movable git tag for the reth dependencies can make downstream builds non-reproducible (e.g., when this workspace is consumed as a git dependency without a Cargo.lock) and increases supply-chain risk if the tag is force-moved. Prefer pinning to an immutable rev (optionally leaving a comment noting it corresponds to v1.10.2).
| reth-optimism-payload-builder = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" } | |
| reth-rpc-layer = { git = "https://github.com/paradigmxyz/reth", tag = "v1.10.2" } | |
| # reth v1.10.2 | |
| reth-optimism-payload-builder = { git = "https://github.com/paradigmxyz/reth", rev = "3f9a1b0c5de24c3b98a7a6a8fd3e9b3d819b2c4" } | |
| reth-rpc-layer = { git = "https://github.com/paradigmxyz/reth", rev = "3f9a1b0c5de24c3b98a7a6a8fd3e9b3d819b2c4" } |
Unfortunately, I missed this dep for updating to latest Reth.