An open index of dependabot pull requests across open source projects.

build(deps): Bump the all-go group across 6 directories with 4 updates

Open
Number: #2772
Type: Pull Request
State: Open
Author: dependabot[bot] dependabot[bot]
Association: Unknown
Comments: 3
Created: October 20, 2025 at 09:39 PM UTC
(7 months ago)
Updated: October 21, 2025 at 10:07 AM UTC
(7 months ago)
Labels:
T:dependencies
Description:

Bumps the all-go group with 1 update in the / directory: golang.org/x/net.
Bumps the all-go group with 1 update in the /execution/evm directory: github.com/ethereum/go-ethereum.
Bumps the all-go group with 1 update in the /execution/grpc directory: github.com/evstack/ev-node.
Bumps the all-go group with 1 update in the /sequencers/single directory: github.com/evstack/ev-node.
Bumps the all-go group with 1 update in the /test/docker-e2e directory: github.com/celestiaorg/tastora.
Bumps the all-go group with 1 update in the /test/e2e directory: github.com/ethereum/go-ethereum.

Updates golang.org/x/net from 0.45.0 to 0.46.0

Commits

Updates github.com/ethereum/go-ethereum from 1.16.4 to 1.16.5

Release notes

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

Coolant Cells (v1.16.5)

This is a maintenance release. We are issuing this release mostly to add a conversion path for blob proofs submitted via eth_sendRawTransaction. See https://blog.ethereum.org/2025/10/15/fusaka-blob-update for more information.

