Conversation
1581633 to
8cdcc86
Compare
Wodann
approved these changes
Feb 12, 2026
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #1292 +/- ##
==========================================
- Coverage 73.67% 73.66% -0.01%
==========================================
Files 444 444
Lines 75642 75642
Branches 75642 75642
==========================================
- Hits 55727 55722 -5
- Misses 17864 17868 +4
- Partials 2051 2052 +1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
8cdcc86 to
979831d
Compare
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or setup this action to publish automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
mainis currently in pre mode so this branch has prereleases rather than normal releases. If you want to exit prereleases, runchangeset pre exitonmain.Releases
@nomicfoundation/edr@0.12.0-next.25
Minor Changes
3974769: Added
callTraces()toResponseobject, inclusion of which is configurable through theincludeCallTracesoption on theObservabilityConfigf4bdc36: Removed
getLatestSupportedSolcVersionAPIBREAKING CHANGE: A new API
latestSupportedSolidityVersionwas previously introduced to replace the deprecatedgetLatestSupportedSolcVersion. The old API has now been removed. Users should update their code to uselatestSupportedSolidityVersioninstead.3974769: Removed
traces()API from theResponseobjectf4bdc36: Added support to the
debug_traceCall&debug_traceTransactionJSON-RPC methods for different tracers (4byteTracer,callTracer,flatCallTracer,prestateTracer,noopTracer, andmuxTracer).Our API is now aligned with Geth's tracing capabilities.
BREAKING CHANGE: Memory capture used to be enabled by default on geth, but has since been flipped core: cmd: invert disableMemory ethereum/go-ethereum#23558 and is now disabled by default. We have followed suit and disabled it by default as well. If you were relying on memory capture, you will need to explicitly enable it by setting the
enableMemoryoption totruein your tracer configuration.