Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 29, 2025

Bumps the go-dependencies group with 19 updates in the / directory:

Package From To
github.com/IBM/sarama 1.45.2 1.46.1
github.com/OffchainLabs/prysm/v6 6.0.5-rc.1.0.20250825143102-240cd1d0588a 6.1.0
github.com/ethereum/go-ethereum 1.16.1 1.16.4
github.com/ferranbt/fastssz 0.1.4 1.0.0
github.com/go-co-op/gocron/v2 2.16.2 2.16.6
github.com/huandu/go-sqlbuilder 1.36.0 1.37.0
github.com/multiformats/go-multiaddr 0.16.0 0.16.1
github.com/prometheus/client_golang 1.23.0 1.23.2
github.com/redis/go-redis/v9 9.7.3 9.14.0
github.com/sony/gobreaker/v2 2.1.0 2.2.1
github.com/spf13/cobra 1.9.1 1.10.1
github.com/testcontainers/testcontainers-go 0.38.0 0.39.0
github.com/testcontainers/testcontainers-go/modules/postgres 0.38.0 0.39.0
go.opentelemetry.io/otel 1.37.0 1.38.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace 1.37.0 1.38.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp 1.37.0 1.38.0
go.opentelemetry.io/otel/exporters/prometheus 0.57.0 0.60.0
go.uber.org/mock 0.5.2 0.6.0
golang.org/x/time 0.12.0 0.13.0

Updates github.com/IBM/sarama from 1.45.2 to 1.46.1

Release notes

Sourced from github.com/IBM/sarama's releases.

Version 1.46.1 (2025-09-18)

[!NOTE]
The go.mod directive has been bumped to 1.24.0 as the minimum version of Go required for the module. This was necessary to continue to receive updates from some of the third party dependencies that Sarama makes use of.

What's Changed

🎉 New Features / Improvements

🐛 Fixes

📦 Dependency updates

🔧 Maintenance

New Contributors

Full Changelog: IBM/sarama@v1.46.0...v1.46.1

Version 1.46.0 (2025-08-25)

[!NOTE]
This release contains significant changes. Notably Sarama will now use the ApiVersionRequest response from each broker to aid in selecting the protocol version to use. The existing Version field in sarama.Config will continue to provide a "pinning" mechanism, but can safely be set to a maximum or higher value than the remote cluster and sarama will sensibly pick compatible versions. There is also a performance improvement relating to MetadataRequests whereby Sarama will avoid having more than a single request to each broker in-flight at any given time. These new (optimal) behaviour is on by default can be opt-ed out via the Metadata.SingleFlight field in Config.

What's Changed

🎉 New Features / Improvements

🐛 Fixes

📦 Dependency updates

... (truncated)

