Releases: ethereum/go-ethereum
Multicapacitor (v1.15.9)
This release enables the Prague execution-layer fork on mainnet.
Prague
As of this release, the Prague fork is scheduled to occur on mainnet at block timestamp 1746612311 (Wed May 07 10:05:11 2025 UTC). As a reminder, the fork contains the following EIPs:
- EIP-2537: Precompile for BLS12-381 curve operations
- EIP-2935: Save historical block hashes in state
- EIP-6110: Supply validator deposits on chain
- EIP-7002: Execution layer triggerable exits
- EIP-7251: Increase the
MAX_EFFECTIVE_BALANCE - EIP-7549: Move committee index outside Attestation
- EIP-7623: Increase calldata cost
- EIP-7685: General purpose execution layer requests
- EIP-7691: Blob throughput increase
- EIP-7702: Set EOA account code
- EIP-7840: Add blob schedule to EL config files
All changes
- The Prague fork timestamp was added for mainnet. (#31535)
- Transaction-sending RPCs will now add txs to the 'locals' tracker only when they have any chance of inclusion. This is a bit of a revert from the behavior we added in v1.15.4, where APIs such as
eth_sendRawTransactionwould always return a txhash, even if the transaction wasn't includable on chain. (#31618) - If an EVM system call fails during block execution, the block is considered invalid. (#31639)
- An corner-case crash in
eth_feeHistoryrelated to blob fees is resolved. (#31663) - Several correctness bugs in the new log indexer have been fixed. (#31590, #31680, #31671, #31668, #31642)
- The history pruning implementation was further improved. (#31638, #31636, #31656)
- Geth will now print periodic logs when a non-activated fork is configured. (#31340)
- Geth will now occasionally drop peers at random after being fully synced. (#31476)
- CPU usage of tx propagation has been optimized. (#31657)
- Peer disconnect metrics are improved. (#31629, #31621)
For a full rundown of the changes please consult the Geth 1.15.9 release milestone
As with all our previous releases, you can find the:
- Pre-built binaries for all platforms on our downloads page.
- Docker images published under
ethereum/client-go. - Ubuntu packages in our Launchpad PPA repository.
- OSX packages in our Homebrew Tap repository.
Combatives Upgrade (v1.15.8)
This is a bug-fix release with some performance improvements.
Geth
geth importnow applies database and cache flags correctly. (#31577, #31534)- The new log indexer now exports metrics about its operation. (#31511)
- The beacon chain light client,
blsyncnow has a feature to export checkpoint files. (#31469)
Core library
- Database writes have been made fully synchronous again. We disabled the use of
fsynca while ago to improve performance on slow filesystems, but it has lead to reports of instability. The performance hit from enabling data sync is negligible. (#31519) - The transaction pool now takes pending blob transactions into account when limiting pending EIP-7702 authorizations for an account. (#31526)
- A logic race in EIP-7702 transaction validation is resolved. (#31373)
- The blob transaction pool performs less disk reads when sending transaction announcements. (#31433)
- The EVM now has a special fast-path for PUSH2, which is the most common instruction. (#31267)
- The Trezor hardware wallet implementation now supports 32-bit chain IDs. (#17439)
- Geth can now stop syncing history at the PoS merge point. This behavior is not enabled yet. (#31414)
RPC
- When trying to access pruned history, all RPC APIs now return error code 4444. (#31361)
P2P networking
- UPnP support has been improved and some bugs got fixed. (#30265, #31486, #31566)
- The discv5 'talk request' API has been changed to pass
*enode.Nodeto handlers. This is a breaking change, but the only known user of this API is the shisui portal network client. (#31075) - A flaw in the recently added discv5 challenge resend logic was fixed. (#31543)
- The eth protocol now properly handles very large
skipvalues when processingGetBlockHeadersmessages from peers. This is not a security fix, despite looking like one, it's more about correctness. (#31522)
Build
- This release is built with Go 1.24.2 (#31538)
- Note: due to issues with our build environment, we can no longer provide binary builds for macOS. These may be restored at a later date, hopefully soon. For now, you'll have to install from Homebrew.
- The previous release's git tag, v1.15.7, was published twice, leading to an issue with the Go module cache.
For a full rundown of the changes please consult the Geth 1.15.8 release milestone
As with all our previous releases, you can find the:
- Pre-built binaries for all platforms on our downloads page.
- Docker images published under
ethereum/client-go. - Ubuntu packages in our Launchpad PPA repository.
- OSX packages in our Homebrew Tap repository.
Juggernaut Shield (v1.15.7)
This is a bug fix release. We are putting is out specifically to address a critical issue that could break archive node databases.
- Fixed an issue for
--state.scheme=hashwhere the log indexer would accidentally delete trie nodes. (#31525) - Fixed an issue with tx submission, where the local pool didn't track pending nonces correctly. (#31496)
- The log indexer will now disable itself when hitting missing receipts in the database. (#31500)
- Another txpool issue reorg issue in
ethclient/simulated.Backendis fixed in this release. (#31228) - Memory allocation for trie operations has been reduced significantly. (#30932)
eth_createAccessListnow supports state overrides likeeth_call. (#31497)eth_createAccessListwill now exclude 7702 authorities from the result. (#31336)- The abigen library now correctly forwards access lists to
eth_estimateGas. (#31394)
For a full rundown of the changes please consult the Geth 1.15.7 release milestone
As with all our previous releases, you can find the:
- Pre-built binaries for all platforms on our downloads page.
- Docker images published under
ethereum/client-go. - Ubuntu packages in our Launchpad PPA repository.
- OSX packages in our Homebrew Tap repository.
Mental Focuser (v1.15.6)
π§ Note: we are investigating an issue with this release that affects archive nodes (--gcmode=archive).
If you are running Geth in this mode, please hold off upgrading. π§
This is a feature release, with two exciting upgrades:
-
Log filtering in Geth receives a huge performance upgrade with the introduction of our new 'filtermaps' index. Unlike the previous 'bloombits' index, query performance no longer suffers as the density of logs in a block increases. The new index design is also a step towards a future where filtering results can be proven by the server. See the PR and associated design documents for more information.
In practical terms, the new index is a bit larger than the old one. As before, you can choose the amount of historical blocks to be indexed using the
--history.logscommand-line flag. We have adjusted the default value of this flag to cover one year of history, and the resulting index has a size of ~10GB for Ethereum mainnnet. Indexing of the entire chain with--history.logs=0will take up ~61GB.Once the index is built, searches will be fast, but note that querying outside of the indexed block range will fall back to a very slow unindexed search. We will continue optimizing log searches in future releases, and welcome your feedback and bug reports in this area. (#31065, #31079, #31080, #31081, #31419, #31429, #31450, #31463, #31455)
-
abigen v2 is finally here. abigen is a tool for creating Go bindings for Solidity contracts. In v1, the generated bindings presented an API for sending transactions, filtering logs, and performing read-only calls as Go methods on the contract object. In the new version, we have updated the interface of the generated code to focus purely on encoding and decoding ABI payloads. Generic helper functions are provided in a library package to enable the same interactions as before, but you can also use your own custom method of signing & sending transactions. Generated bindings are also significantly smaller. (#31379)
Other changes in this release:
RPC
- A regression in
eth_sendRawTransaction- where transactions with too-low nonce would be accepted by the API - has been fixed. (#31473) eth_call/estimateGasRPC methods will now always return error code 3 for reverts. It previously only returned this code when the EVM produced revert data. (#31456)eth_simulateV1now returns a correct logs bloom value in the simulated block (#31411)eth_simulateV1supports block overrides for the beacon root and withdrawals (#31304)debug_traceCall: themovePrecompileTooverride feature should now work correctly (#31348)debug_traceCalland other related RPC methods now hex-encode the EVM return value. This is a breaking change. (#31216, #31445)ethclienthas a new methodEstimateGasAtBlock(#27508)
Geth
- Support for the Hoodi testnet has been added. (#31406)
- The beacon chain light client has been updated to support the Electra fork. (#31243, #31470)
geth importnow properly handles Ctrl-C interrupts (#31360)geth --devmode will now pre-fund all precompile accounts supported by the Pectra upgrade (#31342)geth --devnow respects the--miner.pending.feeRecipientflag (#31316)
Core library
- The performance of transaction signature validation has improved significantly (#31242, #31258, #31434)
- The transaction pool has seen some correctness and performance improvements. (#31430, #31307, #31332)
- We have added a lot of preliminary changes for History Expiry (EIP-4444). There shouldn't be any user-facing consequences of these just yet, just reporting it here since this area was a big focus this cycle. (#31424, #31355, #31362, #31383, #31365, #31117, #31356, #31384, #31393)
For a full rundown of the changes please consult the Geth 1.15.6 release milestone
As with all our previous releases, you can find the:
- Pre-built binaries for all platforms on our downloads page.
- Docker images published under
ethereum/client-go. - Ubuntu packages in our Launchpad PPA repository.
- OSX packages in our Homebrew Tap repository.
Stronghold Package (v1.15.5)
Alright π₯² This is a hotfix release for an issue on the Sepolia testnet. Shortly after the Pectra fork activation, an issue in deposit contract logs parsing was discovered. Sepolia has a custom version of the deposit contract that also implements ERC-20, and thus unexpected log events may be created by transactions to it. This issue affects all Ethereum execution clients.
The Sepolia testnet may take a short while to recover while the update is adopted by nodes. An incident report will be published once the network has fully recovered. β€οΈβπ©Ή
Other changes in this release:
- In output of
debug_traceTransaction, the "memory" and "storage" fields will be omitted if empty. (#31289) - This release is built with Go 1.24.1 (#31313)
For a full rundown of the changes please consult the Geth 1.15.5 release milestone
As with all our previous releases, you can find the:
- Pre-built binaries for all platforms on our downloads page.
- Docker images published under
ethereum/client-go. - Ubuntu packages in our Launchpad PPA repository.
- OSX packages in our Homebrew Tap repository.
Commando Package (v1.15.4)
This is a bug fix release.
Note: you need to upgrade to v1.15.3 or this release to be compatible with the Pectra fork on the Sepolia network (activates Wed, Mar 5 at 07:29:36 UTC).
- Fixed a v1.15.0 regression in
eth_feeHistorythat caused incorrectblobGasRatioreturn values. (#31246, #31270) - A v1.15.0 regression in RPC transaction submission has been fixed: if a transaction did not pass txpool verification (e.g. low fees), an error was returned by RPC, but the transaction would be added to the local pool anyway. This is now fixed and no error will be returned by the API in this case. (#31202)
- Txpool logic was reworked to avoid an error log flood about EIP-7702 authorities. (#31249)
- Certain invalid blob transactions no longer cause disconnect issues in the p2p layer. (#31219)
- ethclient now provides a
BlobBaseFeemethod to request the current blob basefee. (#31290) - The PPA package build was fixed after being broken in v1.15.3 by the upgrade to Go 1.24. (#31282, #31283)
For a full rundown of the changes please consult the Geth 1.15.4 release milestone
As with all our previous releases, you can find the:
- Pre-built binaries for all platforms on our downloads page.
- Docker images published under
ethereum/client-go. - Ubuntu packages in our Launchpad PPA repository.
- OSX packages in our Homebrew Tap repository.
Expert Package (v1.15.3)
Oh look, another hotfix release! We are issuing this Geth release to correct the predefined fork configuration of the Holesky and Sepolia testnets. The deposit contract address was missing in the configuration for these networks, causing a chain validation failure.
This issue was discovered on the Holesky network after it had already forked into Pectra (Prague). As a reminder, the Sepolia network will fork to Pectra at slot 7118848 (Wed, Mar 5 at 07:29:36 UTC). You need to upgrade to Geth v1.15.3 until then in order to use the testnet after the fork.
All changes in this release:
- Deposit contract addresses are now defined in testnet fork configuration. (#31247)
- The
eth_simulateV1RPC method was improved to match regular block processing semantics. (#31176, #31122) - A peer-finding issue with discovery v5 is fixed in this release. (#31251)
- An invalid
--discovery.dnsflag value will now cause an error at Geth startup. (#31233) - Geth
--devmode can now handle custom genesis configs with forks older than the latest. (#31084) - The EVM assembler/disassembler (package
core/asm) has been removed. (#31211) - Encoding of nested byte arrays in EIP-712 signature processing was fixed. (#31049)
- The cloudflare-go dependency has been updated to resolve a dependabot warning. (#31240)
- This release is built with Go 1.24.0 (#31159)
For a full rundown of the changes please consult the Geth 1.15.3 release milestone
As with all our previous releases, you can find the:
- Pre-built binaries for all platforms on our downloads page.
- Docker images published under
ethereum/client-go. - Ubuntu packages in our Launchpad PPA repository.
- OSX packages in our Homebrew Tap repository.
Survivor Loadout (v1.15.2)
This release fixes a few regressions. In particular, it restores block building on mainnet, which was broken in v1.15.1.
Note: a regression in the Prague fork implementation was discovered and fixed in a follow-up release. Please upgrade to at least v1.15.3 to follow the fork.
All changes in this release:
- Block building on mainnet works again. (#31191)
- Discv5 and DNS peer discovery has been restored. It was accidentally disabled in v1.14.9. (#31185)
- An edge-case for
geth dumpconfigrelated to theP2P.NATsetting in TOML is fixed. (#31192)
For a full rundown of the changes please consult the Geth 1.15.2 release milestone
As with all our previous releases, you can find the:
- Pre-built binaries for all platforms on our downloads page.
- Docker images published under
ethereum/client-go. - Ubuntu packages in our Launchpad PPA repository.
- OSX packages in our Homebrew Tap repository.
Engineering Kit (v1.15.1)
This release enables the Prague fork for the Holesky and Sepolia testnets. It is a required upgrade if you want to participate in these networks.
Note: a regression in the Prague fork implementation was discovered and fixed in a follow-up release. Please upgrade to at least v1.15.3 to follow the fork.
The fork is set to activate at
- Holesky slot: 3710976, timestamp: Mon, Feb 24 at 21:55:12 UTC
- Sepolia slot: 7118848, timestamp: Wed, Mar 5 at 07:29:36 UTC
Other user-facing changes in this release:
- Support for EIP-7702 transactions has been enabled in the transaction pool. (#31073)
- A v1.15.0 regression was identified in genesis handling for custom networks, related to the new
blobSchedulesetting. Geth v1.15.1 has been updated no longer crash in this case, and we will have an improved fix in v1.15.2 (#31171) - A v1.15.0 regression in the
evmcommand related to state dumps has been fixed. (#31158) - A v1.15.0 regression with the ancient store in read-only mode has been fixed. (#31173)
- A crash in
debug_getRaw*RPC methods has been fixed. (#31157) - The supranational/blst dependency has been upgraded to v0.3.14 in order to allow building Geth with Go 1.24. (#31165)
For a full rundown of the changes please consult the Geth 1.15.1 release milestone
As with all our previous releases, you can find the:
- Pre-built binaries for all platforms on our downloads page.
- Docker images published under
ethereum/client-go. - Ubuntu packages in our Launchpad PPA repository.
- OSX packages in our Homebrew Tap repository.
Operative Package (v1.15.0)
We are proud to announce the Geth 1.15.0 release.
This release contains some breaking changes to the database. Downgrading to v1.14.x requires re-syncing the chain.
Prague Fork
As of this release, Geth implements the Prague fork specifications up to devnet-6.
- EIP-2537 - BLS12-381 curve operations - has seen some updates. (#30978)
- EIP-7623 - Increase calldata cost - was implemented this cycle. (#30946)
- EIP-7685 - Execution layer requests - support was updated. (#30670, #30829, #31103, #31010, #31071, #30938, #31102)
- EIP-7702 - Set EOA account code - was implemented this cycle. Note Geth does not support EIP-7702 transactions in the txpool just yet. (#30078, #30935, #30936, #31054, #31032, #30933, #30982, #31089, #30926)
- EIP-7840 - Blob schedule in EL config - was implemented this cycle. (#31002, #31101, #31128)
Command changes
- The
evmcommand has seen lots of updates, improving its command-line interface and internals. (#30633, #30849, #30806, #30927, #30780, #30854, #31055, #30805, #30804, ) - Geth metrics can now be enabled via the TOML config file. This used to require the
--metricsflag. (#30814) - Similarly, you can now set the NAT traversal method (
--natflag) with the config file. (#31041) - The
geth --traceflag is now called--go-execution-traceto avoid confusion with EVM tracing. (#30846) - The
bootnodeutility has been removed. (#30813)
RPC & Tracing
- The live tracing Go API has been updated with new hooks and optional EVM revert tracking. See the tracing API changelog for more information. (#30441, #30786, #30830, #30784, #31007)
- RPC method
eth_estimateGasnow supports block overrides likeeth_call. (#30695) - RPC method
eth_simulateV1now advances the timestamp by 12 seconds per block. (#30981) - Package
accounts/abinow supports unpacking Solidity error types. (#30738) - Package
accounts/abi/bindhas new functionsWaitMinedHash,WaitDeployedHash. (#30079) - Package
accounts/usbwalletwas updated to support new Ledger firmware and the Ledger Flex device. (#31004) - In package
ethclient/simulated, a bug was fixed where transactions couldn't be sent afterRollbackof the simulated chain. (#31020) - The struct logger reports the EVM revert reason correctly again. (#31013)
Database
This release introduces a new database schema version. A downgrade to v1.14.x requires a resync.
- The 'total difficulty' of the chain is no longer stored in the database. (#30744)
- The ancient store employs a new strategy for avoiding fsync on each update. This change should improve block import latency on some systems. (#30392)
- Reverse state diffs use a new encoding for future compatibility with the Verkle Tree. (#30107, #31060)
- Internal handling of the SELFDESTRUCT operation has been simplified. This is possible since classic selfdestruct is no longer supported by the EVM after the Cancun fork. (#30752, #30802)
- Work towards a re-implementation of the state snapshot system is ongoing. (#30643, #30650, #30654)
- Work on the Verkle Tree integration is also progressing. (#31036, #30856, #30907, #31097)
Core Library & Networking
-
The fix for CVE-2025-24883 (recent v1.14.13 hotfix release) is also in v1.15.0 (#31100).
-
The transaction pool's notion of "locals" has been changed. This is a breaking change in some ways, and requires some explanation. Geth used to accept transactions at any fee level via RPC, storing them into the node's pool, and marking the sender as "local". When creating a new block (or the pending block), it would choose "local" transactions first. Finally, Geth tracks "local" transactions in a persistent journal file, and restores them on startup. The effect of all this is that once you had sent a transaction to Geth via RPC, it would keep prioritizing the sender account and its transactions (even ones received through p2p).
In Geth v1.15, we are changing this model to a different one. When receiving a transaction via RPC, it is stored into the pool like any other transaction, but it is also inserted into a separate "locals tracker" that keeps reinjecting the tx into the main pool periodically. When building a block, Geth no longer prefers the txpool locals, but you can configure a set of addresses that should get priority using the
--txpool.localsCLI flag. (#30559, #31127) -
For static nodes (from configuration or RPC
admin_addPeer), the node URL can contain a DNS name. Geth will now resolve these names when attempting to connect to the peer, instead of at configuration parsing time. This is useful for setting up testing networks in Docker or Kubernetes where the IP address of a node might not be known ahead of time. (#30822) -
Geth can now use the STUN protocol to figure out its own IP. There is a built-in list of public servers, or you can specify your own. Use
--nat=stunto enable. (#31064) -
Some minor bugs in the p2p protocol implementation got fixed. (#30855, #30918)
Build
- This release is built with Go 1.23.6 (#31130)
- The 'toolchain' line has been removed from go.mod (#31057)
- go-ethereum library functionality should now build and run on wasip1 (#31090)
For a full rundown of the changes please consult the Geth 1.15.0 release milestone
As with all our previous releases, you can find the:
- Pre-built binaries for all platforms on our downloads page.
- Docker images published under
ethereum/client-go. - Ubuntu packages in our Launchpad PPA repository.
- OSX packages in our Homebrew Tap repository.