This repository was archived by the owner on Apr 20, 2026. It is now read-only.
fix: bump revm to 38.0.0 - #138
Merged
Merged
Conversation
revm 37.0.0 resolves to incompatible transitive deps (revm-handler 18.1.0 + revm-inspector 18.0.0) causing a build failure on all CI jobs except fmt/deny/codeql. Co-Authored-By: zerosnacks <95942363+zerosnacks@users.noreply.github.com>
decofe
requested review from
0xrusowsky,
DaniPopes,
grandizzy,
mattsse,
onbjerg and
zerosnacks
as code owners
April 20, 2026 08:59
zerosnacks
approved these changes
Apr 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
revm 37.0.0 resolves to incompatible transitive deps (
revm-handler18.1.0 +revm-inspector18.0.0), causingerror[E0308]: mismatched typeson all CI jobs that compile.Bumping to revm 38.0.0 pulls compatible versions (
revm-handler18.1.0 +revm-inspector19.0.0) and fixes CI.Note: This is a semver-breaking change for downstream consumers since revm types are part of the public API. Should be released as
0.26.0.Prompted by: zerosnacks