Commits
  • 9bc3d14 chore(client): update comments of client methods (#3295)
  • 096b846 Merge pull request #3296 from gunli/update-single-comments
  • dedff7a Merge pull request #3297 from IBM/dnwe/sarama-modernize
  • 5648bd9 chore: inline strsContains
  • 30d5d02 chore: apply stringsseq from modernize
  • 9cba592 chore: apply bloop from modernize
  • 7b353e9 chore: apply fmtappendf from modernize
  • 7ce5897 chore: apply mapsloop from modernize
  • c85f6fb chore: apply sortslice from modernize
  • bccb0fe chore: apply slicescontains from modernize
  • Additional commits viewable in compare view

Updates github.com/OffchainLabs/prysm/v6 from 6.0.5-rc.1.0.20250825143102-240cd1d0588a to 6.1.0

Release notes

Sourced from github.com/OffchainLabs/prysm/v6's releases.

v6.1.0

v6.1.0 - 2025-09-26

Important note: All operators should upgrade as soon as possible to v6.0.5 OR v6.1.0 to receive a critical stability patch. v6.0.5 only includes the stability fix on top of v6.0.4, whereas v6.1.0 includes a much larger set of changes, detailed below.

This release has support for Fusaka testnets as well as many mainnet improvements. Testnet operators are required to update prior to the testnet fork date. See [PR #15721](OffchainLabs/prysm#15721).

Mainnet operators are encouraged to update per their regular update cadence.

v6.1.0 raises the default builder gas limit[1] from 36M to 45M, includes a memory utilization optimization that should benefit all beacon nodes, along with other improvements and bugfixes. Also included are incremental light client support components and fusaka features waiting to be activated. This will be the last release in the v6 cycle before the mainnet fusaka release, which will be tagged v7.0.0.

Noteworthy improvements, changes and bugfixes:

  • The --disable-experimental-state beacon-node flag has been removed, marking the full graduation of the Copy-on-write design for BeaconState fields, which reduces the memory overhead of keeping multiple BeaconStates in RAM for block processing. Congrats @​rkapka!
  • The behavior set by the --attest_timely flag is now on by default, with the flag itself deprecated.
  • GetDutiesV2 introduced, lowering duty request latency and beacon-node load. Multiple other improvements and bugfixes have been made to harden the validator run loop.
  • New validator flag --max-health-checks configures a validator to switch to a fallback beacon node after the given number of health check failures.
  • Improvements to rest-mode validator, defaulting to SSZ where available and adding SSZ support to more Beacon API endpoints.
  • Beacon API now honors the gzip content-encoding header.
  • Log timestamps now include milliseconds.
  • Full fusaka support for testnets!

Special shout out to our new team member @​satushh!! Welcome to new contributors: @​Alleysira, @​raulk, @​tomasandroil, @​trinadh61, @​Sahil-4555, @​ppopth, @​Galoretka, @​fernantho, @​Muzry, @​jihoonsong, @​sashass1315, @​DeVikingMark Thanks for your continued contributions: @​KaloyanTanev, @​rose2221, @​jtraglia, @​syjn99, @​NikolaiKryshnev, @​hyunchel, @​syjn99

[1] To override this limit, use the validator flag --suggested-gas-limit or set the builder.gas_limit setting in your proposer settings file.

Added

  • PeerDAS: Add CustodyInfo in BeaconNode. [PR]
  • GetDutiesV2 gRPC function, removes committee list from duties, replaced with committee length, validator committee index. [PR]
  • Add SSZ support for two attestation APIs: /eth/v1/validator/attestation_data and. [PR]
  • Added feature flag for validator client to use get duties v2. [PR]
  • PeerDAS: Implement DAS. [PR]
  • verifyBlobCommitmentCount: Print max allowed blob count in error message. [PR]
  • Data column support for beacon api event end point. [PR]
  • Implement EIP-7917: Stable proposer lookahead. [PR]
  • Implement dataColumnSidecarByRootRPCHandler. [PR]
  • New ssz-only flag for validator client to enable calling rest apis in SSZ, starting with get block endpoint. [PR]
  • Implement dataColumnSidecarsByRangeRPCHandler. [PR]
  • Add SSZ support for submitPoolAttestationsV2 beacon API. [PR]
  • New StatusV2 proto message. [PR]
  • Implement SendDataColumnSidecarsByRangeRequest. [PR]
  • Implement SendDataColumnSidecarsByRootRequest. [PR]
  • Implement beacon API blob sidecar enpoint for Fulu. [PR]
  • PeerDAS: Implement the new Fulu Metadata. [PR]
  • PeerDAS: Implement reconstruction. [PR]
  • Implement engine method GetBlobsV2. [PR]
  • Implement execution ReconstructDataColumnSidecars, which reconstruct data column sidecars from data fetched from the execution layer. [PR]
  • new --batch-verifier-limit flag to configure max number of signatures to batch verify on gossip. [PR]

... (truncated)

Changelog

Sourced from github.com/OffchainLabs/prysm/v6's changelog.

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

v6.0.4 - 2025-06-05

This release has more work on PeerDAS, and light client support. Additionally, we have a few bug fixes:

  • Blob cache size now correctly set at startup.
  • A fix for slashing protection history exports where the validator database was in a nested folder.
  • Corrected behavior of the API call for state committees with an invalid request.
  • /bin/sh is now symlinked to /bin/bash for Prysm docker images.

In the Hoodi testnet, the default gas limit is raised to 60M gas.

Added

  • Add light client mainnet spec test. [PR]
  • Add support for light client req/resp domain. [PR]
  • Added /bin/sh simlink to docker images. [PR]
  • Added Prysm build data to otel tracing spans. [PR]
  • Add light client minimal spec test support for update_ranking tests. [PR]
  • Add fulu operation and epoch processing spec tests. [PR]
  • Updated e2e Beacon API evaluator to support more endpoints, including the ones introduced in Electra. [PR]
  • Data column sidecars verification methods. [PR]
  • Implement data column sidecars filesystem. [PR]
  • Add blob schedule support from ethereum/consensus-specs#4277. [PR]
  • random forkchoice spec tests for fulu. [PR]
  • Add ability to download nightly test vectors. [PR]
  • PeerDAS: Validation pipeline for data column sidecars received via gossip. [PR]
  • PeerDAS: Implement P2P. [PR]
  • PeerDAS: Implement the blockchain package. [PR]

Changed

  • Update spec tests to v1.6.0-alpha.0. [PR]
  • PeerDAS: Refactor the reconstruction pipeline. [PR]
  • PeerDAS: DataColumnStorage.Get - Exit early no columns are available. [PR]
  • Default hoodi testnet builder gas limit to 60M. [PR]

Fixed

  • Fix cyclical dependencies issue when using testing/util package. [PR]
  • Set seen blob cache size correctly based on current slot time at start up. [PR]
  • Fix slashing-protection-history export failing when validator.db is in a nested folder like data/direct/. (#14954). [PR]
  • Made /eth/v1/beacon/states/{state_id}/committees endpoint return 400 when slot does not belong to the specified epoch, aligning with the Beacon API spec (#15355). [PR]
  • Removed eager validator context cancellation that was causing validator builder registrations to fail occasionally. [PR]

v6.0.3 - 2025-05-21

... (truncated)

Commits

Updates github.com/ethereum/go-ethereum from 1.16.1 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: 14

As 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 snapshot and related commands no longer fail due to not finding the trie journal file. (#32531)
  • A regression in geth snapshot dump and geth export-preimages is resolved. (#32650)
  • We have added an experimental zkVM 'guest program', keeper, to the source tree. (#32543, #32638, #32736)

RPC

  • eth_call and related operations were fixed to not apply the EIP-7825 per-transaction gas limit when executing under Osaka fork rules. (#32641)
  • For eth_getLogs and other log filtering operations, it is now possible to configure the number of addresses allowed in the filter using the --rpc.logquerylimit flag. (#32327)
  • Starting Geth with the --state.size-tracking option enables collection of precise state size numbers, which can be read using the debug_stateSize endpoint. (#32362)
  • The new debug_executionWitness and debug_executionWitnessByHash methods create a block witness for stateless execution. (#32216)

Tracing & ABIGEN

  • There is a new CodeChangeV2 hook, with a CodeChangeReason parameter. (#32525, #32535)
  • In certain corner-cases related to SELFDESTRUCT, OnBalanceChange was not invoked. (#32526)
  • BoundContract in accounts/abi/bind/v2 now exposes an Address method. (#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
  • 41714b4 Merge branch 'master' into release/1.16
  • b964b65 version: release go-ethereum v1.16.4 stable
  • 0977a02 params: schedule Osaka/BPO1/BPO2 for testnets (#32735)
  • 7d8ccdd all: refactor to use builtin max/min (#32694)
  • bacc150 core/txpool: add eip2681 check for incoming transactions (#32726)
  • ad484fc build: upgrade to execution-spec-tests v5.1.0 (#32742)
  • 89158aa core/txpool/blobpool: convert and add one-by-one (#32718)
  • 965ffff all: add bpo1 and bpo2 overrides (#32737)
  • 7611f35 accounts/abi/bind: fix data race in TestWaitDeployedCornerCases (#32740)
  • 1c706d1 accounts/keystore: use ticker to avoid timer allocations (#32732)
  • Additional commits viewable in compare view

Updates github.com/ferranbt/fastssz from 0.1.4 to 1.0.0

Changelog

Sourced from github.com/ferranbt/fastssz's changelog.

0.1.5 (Unreleased)

  • fix: Array of fixed size of bytes with size in external package GH-181
Commits

Updates github.com/go-co-op/gocron/v2 from 2.16.2 to 2.16.6

Release notes

Sourced from github.com/go-co-op/gocron/v2's releases.

v2.16.6

What's Changed

Chores

New Contributors

Full Changelog: go-co-op/gocron@v2.16.5...v2.16.6

v2.16.5

What's Changed

Full Changelog: go-co-op/gocron@v2.16.4...v2.16.5

v2.16.4

What's Changed

New Contributors

Full Changelog: go-co-op/gocron@v2.16.3...v2.16.4

v2.16.3

What's Changed

Full Changelog: go-co-op/gocron@v2.16.2...v2.16.3

Commits
  • 3966ea9 Bump actions/setup-go from 5 to 6 (#871)
  • d56a063 Added a return to the selectRunJobRequest function (#872)
  • 6e6485b Add go1.25 tests (#869)
  • b383ca9 Use errors.New for non-formatted strings (#870)
  • cc3a1db Bump testify (#868)
  • 9e8c79d Fix memory consumption issue by changing jobOutRequest channels to use pointe...
  • 8187978 Add comprehensive GitHub Copilot instructions for gocron development (#866)
  • 5bf6802 Bump golang.org/x/crypto from 0.40.0 to 0.41.0 (#859)
  • 78468fa Bump actions/checkout from 4 to 5 (#860)
  • fcfcb87 fix: cancel job contexts in create/update errors (#858)
  • See full diff in compare view

Updates github.com/huandu/go-sqlbuilder from 1.36.0 to 1.37.0

Release notes

Sourced from github.com/huandu/go-sqlbuilder's releases.

v1.37.0

What's Changed

  • [NEW] Support clone (deep copy) in all builders (#218)
  • [BUG] Fix union limit syntax error with some flavor (#216) Thanks, @​zhangyongding
  • [BUG] Support typed nil in interpolation (#213)

Full Changelog: huandu/go-sqlbuilder@v1.36.0...v1.37.0

Commits

Updates github.com/libp2p/go-libp2p-pubsub from 0.14.1 to 0.14.2

Release notes

Sourced from github.com/libp2p/go-libp2p-pubsub's releases.

v0.14.2

What's Changed

Full Changelog: libp2p/go-libp2p-pubsub@v0.14.1...v0.14.2

Commits

Updates github.com/multiformats/go-multiaddr from 0.16.0 to 0.16.1

Release notes

Sourced from github.com/multiformats/go-multiaddr's releases.

v0.16.1

What's Changed

Full Changelog: multiformats/go-multiaddr@v0.16.0...v0.16.1

Commits

Updates github.com/prometheus/client_golang from 1.23.0 to 1.23.2

Release notes

Sourced from github.com/prometheus/client_golang's releases.

v1.23.2 - 2025-09-05

This release is made to upgrade to prometheus/common v0.66.1, which drops the dependencies github.com/grafana/regexp and go.uber.org/atomic and replaces gopkg.in/yaml.v2 with go.yaml.in/yaml/v2 (a drop-in replacement). There are no functional changes.

Full Changelog: prometheus/client_golang@v1.23.1...v1.23.2

v1.23.1 - 2025-09-04

This release is made to be compatible with a backwards incompatible API change in prometheus/common v0.66.0. There are no functional changes.

Full Changelog: prometheus/client_golang@v1.23.0...v1.23.1

Changelog

Sourced from github.com/prometheus/client_golang's changelog.

1.23.2 / 2025-09-05

This release is made to upgrade to prometheus/common v0.66.1, which drops the dependencies github.com/grafana/regexp and go.uber.org/atomic and replaces gopkg.in/yaml.v2 with go.yaml.in/yaml/v2 (a drop-in replacement). There are no functional changes.

1.23.1 / 2025-09-04

This release is made to be compatible with a backwards incompatible API change in prometheus/common v0.66.0. There are no functional changes.

Commits

Updates github.com/redis/go-redis/v9 from 9.7.3 to 9.14.0

Release notes

Sourced from github.com/redis/go-redis/v9's releases.

9.14.0

Highlights

  • Added batch process method to the pipeline (#3510)

Changes

🚀 New Features

  • Added batch process method to the pipeline (#3510)

🐛 Bug Fixes

  • fix: SetErr on Cmd if the command cannot be queued correctly in multi/exec (#3509)

🧰 Maintenance

  • Updates release drafter config to exclude dependabot (#3511)
  • chore(deps): bump actions/setup-go from 5 to 6 (#3504)

Contributors

We'd like to thank all the contributors who worked on this release!

@​elena-kolevska, @​htemelski-redis and @​ndyakov

9.13.0

Highlights

  • Pipeliner expose queued commands (#3496)
  • Ensure that JSON.GET returns Nil response (#3470)
  • Fixes on Read and Write buffer sizes and UniversalOptions

Changes

  • Pipeliner expose queued commands (#3496)
  • fix(test): fix a timing issue in pubsub test (#3498)
  • Allow users to enable read-write splitting in failover mode. (#3482)
  • Set the read/write buffer size of the sentinel client to 4KiB (#3476)

🚀 New Features

  • fix(otel): register wait metrics (#3499)
  • Support subscriptions against cluster slave nodes (#3480)
  • Add wait metrics to otel (#3493)
  • Clean failing timeout implementation (#3472)

🐛 Bug Fixes

  • Do not assume that all non-IP hosts are loopbacks (#3085)
  • Ensure that JSON.GET returns Nil response (#3470)

🧰 Maintenance

... (truncated)

Changelog

Sourced from github.com/redis/go-redis/v9's changelog.

9.14.0 (2025-09-10)

Highlights

  • Added batch process method to the pipeline (#3510)

Changes

🚀 New Features

  • Added batch process method to the pipeline (#3510)

🐛 Bug Fixes

  • fix: SetErr on Cmd if the command cannot be queued correctly in multi/exec (#3509)

🧰 Maintenance

  • Updates release drafter config to exclude dependabot (#3511)
  • chore(deps): bump actions/setup-go from 5 to 6 (#3504)

Contributors

We'd like to thank all the contributors who worked on this release!

@​elena-kolevska, @​htemelski-redis and @​ndyakov

9.13.0 (2025-09-03)

Highlights

  • Pipeliner expose queued commands (#3496)
  • Ensure that JSON.GET returns Nil response (#3470)
  • Fixes on Read and Write buffer sizes and UniversalOptions

Changes

  • Pipeliner expose queued commands (#3496)
  • fix(test): fix a timing issue in pubsub test (#3498)
  • Allow users to enable read-write splitting in failover mode. (#3482)
  • Set the read/write buffer size of the sentinel client to 4KiB (#3476)

🚀 New Features

  • fix(otel): register wait metrics (#3499)
  • Support subscriptions against cluster slave nodes (#3480)
  • Add wait metrics to otel (#3493)
  • Clean failing timeout implementation (#3472)

🐛 Bug Fixes

  • Do not assume that all non-IP hosts are loopbacks (#3085)
  • Ensure that JSON.GET returns Nil response (#3470)

... (truncated)

Commits
  • 2da6ca0 chore(release): Update the rest of the versions (#3513)
  • c11a704 chore(release): v9.14.0 (#3512)
  • 8f5469a chore(ci): Update release drafter config to exclude dependabot (#3511)
  • a264ffb fix: SetErr on Cmd if the command cannot be queued correctly in multi/exec (#...
  • e0853ab Added batch process method to the pipeline (#3510)
  • 65e1c22 chore(deps): bump actions/setup-go from 5 to 6 (#3504)
  • 52bda7a chore(release): 9.13.0 (#3500)
  • 19fdc48 chore(otel): register wait metrics (#3499)
  • 10121e9 feat(osscluster): Support subscriptions against cluster slave nodes (#3480)
  • 6f41b60 fix(client): Do not assume that all non-IP hosts are loopbacks (#3085)
  • Additional commits viewable in compare view

Updates github.com/sony/gobreaker/v2 from 2.1.0 to 2.2.1

Commits

Updates github.com/spf13/cobra from 1.9.1 to 1.10.1

Release notes

Sourced from github.com/spf13/cobra's releases.

v1.10.1

🐛 Fix

v1.0.9 of pflags brought back ParseErrorsWhitelist and marked it as deprecated

Full Changelog: spf13/cobra@v1.10.0...v1.10.1

v1.10.0

What's Changed

🚨 Attention!

This version of pflag carried a breaking change: it renamed ParseErrorsWhitelist to ParseErrorsAllowlist which can break builds if both pflag and cobra are dependencies in your project.

  • If you use both pflag and cobra, upgrade pflagto 1.0.8 andcobrato1.10.0`
  • or use the newer, fixed version of pflag v1.0.9 which keeps the deprecated ParseErrorsWhitelist

More details can be found here: spf13/cobra#2303

✨ Features

🐛 Fix

🪠 Testing

📝 Docs

@dependabot dependabot bot added dependencies go Pull requests that update go code labels Sep 29, 2025
@dependabot dependabot bot requested a review from Savid as a code owner September 29, 2025 09:04
@dependabot dependabot bot added dependencies go Pull requests that update go code labels Sep 29, 2025
…7 updates

Bumps the go-dependencies group with 19 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/IBM/sarama](https://github.com/IBM/sarama) | `1.45.2` | `1.46.1` |
| [github.com/OffchainLabs/prysm/v6](https://github.com/OffchainLabs/prysm) | `6.0.5-rc.1.0.20250825143102-240cd1d0588a` | `6.1.0` |
| [github.com/ethereum/go-ethereum](https://github.com/ethereum/go-ethereum) | `1.16.1` | `1.16.4` |
| [github.com/ferranbt/fastssz](https://github.com/ferranbt/fastssz) | `0.1.4` | `1.0.0` |
| [github.com/go-co-op/gocron/v2](https://github.com/go-co-op/gocron) | `2.16.2` | `2.16.6` |
| [github.com/huandu/go-sqlbuilder](https://github.com/huandu/go-sqlbuilder) | `1.36.0` | `1.37.0` |
| [github.com/multiformats/go-multiaddr](https://github.com/multiformats/go-multiaddr) | `0.16.0` | `0.16.1` |
| [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `1.23.0` | `1.23.2` |
| [github.com/redis/go-redis/v9](https://github.com/redis/go-redis) | `9.7.3` | `9.14.0` |
| [github.com/sony/gobreaker/v2](https://github.com/sony/gobreaker) | `2.1.0` | `2.2.1` |
| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.9.1` | `1.10.1` |
| [github.com/testcontainers/testcontainers-go](https://github.com/testcontainers/testcontainers-go) | `0.38.0` | `0.39.0` |
| [github.com/testcontainers/testcontainers-go/modules/postgres](https://github.com/testcontainers/testcontainers-go) | `0.38.0` | `0.39.0` |
| [go.opentelemetry.io/otel](https://github.com/open-telemetry/opentelemetry-go) | `1.37.0` | `1.38.0` |
| [go.opentelemetry.io/otel/exporters/otlp/otlptrace](https://github.com/open-telemetry/opentelemetry-go) | `1.37.0` | `1.38.0` |
| [go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp](https://github.com/open-telemetry/opentelemetry-go) | `1.37.0` | `1.38.0` |
| [go.opentelemetry.io/otel/exporters/prometheus](https://github.com/open-telemetry/opentelemetry-go) | `0.57.0` | `0.60.0` |
| [go.uber.org/mock](https://github.com/uber/mock) | `0.5.2` | `0.6.0` |
| [golang.org/x/time](https://github.com/golang/time) | `0.12.0` | `0.13.0` |



Updates `github.com/IBM/sarama` from 1.45.2 to 1.46.1
- [Release notes](https://github.com/IBM/sarama/releases)
- [Changelog](https://github.com/IBM/sarama/blob/main/CHANGELOG.md)
- [Commits](IBM/sarama@v1.45.2...v1.46.1)

Updates `github.com/OffchainLabs/prysm/v6` from 6.0.5-rc.1.0.20250825143102-240cd1d0588a to 6.1.0
- [Release notes](https://github.com/OffchainLabs/prysm/releases)
- [Changelog](https://github.com/OffchainLabs/prysm/blob/develop/CHANGELOG.md)
- [Commits](https://github.com/OffchainLabs/prysm/commits/v6.1.0)

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

Updates `github.com/ferranbt/fastssz` from 0.1.4 to 1.0.0
- [Changelog](https://github.com/ferranbt/fastssz/blob/main/CHANGELOG.md)
- [Commits](ferranbt/fastssz@v0.1.4...v1.0.0)

Updates `github.com/go-co-op/gocron/v2` from 2.16.2 to 2.16.6
- [Release notes](https://github.com/go-co-op/gocron/releases)
- [Commits](go-co-op/gocron@v2.16.2...v2.16.6)

Updates `github.com/huandu/go-sqlbuilder` from 1.36.0 to 1.37.0
- [Release notes](https://github.com/huandu/go-sqlbuilder/releases)
- [Commits](huandu/go-sqlbuilder@v1.36.0...v1.37.0)

Updates `github.com/libp2p/go-libp2p-pubsub` from 0.14.1 to 0.14.2
- [Release notes](https://github.com/libp2p/go-libp2p-pubsub/releases)
- [Commits](libp2p/go-libp2p-pubsub@v0.14.1...v0.14.2)

Updates `github.com/multiformats/go-multiaddr` from 0.16.0 to 0.16.1
- [Release notes](https://github.com/multiformats/go-multiaddr/releases)
- [Commits](multiformats/go-multiaddr@v0.16.0...v0.16.1)

Updates `github.com/prometheus/client_golang` from 1.23.0 to 1.23.2
- [Release notes](https://github.com/prometheus/client_golang/releases)
- [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md)
- [Commits](prometheus/client_golang@v1.23.0...v1.23.2)

Updates `github.com/redis/go-redis/v9` from 9.7.3 to 9.14.0
- [Release notes](https://github.com/redis/go-redis/releases)
- [Changelog](https://github.com/redis/go-redis/blob/master/RELEASE-NOTES.md)
- [Commits](redis/go-redis@v9.7.3...v9.14.0)

Updates `github.com/sony/gobreaker/v2` from 2.1.0 to 2.2.1
- [Commits](sony/gobreaker@v2.1.0...v2.2.1)

Updates `github.com/spf13/cobra` from 1.9.1 to 1.10.1
- [Release notes](https://github.com/spf13/cobra/releases)
- [Commits](spf13/cobra@v1.9.1...v1.10.1)

Updates `github.com/stretchr/testify` from 1.10.0 to 1.11.1
- [Release notes](https://github.com/stretchr/testify/releases)
- [Commits](stretchr/testify@v1.10.0...v1.11.1)

Updates `github.com/testcontainers/testcontainers-go` from 0.38.0 to 0.39.0
- [Release notes](https://github.com/testcontainers/testcontainers-go/releases)
- [Commits](testcontainers/testcontainers-go@v0.38.0...v0.39.0)

Updates `github.com/testcontainers/testcontainers-go/modules/postgres` from 0.38.0 to 0.39.0
- [Release notes](https://github.com/testcontainers/testcontainers-go/releases)
- [Commits](testcontainers/testcontainers-go@v0.38.0...v0.39.0)

Updates `go.opentelemetry.io/otel` from 1.37.0 to 1.38.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.37.0...v1.38.0)

Updates `go.opentelemetry.io/otel/exporters/otlp/otlptrace` from 1.37.0 to 1.38.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.37.0...v1.38.0)

Updates `go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp` from 1.37.0 to 1.38.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.37.0...v1.38.0)

Updates `go.opentelemetry.io/otel/exporters/prometheus` from 0.57.0 to 0.60.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@exporters/prometheus/v0.57.0...exporters/prometheus/v0.60.0)

Updates `go.opentelemetry.io/otel/sdk` from 1.37.0 to 1.38.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.37.0...v1.38.0)

Updates `go.opentelemetry.io/otel/sdk/metric` from 1.37.0 to 1.38.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.37.0...v1.38.0)

Updates `go.opentelemetry.io/otel/trace` from 1.37.0 to 1.38.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.37.0...v1.38.0)

Updates `go.uber.org/mock` from 0.5.2 to 0.6.0
- [Release notes](https://github.com/uber/mock/releases)
- [Changelog](https://github.com/uber-go/mock/blob/main/CHANGELOG.md)
- [Commits](uber-go/mock@v0.5.2...v0.6.0)

Updates `golang.org/x/sync` from 0.16.0 to 0.17.0
- [Commits](golang/sync@v0.16.0...v0.17.0)

Updates `golang.org/x/time` from 0.12.0 to 0.13.0
- [Commits](golang/time@v0.12.0...v0.13.0)

Updates `google.golang.org/grpc` from 1.74.2 to 1.75.0
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.74.2...v1.75.0)

Updates `google.golang.org/protobuf` from 1.36.6 to 1.36.8

---
updated-dependencies:
- dependency-name: github.com/IBM/sarama
  dependency-version: 1.46.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/OffchainLabs/prysm/v6
  dependency-version: 6.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/ethereum/go-ethereum
  dependency-version: 1.16.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: github.com/ferranbt/fastssz
  dependency-version: 1.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: go-dependencies
- dependency-name: github.com/go-co-op/gocron/v2
  dependency-version: 2.16.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: github.com/huandu/go-sqlbuilder
  dependency-version: 1.37.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/libp2p/go-libp2p-pubsub
  dependency-version: 0.14.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: github.com/multiformats/go-multiaddr
  dependency-version: 0.16.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: github.com/prometheus/client_golang
  dependency-version: 1.23.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: github.com/redis/go-redis/v9
  dependency-version: 9.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/sony/gobreaker/v2
  dependency-version: 2.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/spf13/cobra
  dependency-version: 1.10.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/stretchr/testify
  dependency-version: 1.11.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/testcontainers/testcontainers-go
  dependency-version: 0.39.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/testcontainers/testcontainers-go/modules/postgres
  dependency-version: 0.39.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: go.opentelemetry.io/otel
  dependency-version: 1.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: go.opentelemetry.io/otel/exporters/otlp/otlptrace
  dependency-version: 1.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp
  dependency-version: 1.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: go.opentelemetry.io/otel/exporters/prometheus
  dependency-version: 0.60.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: go.opentelemetry.io/otel/sdk
  dependency-version: 1.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: go.opentelemetry.io/otel/sdk/metric
  dependency-version: 1.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: go.opentelemetry.io/otel/trace
  dependency-version: 1.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: go.uber.org/mock
  dependency-version: 0.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: golang.org/x/sync
  dependency-version: 0.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: golang.org/x/time
  dependency-version: 0.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: google.golang.org/grpc
  dependency-version: 1.75.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: google.golang.org/protobuf
  dependency-version: 1.36.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/go_modules/go-dependencies-2a854792fa branch from eaf4b6d to 469e0bf Compare September 30, 2025 05:39
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 1, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Oct 1, 2025
@dependabot dependabot bot deleted the dependabot/go_modules/go-dependencies-2a854792fa branch October 1, 2025 00:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies go Pull requests that update go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants