Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(deps): update module github.com/ethereum/go-ethereum to v1.15.1 #4

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 20, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/ethereum/go-ethereum v1.11.5 -> v1.15.1 age adoption passing confidence

Release Notes

ethereum/go-ethereum (github.com/ethereum/go-ethereum)

v1.15.1: Engineering Kit (v1.15.1)

Compare Source

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.

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 blobSchedule setting. 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 evm command 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:

v1.15.0: Operative Package (v1.15.0)

Compare Source

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.

Command changes
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_estimateGas now supports block overrides like eth_call. (#​30695)
  • RPC method eth_simulateV1 now advances the timestamp by 12 seconds per block. (#​30981)
  • Package accounts/abi now supports unpacking Solidity error types. (#​30738)
  • Package accounts/abi/bind has new functions WaitMinedHash, WaitDeployedHash. (#​30079)
  • Package accounts/usbwallet was 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 after Rollback of 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.locals CLI 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=stun to 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:

v1.14.13: Schwarzschild (v1.14.13)

Compare Source

This is a security release, fixing a vulnerability (CVE-2025-24883).

Please update your nodes ASAP.


As with all our previous releases, you can find the:

v1.14.12: Gei Hinnom (v1.14.12)

Compare Source

This release covers quite a lot of time, and has many changes across the codebase. In particular; changes in tracing and account management, optimizations in database, trie and evm, and, as always bugfixes.

This release removes the personal RPC namespace. It was already previously deprecated, and has not been accessible by default for nearly two years. We also removed the --unlock command-line parameter, with a view towards removing key/account management from the geth binary.

  • Key management:
    • Remove --unlock command line flag from geth (#​30737)
    • Remove personal RPC namespace (#​30704)
  • Builds:
  • Tracing:
    • invoke OnCodeChange-hook on selfdestruct (#​30686, #​30497)
    • improvements to flatCallTracer (#​30539)
    • invoke tx-end hook in runtime helpers (#​30711)
    • disableCode and disableStorage options for prestateTracer (#​30648)
    • tracing of system calls (#​30666)
    • Change to how chainconfig is passed to tracers (breaking change) (#​30540)
    • add GetTransientState method to StateDB interface (#​30531)
  • Signing:
    • improved support for EIP-712 array types (#​30620)
    • non-legacy transactions support for ledger wallets (#​30180)
  • Bugfixes:
    • Set basefee for AccessList based on given block, not chain tip (#​30538)
    • Multiple issues in benchmarks (#​30667)
    • Fix bug with resolving a payload (#​30615)
  • Database optimizations
    • Run pebble in non-sync mode (#​30573, #​29792). This change makes quite a big difference on certain OS:es, particularly MacOSX/Darwin, where
      it has been noted that fsync is notoriously slow.
    • Use to increasing level sizes (#​30602), This change makes pebble use larger files, reducing the number of files from 160K to 10K.
  • Assorted:
    • Make jwtsecretflag expand tilde
    • Work on verkle (#​30672)
    • Work on EIP-7002 and EIP 7251 (#​30571)
    • Implement EIP-7685 and EIP-6110 (flat requests enconding) (#​30425)
    • Validation of EOF containers (#​30418)
    • More helpful responses for rejected transactions (#​30715)
    • Work on cross-execution witness (#​30698)
    • EVM speed optimizations (#​30662, #​30629)
    • Reduce peak memory usage during reorg (#​30600)
    • Speed up trie commit via concurrent workers (#​30545)
    • Fuzzing improvments (#​30585)
    • Implement new engine_getBlobsV1 API method (#​30537)

For a full rundown of the changes please consult the Geth 1.14.12 release milestone.


As with all our previous releases, you can find the:

v1.14.11: Makhaira (v1.14.11)

Compare Source

This is a minor release, with the primary goal of publishing new stable and latest docker images. A problem in the CI pipeline prevented the publishing of docker images. We have now resolved the problem, and hope that the v1.14.11-release will be published as usual on Docker hub.

We have now switched the way the docker images are built, and the -amd64 and -arm64-tagged versions will no longer be maintained:

  • alltools-latest-amd64, alltools-latest-arm64 -> alltools-latest
  • latest-amd64,latest-arm64 -> latest
  • v1.14.10-amd64, v1.14.10-arm64 -> v1.14.10

NOTE: If you are a docker user on stable/latest, there's a high chance that you are not using any of the last two releases. If so, you are advised to look through the release-notes of those releases respectively: v1.14.10 and v1.14.9.

Other changes since v1.14.10 include

  • Remove totalDifficulty field from RPC, in accordance with spec update, #​30386
  • Fix flaw in simulated backend #​30465
  • New method of building multi-platform docker images #​30530
  • Ability to disable FINDNODE liveness checks in tests #​30512

For a full rundown of the changes please consult the Geth 1.14.11 release milestone.


As with all our previous releases, you can find the:

v1.14.10: Kopis (v1.14.10)

Compare Source

Geth v1.14.10 is a hotfix release to fix a blob pool regression introduced in v1.14.9. Users running the previous bad version should update ASAP. That said, there is no immediate danger to these users, just to the health of blob transaction propagation and inclusion in the network.

Beside the hotfix, this release:

  • Ships stateless witness production and verification into the engine API (#​30069).
  • Use 0 global gas cap as unlimited in simulated calls too (#​30474, #​30496).

For a full rundown of the changes please consult the Geth 1.14.10 release milestone.


As with all our previous releases, you can find the:

v1.14.9: Aegis (v1.14.9)

Compare Source

This release has been nuked. It broke the blob pool, please do not use it.


This is a maintenance release, but also introduces support for the new multicall spec, which is a much anticipated feature providing a eth_simulateV1 call, that takes a list of blocks and executes them as if calling multiple eth_calls sequentially. It accepts optional state and precompile overrides, as well as transfer log events. This release also ships with improved verkle support.

Command line
Pectra
Core
Txpool
  • Fetch transactions from a peer in the order they were announced in order to minimize nonce gap, causing blob txs to rejected. A special rule is applied to blob transactions: they are retrieved from the network upon reception of the announcement, as blob transactions are never broadcast over the p2p network (https://github.com/ethereum/go-ethereum/pull/30125)
Networking
RPC / tracing
Misc
Build

Full Changelog: ethereum/go-ethereum@v1.14.8...v1.14.9

For a full rundown of the changes please consult the Geth 1.14.9 release milestone.


As with all our previous releases, you can find the:

v1.14.8: Rayingri (v1.14.8)

Compare Source

This is a maintenance release with bug fixes only.

Command changes
  • Blobpool related flags in Geth now actually work. (#​30203)
  • The evm run command no longer overwrites the sender account in genesis.json. (#​30259)
  • evm run now allows configuring baseFeePerGas in genesis.json. (#​30281)
Go API
  • core/types.Transaction.ChainID had a bug where it modified the signature for very large ChainID (>= 2^64). (#​30157)
  • ethclient.Client.NetworkID now supports values returned in hex format by the server. (#​30263)
  • ethclient/simulated.Backend.AdjustTime was fixed to apply the correct time divison. (#​30138)
  • accounts/abi/bind.TransactOpts now supports setting an access list for created transactions. (#​30195)
  • The package p2p/simulations has been removed. (#​30250)
Core
  • A snap-sync database corruption related to sync restarts is fixed in this release. (#​30258)
  • eth_call storage overrides now work as originally intended: if a storage replacement object is specified in the call, previous storage values of the account are cleared. (#​30185)
  • The txpool did not use the transaction's inline sender cache in some cases. (#​30208)
  • The performance of EVM stack swaps was improved a bit. (#​30249)
Networking
  • The downloader now takes withdrawals into account when sizing its queue. (#​30276)
  • The new discovery node revalidation could hot-spin in certain rare scenarios. (#​30239)
  • Configuring an external IP using --nat=extip:... could lead to invalid discovery packets being generated. (#​30234)
Build
  • github.com/btcsuite/btcd/btcec has been upgraded to resolve a build error caused by upstream API changes. (#​30181)
  • Previous releases will not build with Go 1.23, but this one will. (#​30253)
  • This release is built with Go 1.22.6. (#​30273)

For a full rundown of the changes please consult the Geth 1.14.8 release milestone.


As with all our previous releases, you can find the:

v1.14.7: Trident (v1.14.7)

Compare Source

This is a hot-fix release for a bug (#​30139) which affects only the previous release. Users of v1.14.6 are kindly requested to update.

For a full rundown of the changes please consult the Geth 1.14.7 release milestone.


As with all our previous releases, you can find the:

v1.14.6: Talaria (v1.14.6)

Compare Source

Geth v1.14.6 is a maintenance release, but it does ship with the experimental witness building validation code used in @​karalabe's "cross validation" proposal. Note that the engine API part is not included in this release.


Shipped features:

Shipped bugfixes:

  • Fix issue in which the beacon root contract balance would not be saved in developer mode, causing an error on restart (#​29963)
  • Fix shutdown crash when geth runs in blsync mode (#​29946)
  • Fix data races in snapshot access (#​30001, #​30011)
  • Fix out of bounds access in json unmarshalling (#​30014)
  • Add missing lock in peer discovery (#​29960)

For a full rundown of the changes please consult the Geth 1.14.6 release milestone.


As with all our previous releases, you can find the:

v1.14.5: Bothros (v1.14.5)

Compare Source

Geth v1.14.5 is a hotfix release that addresses a regression introduced in v1.14.4, which prevented the node from discovering other peers in certain networking setups (#​29944). It is otherwise identical to v1.14.4.


Geth v1.14.4 in a usual maintenance release, but it does ship a 5-7% block import speed improvement. Furthermore, v1.14.4 also finally includes an Ether supply live tracer, that you can enable via --vmtrace supply. Also please note, the default value for miner tip enforcement was dropped from 1 gwei to 0.001 gwei (block producers can change this via --miner.gasprice).

Shipped features:

Shipped bugfixes:

  • Fix a gas estimation regression that caused longer runtimes (#​29738).
  • Fix a potential crash in JSON logging for EVM blocktests (#​29795).
  • Fix utility commands to support post-merge opcodes (#​29799).
  • Fix a txpool synchronicity issue in simulated chains (#​29876).
  • Fix a iteration order when using a trie node iterator (#​27838).
  • Fix a TCP/UDP discovery port test in cmd/devp2p (#​29879).
  • Fix IPv6 endpoint determination (#​29801, #​29827).

For a full rundown of the changes please consult the Geth 1.14.4 release milestone.


As with all our previous releases, you can find the:

v1.14.4: Triodia (v1.14.4)

Compare Source

Geth v1.14.4 in a usual maintenance release, but it does ship a 5-7% block import speed improvement. Furthermore, v1.14.4 also finally includes an Ether supply live tracer, that you can enable via --vmtrace supply. Also please note, the default value for miner tip enforcement was dropped from 1 gwei to 0.001 gwei (block producers can change this via --miner.gasprice).

Shipped features:

Shipped bugfixes:

  • Fix a gas estimation regression that caused longer runtimes (#​29738).
  • Fix a potential crash in JSON logging for EVM blocktests (#​29795).
  • Fix utility commands to support post-merge opcodes (#​29799).
  • Fix a txpool synchronicity issue in simulated chains (#​29876).
  • Fix a iteration order when using a trie node iterator (#​27838).
  • Fix a TCP/UDP discovery port test in cmd/devp2p (#​29879).
  • Fix IPv6 endpoint determination (#​29801, #​29827).

For a full rundown of the changes please consult the Geth 1.14.4 release milestone.


As with all our previous releases, you can find the:

v1.14.3: Fuel Depot (v1.14.3)

Compare Source

We're issuing this (v1.14.3) release to finally publish v1.14 on the Ubuntu PPA. It is otherwise identical to v1.14.2.


This is a maintenance release containing bug-fixes. In case you are wondering where v1.14.1 (and v1.14.2) went, let's just say, the continuous integration gods have not been good to us.

List of changes in detail:

Geth
  • When using geth --dev with a custom genesis block, the genesis file must now set difficulty and terminal total difficulty to zero. (#​29579)
  • For fork scheduling errors in geth init, fork timestamps will now be printed correctly. (#​29514)
  • Certain aspects of state handling are now parallelized resulting in a 5-10% speedup for block processing. (#​29681)
RPC
  • eth_feeHistory was changed to apply a limit on the number of requested percentiles (#​29644)
  • eth_createAccessList now honors request cancellation and terminates background work (#​29686)
  • eth_estimateGas takes tx blobs into account for low-balance scenarios (#​29703)
Tracing
  • The live tracing interface has new hooks around EVM system calls (#​29355)
  • flatCallTracer was fixed to return the correct error result when interrupted (#​29623)
Build

For a full rundown of the changes please consult the Geth 1.14.1 release milestone.


As with all our previous releases, you can find the:

v1.14.2: Ker (v1.14.2)

Compare Source

This is a maintenance release containing bug-fixes. In case you are wondering where v1.14.1 went, let's just say, the continuous integration gods have not been good to us.

List of changes in detail:

Geth
  • When using geth --dev with a custom genesis block, the genesis file must now set difficulty and terminal total difficulty to zero. (#​29579)
  • For fork scheduling errors in geth init, fork timestamps will now be printed correctly. (#​29514)
  • Certain aspects of state handling are now parallelized resulting in a 5-10% speedup for block processing. (#​29681)
RPC
  • eth_feeHistory was changed to apply a limit on the number of requested percentiles (#​29644)
  • eth_createAccessList now honors request cancellation and terminates background work (#​29686)
  • eth_estimateGas takes tx blobs into account for low-balance scenarios (#​29703)
Tracing
  • The live tracing interface has new hooks around EVM system calls (#​29355)
  • flatCallTracer was fixed to return the correct error result when interrupted (#​29623)
Build

For a full rundown of the changes please consult the Geth 1.14.1 release milestone.


As with all our previous releases, you can find the:

v1.14.0: Asteria (v1.14.0)

Compare Source

Geth v1.14.0 (Asteria) is a major release with some juicy new features as well as some breaking changes. Please read through the release notes before updating to it. Whilst it should not adversely impact most users, there're always those rare occurrences.

Highlights
  • Geth v1.14.0 switches over the default state trie representation from hash mode to path mode (i.e. --state.scheme flipped form hash to path) (#​29108). This change does not affect Geth instances with pre-existing databases, in the case of which Geth continues to use whatever the existing database's format is. If no previous database exists however, for full nodes, Geth will now default to pathdb. The main advantage is built-in, online historical state pruning; no more runaway state growth.

    • If you want to force the old behaviour, you can run Geth with --state.scheme=hash for now. That said, we will be dropping hash mode sooner rather than later, so we advise everyone running full nodes to gradually switch, if they haven't yet.
    • Archive mode support is not yet finalised for path mode, so archive nodes will still run in hash mode. Naturally, hash mode will not be dropped until a full path archive lands and people have enough time to switch to it.
  • Geth v1.14.0 introduces a brand new live-tracing feature, where one or more transaction tracers might be injected into the block processing pipeline, ensuring that tracing and execution happen in lockstep (#​29189). Since Go does not have a cross platform, OS native plugin infrastructure, adding live tracers needs to be done at the Geth source code level, and Geth itself subsequently rebuilt. That said, the advantage is that such tracers have full execution flexibility to do whatever they like and however they like. Please see the live-tracer changelog and docs for details.

    • Live tracing runs in lockstep with block execution, one waiting for the other. You should never run a live tracer on a validating node, or any other where latency is important. The recommended practice is to have tracers collect and export the bare minimum data needed and do any post-processing in external systems where latency is not relevant.
    • The live tracer work required a number of breaking internal API changes. If you had your own native tracers implemented before this change, the changelog contains the necessary steps needed to update your old code for the new APIs.
  • Geth v1.14.0 replaces the completely random transaction propagation paths (in the Ethereum P2P network) with pseudo-random ones, that ensure transactions from the same account follow the same path in the network (as long as no peer churn happens). The purpose is to allow a burst of transactions from the same account to ripple through the network on the same connections, minimising reordering. Whilst this doesn't provide any guarantees, nor does it replace the potential need for more complex routing logic, it should make nonce gaps significantly less likely, reducing the probability of dropped transactions during bursts (#​29034).

    • This change only applies to networking, so other clients are not required to follow suit. That said, the network would behave more

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot changed the title fix(deps): update module github.com/ethereum/go-ethereum to v1.11.6 fix(deps): update module github.com/ethereum/go-ethereum to v1.12.0 May 25, 2023
@renovate renovate bot force-pushed the renovate/github.com-ethereum-go-ethereum-1.x branch from 6b5de3f to 90e4fe2 Compare May 25, 2023 11:38
@renovate renovate bot changed the title fix(deps): update module github.com/ethereum/go-ethereum to v1.12.0 fix(deps): update module github.com/ethereum/go-ethereum to v1.12.1 Aug 11, 2023
@renovate renovate bot force-pushed the renovate/github.com-ethereum-go-ethereum-1.x branch from 90e4fe2 to 9dc06be Compare August 11, 2023 08:40
@renovate renovate bot changed the title fix(deps): update module github.com/ethereum/go-ethereum to v1.12.1 fix(deps): update module github.com/ethereum/go-ethereum to v1.12.2 Aug 13, 2023
@renovate renovate bot force-pushed the renovate/github.com-ethereum-go-ethereum-1.x branch from 9dc06be to 95001a1 Compare August 13, 2023 01:59
@renovate renovate bot force-pushed the renovate/github.com-ethereum-go-ethereum-1.x branch from 95001a1 to 499df98 Compare September 12, 2023 23:49
@renovate renovate bot changed the title fix(deps): update module github.com/ethereum/go-ethereum to v1.12.2 fix(deps): update module github.com/ethereum/go-ethereum to v1.13.0 Sep 12, 2023
@renovate renovate bot force-pushed the renovate/github.com-ethereum-go-ethereum-1.x branch from 499df98 to 037d77e Compare September 18, 2023 02:39
@renovate renovate bot changed the title fix(deps): update module github.com/ethereum/go-ethereum to v1.13.0 fix(deps): update module github.com/ethereum/go-ethereum to v1.13.1 Sep 18, 2023
@renovate renovate bot changed the title fix(deps): update module github.com/ethereum/go-ethereum to v1.13.1 fix(deps): update module github.com/ethereum/go-ethereum to v1.13.2 Sep 29, 2023
@renovate renovate bot force-pushed the renovate/github.com-ethereum-go-ethereum-1.x branch from 037d77e to 9f8aca0 Compare September 29, 2023 20:19
@renovate renovate bot changed the title fix(deps): update module github.com/ethereum/go-ethereum to v1.13.2 fix(deps): update module github.com/ethereum/go-ethereum to v1.13.3 Oct 13, 2023
@renovate renovate bot force-pushed the renovate/github.com-ethereum-go-ethereum-1.x branch 2 times, most recently from 26aa612 to 3bd1b59 Compare October 18, 2023 20:53
@renovate renovate bot changed the title fix(deps): update module github.com/ethereum/go-ethereum to v1.13.3 fix(deps): update module github.com/ethereum/go-ethereum to v1.13.4 Oct 18, 2023
@renovate renovate bot force-pushed the renovate/github.com-ethereum-go-ethereum-1.x branch from 3bd1b59 to ae588d8 Compare November 15, 2023 08:44
@renovate renovate bot changed the title fix(deps): update module github.com/ethereum/go-ethereum to v1.13.4 fix(deps): update module github.com/ethereum/go-ethereum to v1.13.5 Nov 15, 2023
@renovate renovate bot force-pushed the renovate/github.com-ethereum-go-ethereum-1.x branch from ae588d8 to b3b6325 Compare December 19, 2023 08:43
@renovate renovate bot changed the title fix(deps): update module github.com/ethereum/go-ethereum to v1.13.5 fix(deps): update module github.com/ethereum/go-ethereum to v1.13.6 Dec 19, 2023
@renovate renovate bot changed the title fix(deps): update module github.com/ethereum/go-ethereum to v1.13.6 fix(deps): update module github.com/ethereum/go-ethereum to v1.13.7 Dec 20, 2023
@renovate renovate bot force-pushed the renovate/github.com-ethereum-go-ethereum-1.x branch 2 times, most recently from b61bea2 to ab57063 Compare December 23, 2023 08:01
@renovate renovate bot changed the title fix(deps): update module github.com/ethereum/go-ethereum to v1.13.7 fix(deps): update module github.com/ethereum/go-ethereum to v1.13.8 Dec 23, 2023
@renovate renovate bot force-pushed the renovate/github.com-ethereum-go-ethereum-1.x branch from ab57063 to 392dcd4 Compare January 12, 2024 15:00
@renovate renovate bot changed the title fix(deps): update module github.com/ethereum/go-ethereum to v1.13.8 fix(deps): update module github.com/ethereum/go-ethereum to v1.13.10 Jan 12, 2024
@renovate renovate bot force-pushed the renovate/github.com-ethereum-go-ethereum-1.x branch from 392dcd4 to 93e68fa Compare January 25, 2024 05:44
@renovate renovate bot changed the title fix(deps): update module github.com/ethereum/go-ethereum to v1.13.10 fix(deps): update module github.com/ethereum/go-ethereum to v1.13.11 Jan 25, 2024
@renovate renovate bot force-pushed the renovate/github.com-ethereum-go-ethereum-1.x branch from 93e68fa to 2a7ac9d Compare February 10, 2024 05:48
@renovate renovate bot changed the title fix(deps): update module github.com/ethereum/go-ethereum to v1.13.11 fix(deps): update module github.com/ethereum/go-ethereum to v1.13.12 Feb 10, 2024
@renovate renovate bot force-pushed the renovate/github.com-ethereum-go-ethereum-1.x branch from 305b316 to 59d2f5f Compare May 10, 2024 23:48
@renovate renovate bot changed the title fix(deps): update module github.com/ethereum/go-ethereum to v1.14.2 fix(deps): update module github.com/ethereum/go-ethereum to v1.14.3 May 10, 2024
Copy link
Contributor Author

renovate bot commented Jun 4, 2024

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 5 additional dependencies were updated
  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.20 -> 1.24.0
github.com/go-ole/go-ole v1.2.1 -> v1.3.0
github.com/holiman/uint256 v1.2.0 -> v1.3.2
github.com/tklauser/go-sysconf v0.3.5 -> v0.3.12
github.com/tklauser/numcpus v0.2.2 -> v0.6.1
golang.org/x/crypto v0.1.0 -> v0.32.0

@renovate renovate bot force-pushed the renovate/github.com-ethereum-go-ethereum-1.x branch 2 times, most recently from 32002df to 47cc0f4 Compare June 7, 2024 02:11
@renovate renovate bot changed the title fix(deps): update module github.com/ethereum/go-ethereum to v1.14.3 fix(deps): update module github.com/ethereum/go-ethereum to v1.14.5 Jun 7, 2024
@renovate renovate bot force-pushed the renovate/github.com-ethereum-go-ethereum-1.x branch from 47cc0f4 to d09651e Compare July 3, 2024 05:22
@renovate renovate bot changed the title fix(deps): update module github.com/ethereum/go-ethereum to v1.14.5 fix(deps): update module github.com/ethereum/go-ethereum to v1.14.6 Jul 3, 2024
@renovate renovate bot force-pushed the renovate/github.com-ethereum-go-ethereum-1.x branch from d09651e to 77eb55d Compare July 12, 2024 08:47
@renovate renovate bot changed the title fix(deps): update module github.com/ethereum/go-ethereum to v1.14.6 fix(deps): update module github.com/ethereum/go-ethereum to v1.14.7 Jul 12, 2024
@renovate renovate bot force-pushed the renovate/github.com-ethereum-go-ethereum-1.x branch from 77eb55d to bfa9b4c Compare August 14, 2024 20:47
@renovate renovate bot changed the title fix(deps): update module github.com/ethereum/go-ethereum to v1.14.7 fix(deps): update module github.com/ethereum/go-ethereum to v1.14.8 Aug 14, 2024
@renovate renovate bot force-pushed the renovate/github.com-ethereum-go-ethereum-1.x branch from bfa9b4c to d0595ef Compare September 12, 2024 02:39
@renovate renovate bot force-pushed the renovate/github.com-ethereum-go-ethereum-1.x branch from d0595ef to efb0925 Compare September 19, 2024 20:44
@renovate renovate bot changed the title fix(deps): update module github.com/ethereum/go-ethereum to v1.14.8 fix(deps): update module github.com/ethereum/go-ethereum to v1.14.9 Sep 19, 2024
@renovate renovate bot force-pushed the renovate/github.com-ethereum-go-ethereum-1.x branch from efb0925 to 7f0ac5c Compare September 28, 2024 02:33
@renovate renovate bot changed the title fix(deps): update module github.com/ethereum/go-ethereum to v1.14.9 fix(deps): update module github.com/ethereum/go-ethereum to v1.14.10 Sep 28, 2024
@renovate renovate bot force-pushed the renovate/github.com-ethereum-go-ethereum-1.x branch from 7f0ac5c to 5cd759e Compare October 2, 2024 02:35
@renovate renovate bot changed the title fix(deps): update module github.com/ethereum/go-ethereum to v1.14.10 fix(deps): update module github.com/ethereum/go-ethereum to v1.14.11 Oct 2, 2024
@renovate renovate bot force-pushed the renovate/github.com-ethereum-go-ethereum-1.x branch 2 times, most recently from e3163c5 to 1d49464 Compare November 21, 2024 08:58
@renovate renovate bot changed the title fix(deps): update module github.com/ethereum/go-ethereum to v1.14.11 fix(deps): update module github.com/ethereum/go-ethereum to v1.14.12 Nov 21, 2024
@renovate renovate bot force-pushed the renovate/github.com-ethereum-go-ethereum-1.x branch from 1d49464 to e6f2450 Compare December 22, 2024 20:52
@renovate renovate bot force-pushed the renovate/github.com-ethereum-go-ethereum-1.x branch from e6f2450 to 01d27d0 Compare January 31, 2025 07:30
@renovate renovate bot changed the title fix(deps): update module github.com/ethereum/go-ethereum to v1.14.12 fix(deps): update module github.com/ethereum/go-ethereum to v1.14.13 Jan 31, 2025
@renovate renovate bot force-pushed the renovate/github.com-ethereum-go-ethereum-1.x branch from 01d27d0 to fff46a8 Compare February 8, 2025 07:08
@renovate renovate bot changed the title fix(deps): update module github.com/ethereum/go-ethereum to v1.14.13 fix(deps): update module github.com/ethereum/go-ethereum to v1.15.0 Feb 8, 2025
@renovate renovate bot force-pushed the renovate/github.com-ethereum-go-ethereum-1.x branch from fff46a8 to 5af38dd Compare February 15, 2025 03:15
@renovate renovate bot changed the title fix(deps): update module github.com/ethereum/go-ethereum to v1.15.0 fix(deps): update module github.com/ethereum/go-ethereum to v1.15.1 Feb 15, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants