build(deps): Bump the all-go group across 6 directories with 4 updates
Type: Pull Request
State: Open
Association: Unknown
Comments: 3
(7 months ago)
(7 months ago)
T:dependencies
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
2002a06go.mod: update golang.org/x dependencies- See full diff in compare view
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_sendRawTransactionhas 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_subscribenow supports atransactionReceiptssubscription. There is also a wrapper in ethclient for this new subscription type. (#32697, #32869)eth_simulateV1was fixed to return the block timestamp in logs, likeeth_getLogsdoes. (#32831)- In the abigen v2 runtime,
BoundContract.Transferwill now verify that the contract has a payable fallback or receive method. (#32374)- A
keccak256preimagetracer 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.metermetric 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:
- 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.
Commits
737ffd1Merge branch 'master' into release/1.1632ccb54version: release go-ethereum v1.16.5 stable7c107c2p2p/discover: remove hot-spin in table refresh trigger (#32912)40505a9eth/protocols/eth: reject message containing duplicated txs and drop peer (#3...3cfc334rpc: fix flaky test TestServerWebsocketReadLimit (#32889)f6064f3internal/ethapi: convert legacy blobtx proofs in sendRawTransaction (#32849)55a5320accounts/abi: check presence of payable fallback or receive before proceeding...e03d97acore/txpool/legacypool: fix pricedList updates (#32906)fb8d229eth: do not warn on switching from snap sync to full sync (#32900)00f6f2beth/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
de40783chore: fix some comments (#2762)5a0a8fafeat: add Prometheus metrics for DA submission failures (#2756)c315175build(deps): Bump the all-go group across 5 directories with 6 updates (#2757)0dc7b27fix(block/syncing): save data to p2p stores (#2736)f09e382chore: remove extra spaces in the comments (#2754)390f559build(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
de40783chore: fix some comments (#2762)5a0a8fafeat: add Prometheus metrics for DA submission failures (#2756)c315175build(deps): Bump the all-go group across 5 directories with 6 updates (#2757)0dc7b27fix(block/syncing): save data to p2p stores (#2736)f09e382chore: remove extra spaces in the comments (#2754)390f559build(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
- chore: remove unused reth flag by
@chattonin celestiaorg/tastora#142Full Changelog: https://github.com/celestiaorg/tastora/compare/v0.7.2...v0.7.3
v0.7.2
What's Changed
- Fix cel-key interactive prompts by
@gupadhyayain celestiaorg/tastora#140- feat: add support for submitting and passing governance proposals by
@chattonin celestiaorg/tastora#141New Contributors
@gupadhyayamade their first contribution in celestiaorg/tastora#140Full 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_sendRawTransactionhas 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_subscribenow supports atransactionReceiptssubscription. There is also a wrapper in ethclient for this new subscription type. (#32697, #32869)eth_simulateV1was fixed to return the block timestamp in logs, likeeth_getLogsdoes. (#32831)- In the abigen v2 runtime,
BoundContract.Transferwill now verify that the contract has a payable fallback or receive method. (#32374)- A
keccak256preimagetracer 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.metermetric 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:
- 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.
Commits
737ffd1Merge branch 'master' into release/1.1632ccb54version: release go-ethereum v1.16.5 stable7c107c2p2p/discover: remove hot-spin in table refresh trigger (#32912)40505a9eth/protocols/eth: reject message containing duplicated txs and drop peer (#3...3cfc334rpc: fix flaky test TestServerWebsocketReadLimit (#32889)f6064f3internal/ethapi: convert legacy blobtx proofs in sendRawTransaction (#32849)55a5320accounts/abi: check presence of payable fallback or receive before proceeding...e03d97acore/txpool/legacypool: fix pricedList updates (#32906)fb8d229eth: do not warn on switching from snap sync to full sync (#32900)00f6f2beth/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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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
github.com/ethereum/go-ethereum
go
1.16.4 → 1.16.5
Patch
github.com/celestiaorg/tastora
go
0.7.1 → 0.7.3
Patch
Technical Details
| ID: | 10419058 |
| UUID: | 3534037781 |
| Node ID: | PR_kwDOFABrEc6ut5Mz |
| Host: | GitHub |
| Repository: | evstack/ev-node |