edr-0.20.0 - #1670
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
github-actions
Bot
force-pushed
the
changeset-release/main
branch
22 times, most recently
from
August 31, 2026 09:11
2917bd8 to
bdf0e16
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
2 times, most recently
from
August 31, 2026 21:05
41a8a62 to
63b760d
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
August 31, 2026 21:41
63b760d to
f962fc8
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.
Releases
@nomicfoundation/edr@0.20.0
Minor Changes
e1974f4: Added an optional
blockTimestampfield to logs, as specified by ethereum/execution-apis#639. Logs returned byeth_getLogs,eth_getFilterLogs,eth_getFilterChanges,eth_subscribe("logs")and in transaction receipts now carry the timestamp of the block the log is in, as a hex QUANTITY.Matching the spec, the field is populated for locally mined blocks. When forking, it is passed through from the remote node, which every major client now serves; a log from a node that predates the spec change keeps the field absent rather than defaulting it, so a missing timestamp stays distinguishable from a real one.
9637a17: Added a synchronous, native Keccak-256 implementation:
keccak256.e1974f4: Added a version subdirectory to the RPC response cache on disk, to invalidate outdated cache types. Cache entries now live under
rpc_cache/v2, so everything else inrpc_cacheis ignored and can be deleted.def04e7: Fixed interval mining accepting a
[min, max]range that it could not honour. A range withmin > maxcrashed the provider on its first interval-mined block, and[0, 0]starved the provider of incoming requests. A range must now satisfy1 <= min <= max, and is rejected when the provider is created, whenevm_setIntervalMiningis called (JSON-RPC error-32602), and when a recorded scenario is loaded. Both bounds remain inclusive.Fixed
evm_setIntervalMiningnot restarting the interval timer when called with the interval that was already configured. A range draws a new interval before each block, so an unchanged configuration does not imply an unchanged schedule.BREAKING CHANGE:
[0, 0]and[0, N]interval ranges are no longer accepted. Neither previously worked as configured, but a configuration that is forwarded today will now fail when the provider is created. A scalar0still disables interval mining; a zero minimum inside a range must be normalised by the caller.Patch Changes