Skip to content

deps: bump the reth group with 2 updates#931

Open
dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/cargo/reth-7e0e59b158
Open

deps: bump the reth group with 2 updates#931
dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/cargo/reth-7e0e59b158

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 13, 2026

Copy link
Copy Markdown

Bumps the reth group with 2 updates: reth-primitives-traits and reth-tasks.

Updates reth-primitives-traits from 0.3.2 to 0.5.2

Release notes

Sourced from reth-primitives-traits's releases.

v0.5.2

What's Changed

Full Changelog: paradigmxyz/reth-core@v0.5.1...v0.5.2

v0.5.1

What's Changed

Full Changelog: paradigmxyz/reth-core@v0.5.0...v0.5.1

v0.5.0

What's Changed

Full Changelog: paradigmxyz/reth-core@v0.4.2...v0.5.0

v0.4.2

What's Changed

Full Changelog: paradigmxyz/reth-core@v0.4.1...v0.4.2

v0.4.1

What's Changed

New Contributors

Full Changelog: paradigmxyz/reth-core@v0.4.0...v0.4.1

v0.4.0

What's Changed

New Contributors

... (truncated)

Changelog

Sourced from reth-primitives-traits's changelog.

0.5.2 - 2026-06-18

Features

  • [primitives-traits] Impl PartialEq for SealedOrRecoveredBlock (#34)

0.5.1 - 2026-06-15

Features

  • [primitives] Implement Deref for SealedBlockWith (#32)

Miscellaneous Tasks

  • Release 0.5.1

0.5.0 - 2026-06-12

Dependencies

  • Bump revm crates to 41.0.0 (#31)

Features

  • [primitives] Add block hash if block access list helper (#29)

Miscellaneous Tasks

  • Release 0.5.0

Other

  • Allow proc-macro-error2 advisory (#30)

Refactor

  • [primitives] Inline primitives trait helpers (#28)

0.4.2 - 2026-06-07

Features

  • [primitives] Add sealed-or-recovered block wrapper (#23)

Miscellaneous Tasks

  • Release 0.4.2

Performance

... (truncated)

Commits
  • 27a19b6 chore: release 0.5.2
  • ce88477 feat(primitives-traits): impl PartialEq for SealedOrRecoveredBlock (#34)
  • b05cec6 chore: release 0.5.1
  • 714e1be feat(primitives): implement Deref for SealedBlockWith (#32)
  • dc78044 chore: release 0.5.0
  • 01de221 chore: bump revm crates to 41.0.0 (#31)
  • d2cc6aa ci: allow proc-macro-error2 advisory (#30)
  • 6fa13e9 feat(primitives): add block hash if block access list helper (#29)
  • fec75de refactor(primitives): inline primitives trait helpers (#28)
  • 3109f1f chore: release 0.4.2
  • Additional commits viewable in compare view

Updates reth-tasks from v2.2.0 to v2.3.0

Release notes

Sourced from reth-tasks's releases.

Reth v2.3.0

image

Reth v2.3.0 includes several payload, engine, trie, and transaction-pool performance improvements, including parallel execution work, BAL prewarming, faster proof and trie paths, cheaper transaction-pool insertion, and reduced payload-building overhead. In our benchmark, throughput improved from ~1.4 to ~1.5 Ggas/s, an 8.1% increase.

It also fixes important correctness issues in eth_simulate, proof deserialization, chain-state overlay handling, RLPx buffering, BAL validation, and RocksDB/MDBX handling.

This release continues the Amsterdam / Block Access List rollout with expanded BAL validation, storage, networking, RPC, and payload-builder support. It also adds SSZ proxy coverage for Engine API methods, ERE file support, eth_pendingTransactions, debug account-state RPC endpoints, eth_baseFee, and snapshot overwrite support for reth download --force.

Action Required: SDK users with custom payload, transaction pool, or consensus integrations should review the breaking changes below. Node operators using default configurations do not need migration steps.

Backwards Compatibility

[!IMPORTANT] In case you need to downgrade after running 2.3.x, please downgrade to v2.2.0.

Update Priority

This table provides priorities for which classes of users should update particular components.

User Class Priority
Payload Builders Medium
Non-Payload Builders Medium

See Update Priorities for more information about this table.

Dependencies

Compatible versions:

revm: 40.0.3 alloy-*: 2.0.5 alloy core crates: 1.6.0 alloy-evm: 0.36.0 revm-inspectors: 0.40.1

Breaking Changes

SDK

  • Custom built payload types now convert directly into execution data, avoiding reconstruction from sealed blocks during local payload submission (#23928).
  • EthBuiltPayload now stores the recovered block instead of a sealed-only block, keeping recovered sender data available to downstream payload users (#24403).
  • TransactionPool::mark_invalid now takes an owned InvalidPoolTransactionError instead of a reference, allowing invalid transaction errors to cross thread boundaries cleanly (#24121).
  • Consensus opaque error handling uses a single Other(Arc<dyn Error + Send + Sync>) path with constructor and downcast helpers (#23669).
  • State hooks are now configured at the State<DB> level, ensuring everything committed to the database is propagated to the hook (#24654).
  • In-memory state trie overlay ownership moved into reth-chain-state behind StateTrieOverlayManager; provider/tree wiring resolves managed overlays instead of carrying lazy overlay handles through engine state (#24184).

RPC

... (truncated)

Changelog

Sourced from reth-tasks's changelog.

Releases

Release cadence

reth does not currently have a regular release cadence while it is still experimental software.

For maintainers

This section outlines how to cut a new release.

It is assumed that the commit that is being considered for release has been marked as stable, i.e. that there is an expectation of no major bugs.

Release PR

  • Create a new branch (e.g. release/vx.y.z) and open a pull request for it
  • Ensure all tests and lints pass for the chosen commit
  • Version bump
    • Update the version in all Cargo.toml's
  • Commit the changes
    • The message format should be release: vx.y.z, substituting x.y.z for the semver.
  • The PR should be reviewed to see if anything was missed
  • Once reviewed, merge the PR

Releasing

  • Tag the new commit on main with vx.y.z (git tag vx.y.z SHA)
  • Push the tag (git push origin vx.y.z)[^1]
  • Update Homebrew Tap
  • Run the release commit on the testing infrastructure for 1-3 days to check for inconsistencies and bugs
    • This testing infrastructure is going to sync and keep up with a live testnet, and includes monitoring of bandwidth, CPU, disk space etc.

Note

The v prefix for the tag is important! If it is missing, the release workflow will not run.

When the tag is pushed, the artifacts are built automatically and a draft release is added to the repository. This draft release includes a template that must be filled out, including:

  • A summary of the release (highlights etc.)
  • The update priority (see below)
  • An auto-generated changelog

The release artifacts are automatically added to the draft release. Once ready, simply publish the release.

Release summaries

The release summary should include general notes on what the release contains that are important to operators. These changes can be found using the https://github.com/paradigmxyz/reth/labels/M-changelog label.

[^1]: It is possible to use git push --tags, but this is discouraged since it can be very difficult to get rid of bad tags.

Commits
  • 9384bc5 chore(release): bump version to 2.3.0 (#25071)
  • 9f2837e feat(revm): add CachedReads account capacity constructor (#25048)
  • 8919e67 chore(deps): bump revm-inspectors to 0.40.1 (#25047)
  • 01cbe9b fix(rlpx): bound mux outbound buffer fairly (#25031)
  • e5fd762 perf(transaction-pool): specialize same-origin batch insertion (#25037)
  • 3a22037 feat(net): add outbound peer rotation to prevent slot saturation (#24776)
  • 84d8e47 fix(chain-state): avoid state overlay cache deadlock (#24875)
  • a3482df fix(chain-state): publish deferred trie data from task (#24995)
  • 949834a fix(cli): target reth download --force cleanup (#25015)
  • 72fafb5 fix: remove precompile cache initial capacity (#25013)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the reth group with 2 updates: [reth-primitives-traits](https://github.com/paradigmxyz/reth-core) and [reth-tasks](https://github.com/paradigmxyz/reth).


Updates `reth-primitives-traits` from 0.3.2 to 0.5.2
- [Release notes](https://github.com/paradigmxyz/reth-core/releases)
- [Changelog](https://github.com/paradigmxyz/reth-core/blob/main/CHANGELOG.md)
- [Commits](paradigmxyz/reth-core@v0.3.2...v0.5.2)

Updates `reth-tasks` from v2.2.0 to v2.3.0
- [Release notes](https://github.com/paradigmxyz/reth/releases)
- [Changelog](https://github.com/paradigmxyz/reth/blob/main/docs/release.md)
- [Commits](paradigmxyz/reth@88505c7...9384bc5)

---
updated-dependencies:
- dependency-name: reth-primitives-traits
  dependency-version: 0.5.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: reth
- dependency-name: reth-tasks
  dependency-version: 9384bc53d8c0c77e59cac83fdaaf3b372c6d2216
  dependency-type: direct:production
  dependency-group: reth
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file rust Pull requests that update rust code labels Jul 13, 2026
@dependabot
dependabot Bot requested a review from dvush as a code owner July 13, 2026 04:52
@dependabot dependabot Bot added the dependencies Pull requests that update a dependency file label Jul 13, 2026
@dependabot
dependabot Bot requested a review from ZanCorDX as a code owner July 13, 2026 04:52
@dependabot dependabot Bot added the rust Pull requests that update rust code label Jul 13, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file rust Pull requests that update rust code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants