build(deps): Bump the all-go group across 6 directories with 5 updates
Type: Pull Request
State: Open
Association: Contributor
Comments: 0
(10 months ago)
(10 months ago)
T:dependencies
Bumps the all-go group with 2 updates in the / directory: connectrpc.com/connect and github.com/celestiaorg/go-header.
Bumps the all-go group with 1 update in the /execution/evm directory: github.com/ethereum/go-ethereum.
Bumps the all-go group with 2 updates in the /execution/grpc directory: connectrpc.com/connect and 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 2 updates in the /test/e2e directory: github.com/ethereum/go-ethereum and github.com/celestiaorg/tastora.
Updates connectrpc.com/connect from 1.18.1 to 1.19.0
Release notes
Sourced from connectrpc.com/connect's releases.
v1.19.0
This release introduces the highly requested "simple" flag for code generation, making Connect significantly more ergonomic for everyday RPC development.
The new simple flag in protoc-gen-connect-go generates cleaner, more intuitive client and handler interfaces that eliminate request/response wrappers for most use cases. This addresses community feedback about verbosity and provides a more straightforward API. When enabled, metadata (headers/trailers) can be passed through context instead of explicit wrapper objects, optimizing for the common case where developers don't need direct access to HTTP headers.
What's Changed
Enhancements
- Add simple flag for more ergonomic generated code by
@bufdevand@smaye81in connectrpc/connect-go#851- Update Go to v1.24 and document http.Protocol use removing the dependency on
golang.org/x/net/http2by@maxbrunetin connectrpc/connect-go#873, connectrpc/connect-go#877- Add support for Edition 2024 by
@emcfarlanein connectrpc/connect-go#878Bugfixes
- Include valid spec and headers when calling recover handler for streaming RPCs by
@jhumpin connectrpc/connect-go#817Other changes
- Go version support updated to latest two instead of three by
@jhumpin connectrpc/connect-go#837- CI testing improvements by
@pkwarrenand@jhumpin connectrpc/connect-go#838, connectrpc/connect-go#839- Code quality improvements by
@mattrobenoltand@bufdevin connectrpc/connect-go#841, connectrpc/connect-go#867- Documentation improvements by
@adlionand@stefanvanburenin connectrpc/connect-go#821, connectrpc/connect-go#880New Contributors
@adlionmade their first contribution in connectrpc/connect-go#821@maxbrunetmade their first contribution in connectrpc/connect-go#873@stefanvanburenmade their first contribution in connectrpc/connect-go#880Full Changelog: https://github.com/connectrpc/connect-go/compare/v1.18.1...v1.19.0
Commits
0f2c5b2Prepare for v1.19.0 (#883)a9ad76eUpdate README to show simple flag usage (#864)cf078a1Removegolang.org/x/net/http2dependency from tests (#877)5cb2412Fix several GoDoc comments (#880)c4e5b1fAdd support for Edition 2024 (#878)4c22f0aBump minimum Go version to v1.24 and document H2C with stdlib (#873)fc02264Bump actions/setup-go from 5 to 6 (#875)f2433b1Add simple flag (#851)e99fdd9Bump actions/checkout from 4 to 5 (#866)0463966Standardize on For over From (#867)- Additional commits viewable in compare view
Updates github.com/celestiaorg/go-header from 0.7.2 to 0.7.3
Release notes
Sourced from github.com/celestiaorg/go-header's releases.
v0.7.3
What's Changed
- fix(p2p): ensure validation for local submission by
@Wondertanin celestiaorg/go-header#350Full Changelog: https://github.com/celestiaorg/go-header/compare/v0.7.2...v0.7.3
Commits
23c2054fix(p2p): ensure validation for local submission (#350)- See full diff in compare view
Updates github.com/ethereum/go-ethereum from 1.16.3 to 1.16.4
Release notes
Sourced from github.com/ethereum/go-ethereum's releases.
Bioelectric Infusers (v1.16.4)
This release enables the Osaka (Fusaka) fork on testnets. We also enable two blob-parameter only (BPO) forks for the testnets.
Holesky
- Osaka at time
1759308480(2025-10-01 08:48:00 UTC)- BPO1 at time
1759800000(2025-10-07 01:20:00 UTC)- BPO2 at time
1760389824(2025-10-13 21:10:24 UTC)Sepolia
- Osaka at time
1760427360(2025-10-14 07:36:00 UTC)- BPO1 at time
1761017184(2025-10-21 03:26:24 UTC)- BPO2 at time
1761607008(2025-10-27 23:16:48 UTC)Hoodi
- Osaka at time
1761677592(2025-10-28 18:53:12 UTC)- BPO1 at time
1762365720(2025-11-05 18:02:00 UTC)- BPO2 at time
1762955544(2025-11-12 13:52:24 UTC)With BPO1 and BPO2, the blob capacity of these networks will increase as follows:
- BPO1: max blobs/block:
15, target:10- BPO2: max blobs/block:
21, target:14As of this release, the default block gas limit is set to 60M gas. This is the recommended limit that we, as client authors, feel comfortable with.
CLI commands
geth snapshotand related commands no longer fail due to not finding the trie journal file. (#32531)- A regression in
geth snapshot dumpandgeth export-preimagesis resolved. (#32650)- We have added an experimental zkVM 'guest program',
keeper, to the source tree. (#32543, #32638, #32736)RPC
eth_calland related operations were fixed to not apply the EIP-7825 per-transaction gas limit when executing under Osaka fork rules. (#32641)- For
eth_getLogsand other log filtering operations, it is now possible to configure the number of addresses allowed in the filter using the--rpc.logquerylimitflag. (#32327)- Starting Geth with the
--state.size-trackingoption enables collection of precise state size numbers, which can be read using thedebug_stateSizeendpoint. (#32362)- The new
debug_executionWitnessanddebug_executionWitnessByHashmethods create a block witness for stateless execution. (#32216)Tracing & ABIGEN
- There is a new
CodeChangeV2hook, with aCodeChangeReasonparameter. (#32525, #32535)- In certain corner-cases related to SELFDESTRUCT,
OnBalanceChangewas not invoked. (#32526)BoundContractinaccounts/abi/bind/v2now exposes anAddressmethod. (#32559)Core
- The EVM MODEXP precompiled account has seen some optimizations to improve performance for worst-case inputs. We are especially grateful for
@GottfriedHerold's work on improving the underlying math/big library. (#32527, #32553, #32568, #32576)
... (truncated)
Commits
41714b4Merge branch 'master' into release/1.16b964b65version: release go-ethereum v1.16.4 stable0977a02params: schedule Osaka/BPO1/BPO2 for testnets (#32735)7d8ccddall: refactor to use builtin max/min (#32694)bacc150core/txpool: add eip2681 check for incoming transactions (#32726)ad484fcbuild: upgrade to execution-spec-tests v5.1.0 (#32742)89158aacore/txpool/blobpool: convert and add one-by-one (#32718)965ffffall: add bpo1 and bpo2 overrides (#32737)7611f35accounts/abi/bind: fix data race in TestWaitDeployedCornerCases (#32740)1c706d1accounts/keystore: use ticker to avoid timer allocations (#32732)- Additional commits viewable in compare view
Updates connectrpc.com/connect from 1.18.1 to 1.19.0
Release notes
Sourced from connectrpc.com/connect's releases.
v1.19.0
This release introduces the highly requested "simple" flag for code generation, making Connect significantly more ergonomic for everyday RPC development.
The new simple flag in protoc-gen-connect-go generates cleaner, more intuitive client and handler interfaces that eliminate request/response wrappers for most use cases. This addresses community feedback about verbosity and provides a more straightforward API. When enabled, metadata (headers/trailers) can be passed through context instead of explicit wrapper objects, optimizing for the common case where developers don't need direct access to HTTP headers.
What's Changed
Enhancements
- Add simple flag for more ergonomic generated code by
@bufdevand@smaye81in connectrpc/connect-go#851- Update Go to v1.24 and document http.Protocol use removing the dependency on
golang.org/x/net/http2by@maxbrunetin connectrpc/connect-go#873, connectrpc/connect-go#877- Add support for Edition 2024 by
@emcfarlanein connectrpc/connect-go#878Bugfixes
- Include valid spec and headers when calling recover handler for streaming RPCs by
@jhumpin connectrpc/connect-go#817Other changes
- Go version support updated to latest two instead of three by
@jhumpin connectrpc/connect-go#837- CI testing improvements by
@pkwarrenand@jhumpin connectrpc/connect-go#838, connectrpc/connect-go#839- Code quality improvements by
@mattrobenoltand@bufdevin connectrpc/connect-go#841, connectrpc/connect-go#867- Documentation improvements by
@adlionand@stefanvanburenin connectrpc/connect-go#821, connectrpc/connect-go#880New Contributors
@adlionmade their first contribution in connectrpc/connect-go#821@maxbrunetmade their first contribution in connectrpc/connect-go#873@stefanvanburenmade their first contribution in connectrpc/connect-go#880Full Changelog: https://github.com/connectrpc/connect-go/compare/v1.18.1...v1.19.0
Commits
0f2c5b2Prepare for v1.19.0 (#883)a9ad76eUpdate README to show simple flag usage (#864)cf078a1Removegolang.org/x/net/http2dependency from tests (#877)5cb2412Fix several GoDoc comments (#880)c4e5b1fAdd support for Edition 2024 (#878)4c22f0aBump minimum Go version to v1.24 and document H2C with stdlib (#873)fc02264Bump actions/setup-go from 5 to 6 (#875)f2433b1Add simple flag (#851)e99fdd9Bump actions/checkout from 4 to 5 (#866)0463966Standardize on For over From (#867)- Additional commits viewable in compare view
Updates github.com/evstack/ev-node from 1.0.0-beta.4 to 1.0.0-beta.5
Commits
58df585chore: connect visualiser (#2705)51283d0build(deps): Bump the all-go group across 3 directories with 4 updates (#2700)b2182e7feat(config): add--clear-cacheflag (#2701)dd98789test: use b.Loop() to simplify the code and improve performance (#2704)4aed9fdrefactor(block): speed-up cache by retrieving only next pending event (#2702)2ccc6e6test: omit unnecessary reassignment (#2703)aa4badatest: correct iteration over pids in SUT (#2693)686f465feat(store): allow rollback past included height for sync node + improve roll...9fd66d0chore: using testing.B.Loop (#2695)bc00cfetest(block): Add benchmark for syncing package (#2694)- Additional commits viewable in compare view
Updates github.com/evstack/ev-node from 1.0.0-beta.4 to 1.0.0-beta.5
Commits
58df585chore: connect visualiser (#2705)51283d0build(deps): Bump the all-go group across 3 directories with 4 updates (#2700)b2182e7feat(config): add--clear-cacheflag (#2701)dd98789test: use b.Loop() to simplify the code and improve performance (#2704)4aed9fdrefactor(block): speed-up cache by retrieving only next pending event (#2702)2ccc6e6test: omit unnecessary reassignment (#2703)aa4badatest: correct iteration over pids in SUT (#2693)686f465feat(store): allow rollback past included height for sync node + improve roll...9fd66d0chore: using testing.B.Loop (#2695)bc00cfetest(block): Add benchmark for syncing package (#2694)- Additional commits viewable in compare view
Updates github.com/celestiaorg/tastora from 0.5.0 to 0.5.1
Release notes
Sourced from github.com/celestiaorg/tastora's releases.
v0.5.1
What's Changed
- chore: fix port collision when concurrent container creation happens by
@chattonin celestiaorg/tastora#125Full Changelog: https://github.com/celestiaorg/tastora/compare/v0.5.0...v0.5.1
Commits
df207b2chore: fix port collision when concurrent container creation happens (#125)- See full diff in compare view
Updates github.com/ethereum/go-ethereum from 1.16.3 to 1.16.4
Release notes
Sourced from github.com/ethereum/go-ethereum's releases.
Bioelectric Infusers (v1.16.4)
This release enables the Osaka (Fusaka) fork on testnets. We also enable two blob-parameter only (BPO) forks for the testnets.
Holesky
- Osaka at time
1759308480(2025-10-01 08:48:00 UTC)- BPO1 at time
1759800000(2025-10-07 01:20:00 UTC)- BPO2 at time
1760389824(2025-10-13 21:10:24 UTC)Sepolia
- Osaka at time
1760427360(2025-10-14 07:36:00 UTC)- BPO1 at time
1761017184(2025-10-21 03:26:24 UTC)- BPO2 at time
1761607008(2025-10-27 23:16:48 UTC)Hoodi
- Osaka at time
1761677592(2025-10-28 18:53:12 UTC)- BPO1 at time
1762365720(2025-11-05 18:02:00 UTC)- BPO2 at time
1762955544(2025-11-12 13:52:24 UTC)With BPO1 and BPO2, the blob capacity of these networks will increase as follows:
- BPO1: max blobs/block:
15, target:10- BPO2: max blobs/block:
21, target:14As of this release, the default block gas limit is set to 60M gas. This is the recommended limit that we, as client authors, feel comfortable with.
CLI commands
geth snapshotand related commands no longer fail due to not finding the trie journal file. (#32531)- A regression in
geth snapshot dumpandgeth export-preimagesis resolved. (#32650)- We have added an experimental zkVM 'guest program',
keeper, to the source tree. (#32543, #32638, #32736)RPC
eth_calland related operations were fixed to not apply the EIP-7825 per-transaction gas limit when executing under Osaka fork rules. (#32641)- For
eth_getLogsand other log filtering operations, it is now possible to configure the number of addresses allowed in the filter using the--rpc.logquerylimitflag. (#32327)- Starting Geth with the
--state.size-trackingoption enables collection of precise state size numbers, which can be read using thedebug_stateSizeendpoint. (#32362)- The new
debug_executionWitnessanddebug_executionWitnessByHashmethods create a block witness for stateless execution. (#32216)Tracing & ABIGEN
- There is a new
CodeChangeV2hook, with aCodeChangeReasonparameter. (#32525, #32535)- In certain corner-cases related to SELFDESTRUCT,
OnBalanceChangewas not invoked. (#32526)BoundContractinaccounts/abi/bind/v2now exposes anAddressmethod. (#32559)Core
- The EVM MODEXP precompiled account has seen some optimizations to improve performance for worst-case inputs. We are especially grateful for
@GottfriedHerold's work on improving the underlying math/big library. (#32527, #32553, #32568, #32576)
... (truncated)
Commits
41714b4Merge branch 'master' into release/1.16b964b65version: release go-ethereum v1.16.4 stable0977a02params: schedule Osaka/BPO1/BPO2 for testnets (#32735)7d8ccddall: refactor to use builtin max/min (#32694)bacc150core/txpool: add eip2681 check for incoming transactions (#32726)ad484fcbuild: upgrade to execution-spec-tests v5.1.0 (#32742)89158aacore/txpool/blobpool: convert and add one-by-one (#32718)965ffffall: add bpo1 and bpo2 overrides (#32737)7611f35accounts/abi/bind: fix data race in TestWaitDeployedCornerCases (#32740)1c706d1accounts/keystore: use ticker to avoid timer allocations (#32732)- Additional commits viewable in compare view
Updates github.com/celestiaorg/tastora from 0.5.0 to 0.5.1
Release notes
Sourced from github.com/celestiaorg/tastora's releases.
v0.5.1
What's Changed
- chore: fix port collision when concurrent container creation happens by
@chattonin celestiaorg/tastora#125Full Changelog: https://github.com/celestiaorg/tastora/compare/v0.5.0...v0.5.1
Commits
df207b2chore: fix port collision when concurrent container creation happens (#125)- See full diff 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
Pull Request Statistics
1
14
+70
-66
Package Dependencies
github.com/ethereum/go-ethereum
go
1.16.3 → 1.16.4
Patch
github.com/celestiaorg/go-header
go
0.7.2 → 0.7.3
Patch
github.com/celestiaorg/tastora
go
0.5.0 → 0.5.1
Patch
Technical Details
| ID: | 8791045 |
| UUID: | 2872541801 |
| Node ID: | PR_kwDOFABrEc6rN4Jp |
| Host: | GitHub |
| Repository: | evstack/ev-node |
| Merge State: | Unknown |