RPC

  • eth_sendRawTransaction has an upgrade path for blob proofs after the Fusaka fork. Note this is temporary. We will remove support for blob proof conversion during the v1.17.x release cycle, please update RPC client libraries to support cell-level (v1) proofs. (#32849)
  • eth_subscribe now supports a transactionReceipts subscription. There is also a wrapper in ethclient for this new subscription type. (#32697, #32869)
  • eth_simulateV1 was fixed to return the block timestamp in logs, like eth_getLogs does. (#32831)
  • In the abigen v2 runtime, BoundContract.Transfer will now verify that the contract has a payable fallback or receive method. (#32374)
  • A keccak256preimage tracer has been added. (#32569)

Networking

  • The eth protocol handler will now drop peers sending duplicated transactions. This is to unify behavior with other client implementations. (#32728)
  • A regression in the discovery system could cause high CPU usage under synthetic conditions (i.e. in tests). (#32912)
  • A very rare shutdown hang related to peer discovery is resolved. (#32572)
  • The eth protocol test suite has a new post-merge test chain and saw some bug fixes for flakey tests. (#32834, #32850)

Core

  • Our freezer implementation now supports partial reads, i.e. reading just a slice out of a larger stored value. This functionality is used for the archive node state history. (#32132)
  • The trie database now implements a storage layer for 'trie history', a precursor to serving historical state proofs for the path-based archive node. (#32596)
  • The txpool/valid.meter metric has been corrected. (#32845)
  • The engine API saw some fixes related to fork compatibility checks. (#32800, #32731)

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


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

Commits
  • 737ffd1 Merge branch 'master' into release/1.16
  • 32ccb54 version: release go-ethereum v1.16.5 stable
  • 7c107c2 p2p/discover: remove hot-spin in table refresh trigger (#32912)
  • 40505a9 eth/protocols/eth: reject message containing duplicated txs and drop peer (#3...
  • 3cfc334 rpc: fix flaky test TestServerWebsocketReadLimit (#32889)
  • f6064f3 internal/ethapi: convert legacy blobtx proofs in sendRawTransaction (#32849)
  • 55a5320 accounts/abi: check presence of payable fallback or receive before proceeding...
  • e03d97a core/txpool/legacypool: fix pricedList updates (#32906)
  • fb8d229 eth: do not warn on switching from snap sync to full sync (#32900)
  • 00f6f2b eth/catalyst: remove useless log on enabling Engine API (#32901)
  • Additional commits viewable in compare view

Updates github.com/evstack/ev-node from 1.0.0-beta.7 to 1.0.0-beta.8

Commits
  • de40783 chore: fix some comments (#2762)
  • 5a0a8fa feat: add Prometheus metrics for DA submission failures (#2756)
  • c315175 build(deps): Bump the all-go group across 5 directories with 6 updates (#2757)
  • 0dc7b27 fix(block/syncing): save data to p2p stores (#2736)
  • f09e382 chore: remove extra spaces in the comments (#2754)
  • 390f559 build(deps): Bump the go_modules group across 3 directories with 1 update (#2...
  • See full diff in compare view

Updates github.com/evstack/ev-node from 1.0.0-beta.7 to 1.0.0-beta.8

Commits
  • de40783 chore: fix some comments (#2762)
  • 5a0a8fa feat: add Prometheus metrics for DA submission failures (#2756)
  • c315175 build(deps): Bump the all-go group across 5 directories with 6 updates (#2757)
  • 0dc7b27 fix(block/syncing): save data to p2p stores (#2736)
  • f09e382 chore: remove extra spaces in the comments (#2754)
  • 390f559 build(deps): Bump the go_modules group across 3 directories with 1 update (#2...
  • See full diff in compare view

Updates github.com/celestiaorg/tastora from 0.7.1 to 0.7.3

Release notes

Sourced from github.com/celestiaorg/tastora's releases.

v0.7.3

What's Changed

Full Changelog: https://github.com/celestiaorg/tastora/compare/v0.7.2...v0.7.3

v0.7.2

What's Changed

New Contributors

Full Changelog: https://github.com/celestiaorg/tastora/compare/v0.7.1...v0.7.2

Commits

Updates github.com/ethereum/go-ethereum from 1.16.4 to 1.16.5

Release notes

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

Coolant Cells (v1.16.5)

This is a maintenance release. We are issuing this release mostly to add a conversion path for blob proofs submitted via eth_sendRawTransaction. See https://blog.ethereum.org/2025/10/15/fusaka-blob-update for more information.

RPC

  • eth_sendRawTransaction has an upgrade path for blob proofs after the Fusaka fork. Note this is temporary. We will remove support for blob proof conversion during the v1.17.x release cycle, please update RPC client libraries to support cell-level (v1) proofs. (#32849)
  • eth_subscribe now supports a transactionReceipts subscription. There is also a wrapper in ethclient for this new subscription type. (#32697, #32869)
  • eth_simulateV1 was fixed to return the block timestamp in logs, like eth_getLogs does. (#32831)
  • In the abigen v2 runtime, BoundContract.Transfer will now verify that the contract has a payable fallback or receive method. (#32374)
  • A keccak256preimage tracer has been added. (#32569)

Networking

  • The eth protocol handler will now drop peers sending duplicated transactions. This is to unify behavior with other client implementations. (#32728)
  • A regression in the discovery system could cause high CPU usage under synthetic conditions (i.e. in tests). (#32912)
  • A very rare shutdown hang related to peer discovery is resolved. (#32572)
  • The eth protocol test suite has a new post-merge test chain and saw some bug fixes for flakey tests. (#32834, #32850)

Core

  • Our freezer implementation now supports partial reads, i.e. reading just a slice out of a larger stored value. This functionality is used for the archive node state history. (#32132)
  • The trie database now implements a storage layer for 'trie history', a precursor to serving historical state proofs for the path-based archive node. (#32596)
  • The txpool/valid.meter metric has been corrected. (#32845)
  • The engine API saw some fixes related to fork compatibility checks. (#32800, #32731)

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


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

Commits
  • 737ffd1 Merge branch 'master' into release/1.16
  • 32ccb54 version: release go-ethereum v1.16.5 stable
  • 7c107c2 p2p/discover: remove hot-spin in table refresh trigger (#32912)
  • 40505a9 eth/protocols/eth: reject message containing duplicated txs and drop peer (#3...
  • 3cfc334 rpc: fix flaky test TestServerWebsocketReadLimit (#32889)
  • f6064f3 internal/ethapi: convert legacy blobtx proofs in sendRawTransaction (#32849)
  • 55a5320 accounts/abi: check presence of payable fallback or receive before proceeding...
  • e03d97a core/txpool/legacypool: fix pricedList updates (#32906)
  • fb8d229 eth: do not warn on switching from snap sync to full sync (#32900)
  • 00f6f2b eth/catalyst: remove useless log on enabling Engine API (#32901)
  • Additional commits viewable in compare view

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
Package Dependencies
Ecosystem:
go
Version Change:
0.45.0 → 0.46.0
Update Type:
Minor
Ecosystem:
go
Version Change:
1.16.4 → 1.16.5
Update Type:
Patch
Ecosystem:
go
Version Change:
0.7.1 → 0.7.3
Update Type:
Patch
Ecosystem:
go
Version Change:
1.0.0-beta.7 → 1.0.0-beta.8
Technical Details
ID: 10419058
UUID: 3534037781
Node ID: PR_kwDOFABrEc6ut5Mz
Host: GitHub
Repository: evstack/ev-node