Skip to content

Bump the dependencies group across 1 directory with 2 updates#109

Merged
pk910 merged 1 commit intomasterfrom
dependabot/go_modules/dependencies-025e0af55e
Jul 22, 2025
Merged

Bump the dependencies group across 1 directory with 2 updates#109
pk910 merged 1 commit intomasterfrom
dependabot/go_modules/dependencies-025e0af55e

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Jul 22, 2025

Bumps the dependencies group with 2 updates in the / directory: github.com/ethereum/go-ethereum and github.com/swaggo/swag.

Updates github.com/ethereum/go-ethereum from 1.15.11 to 1.16.1

Release notes

Sourced from github.com/ethereum/go-ethereum's releases.

Repair Actuals (v1.16.1)

This is a patch release, fixing some regressions with v1.16.0.

  • abigen v2 now creates TryPack methods that return an error for invalid parameter values. (#31692)
  • geth --vmtrace, enabling the live tracer, did not work due to a bug. (#32107)
  • The blockTimestamp as returned by eth_getLogs is now hex-encoded. (#32129)
  • eth_getLogs and related endpoints now limit the number of queried addresses to 1000. (#31876)
  • eth_getTransactionReceipt should be a bit faster. (#32021)
  • A buggy interaction of the new archive node and snap sync is resolved. (#32104)
  • A rare crash in geth --dev mode related to debug_setHead is resolved. (#31871)
  • Release archives now contain statically-linked binaries. (#32118)

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


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

Terran Rivets (v1.16.0)

We are proud to present the v1.16.0 release, introducing path-based archive node and several other improvements to the state database implementation. There is also the usual amount of bug fixes and small improvements.

Archive Node

This release includes a new, experimental implementation of the archive node (--gcmode=archive). As an archive node, Geth stores all historical states, and can thus retrieve account balances, nonces and storage values at old blocks.

In previous versions of Geth, running as an archive node was only possible using the legacy 'hash-based' state storage scheme (--state.scheme=hash). When syncing mainnet the resulting database would reach sizes larger than 20TB, and it all had to be stored on a high-speed SSD.

The new implementation provides the state archive in combination with 'path-based' storage (--state.scheme=path). Comparing to hash-based storage, there are three basic advantages:

  • Geth can be configured to store historical states on a dedicated disk, and it doesn't have to be an SSD (it will be ~3x faster to access when stored on SSD though).
  • For the full state history of mainnet, the state database will have a size of ~1.9TB (this is without the tx-by-hash index and log index).
  • The amount of historical state kept by the node is configurable as well. By default, Geth will keep historical state for the last 90k blocks, and older state is pruned from disk automatically as the chain advances. You can set the number of states to keep with the --history.state flag.

Notably, there is also one drawback with the new archive node: eth_getProof is not supported for historical blocks. With --state.scheme=path, Geth can only serve state proofs for the latest 128 blocks. We believe this is an acceptable tradeoff. If you need older proofs, you can still a hash-based archive node as before, but we'd also really like to hear about your use case. Please contact us via email at geth@ethereum.org so we can learn more, and possibly find a solution that can be implemented within Geth.

How it works

With 'path-based' state storage, Geth keeps exactly one full state in the database. Specifically, the persistent state is 128 blocks in the past. For newer blocks up to the head, forward diffs are kept in memory. In order to support rolling back to blocks older than head-128, Geth also keeps 'state history' in the form of reverse key-value diffs. When the chain is reset to an old block, these diffs are applied to the persistent state, going backwards one diff at a time until the target block is reached.

A reverse state diff contains the previous values of all modified accounts and storage locations for a specific block. There is a reverse diff for each historical block. This makes reverse diffs suitable for storage into the 'freezer', i.e. they do not need to live within Pebble/LevelDB.

... (truncated)

Commits
  • 12b4131 version: release go-ethereum v1.16.1 stable
  • bc67e7d accounts/abi: generate TryPack* methods for abigen v2 bindings (#31692)
  • 3fb6499 eth/catalyst: fix edge case in simulated backend (#31871)
  • 62a17fd core/rawdb, triedb/pathdb: fix two inaccurate comments (#32130)
  • fe7a77a core/types: blockTimestamp in logs is hex-encoded (#32129)
  • cbd6ed9 core/filtermaps: define APIs for map, epoch calculation (#31659)
  • cc8d58f internal: remove unused shh and swarm modules from console (#32073)
  • f70aaa8 ethapi: reduce some of the wasted effort in GetTransactionReceipt (#32021)
  • 7c180f8 internal/ethapi: prealloc map for the txpool api (#32110)
  • 2055196 eth/catalyst: fix the log message in newPayloadV4 (#32125)
  • Additional commits viewable in compare view

Updates github.com/swaggo/swag from 1.16.4 to 1.16.5

Release notes

Sourced from github.com/swaggo/swag's releases.

v1.16.5

What's Changed

New Contributors

Full Changelog: swaggo/swag@v1.16.4...v1.16.5

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the dependencies group with 2 updates in the / directory: [github.com/ethereum/go-ethereum](https://github.com/ethereum/go-ethereum) and [github.com/swaggo/swag](https://github.com/swaggo/swag).


Updates `github.com/ethereum/go-ethereum` from 1.15.11 to 1.16.1
- [Release notes](https://github.com/ethereum/go-ethereum/releases)
- [Commits](ethereum/go-ethereum@v1.15.11...v1.16.1)

Updates `github.com/swaggo/swag` from 1.16.4 to 1.16.5
- [Release notes](https://github.com/swaggo/swag/releases)
- [Changelog](https://github.com/swaggo/swag/blob/master/.goreleaser.yml)
- [Commits](swaggo/swag@v1.16.4...v1.16.5)

---
updated-dependencies:
- dependency-name: github.com/ethereum/go-ethereum
  dependency-version: 1.16.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: github.com/swaggo/swag
  dependency-version: 1.16.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Jul 22, 2025
@pk910 pk910 merged commit 8431a72 into master Jul 22, 2025
2 checks passed
@dependabot dependabot bot deleted the dependabot/go_modules/dependencies-025e0af55e branch July 22, 2025 09:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant