Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump the gomod group across 4 directories with 6 updates #2016

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 12, 2025

Bumps the gomod group with 5 updates in the / directory:

Package From To
github.com/docker/cli 27.5.1+incompatible 28.0.1+incompatible
github.com/klauspost/compress 1.17.11 1.18.0
github.com/prometheus/client_golang 1.20.5 1.21.1
go.etcd.io/bbolt 1.3.11 1.4.0
github.com/urfave/cli/v2 2.27.5 2.27.6

Bumps the gomod group with 6 updates in the /cmd directory:

Package From To
github.com/docker/cli 27.5.1+incompatible 28.0.1+incompatible
github.com/klauspost/compress 1.17.11 1.18.0
github.com/prometheus/client_golang 1.20.5 1.21.1
go.etcd.io/bbolt 1.3.11 1.4.0
github.com/urfave/cli/v2 2.27.5 2.27.6
github.com/multiformats/go-multiaddr 0.14.0 0.15.0

Bumps the gomod group with 1 update in the /estargz directory: github.com/klauspost/compress.
Bumps the gomod group with 2 updates in the /ipfs directory: github.com/klauspost/compress and github.com/multiformats/go-multiaddr.

Updates github.com/docker/cli from 27.5.1+incompatible to 28.0.1+incompatible

Commits
  • 068a01e Merge pull request #5870 from thaJeztah/carry_5855
  • d75f8d8 Add detailed descriptions for --ulimit options in docker run documentation
  • ffdfc5f Merge pull request #5742 from mertssmnoglu/fix-dockerfile-exec-form
  • 6bd9908 Merge pull request #5867 from thaJeztah/bump_go_jose
  • 7559583 vendor: github.com/go-jose/go-jose/v4 v4.0.5
  • 41277f5 Merge pull request #5865 from robmry/doc_default_bridge
  • 4e7497e Update dockerd command line ref, default bridge opts
  • be66909 Update dockerd command line ref, changes in 28.0
  • 111468c Merge pull request #5864 from thaJeztah/gha_bump_docker
  • 427c136 gha: add docker 28 to test matrix
  • Additional commits viewable in compare view

Updates github.com/klauspost/compress from 1.17.11 to 1.18.0

Release notes

Sourced from github.com/klauspost/compress's releases.

v1.18.0

What's Changed

New Contributors

Full Changelog: klauspost/compress@v1.17.11...v1.18.0

Commits

Updates github.com/prometheus/client_golang from 1.20.5 to 1.21.1

Release notes

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

v1.21.1 / 2025-03-04

This release addresses a performance regression introduced in #1661 -- thanks to all who reported this quickly: @​chlunde, @​dethi, @​aaronbee @​tsuna @​kakkoyun 💪🏽. This patch release also fixes the iOS build.

We will be hardening the release process even further (#1759, #1761) to prevent this in future, sorry for the inconvenience!

The high concurrency optimization is planned to be eventually reintroduced, however in a much safer manner, potentially in a separate API.

  • [BUGFIX] prometheus: Revert of Inc, Add and Observe cumulative metric CAS optimizations (#1661), causing regressions on low concurrency cases #1757
  • [BUGFIX] prometheus: Fix GOOS=ios build, broken due to process_collector_* wrong build tags. #1758

Full Changelog: prometheus/client_golang@v1.21.0...v1.21.1

v1.21.0 / 2025-02-19

⚠️ This release contains potential breaking change if you upgrade github.com/prometheus/common to 0.62+ together with client_golang (and depend on the strict, legacy validation for the label names). New common version changes model.NameValidationScheme global variable, which relaxes the validation of label names and metric name, allowing all UTF-8 characters. Typically, this should not break any user, unless your test or usage expects strict certain names to panic/fail on client_golang metric registration, gathering or scrape. In case of problems change model.NameValidationScheme to old model.LegacyValidation value in your project init function. ⚠️

  • [BUGFIX] gocollector: Fix help message for runtime/metric metrics. #1583
  • [BUGFIX] prometheus: Fix Desc.String() method for no labels case. #1687
  • [PERF] prometheus: Optimize popular prometheus.BuildFQName function; now up to 30% faster. #1665
  • [PERF] prometheus: Optimize Inc, Add and Observe cumulative metrics; now up to 50% faster under high concurrent contention. #1661
  • [CHANGE] Upgrade prometheus/common to 0.62.0 which changes model.NameValidationScheme global variable. #1712
  • [CHANGE] Add support for Go 1.23. #1602
  • [FEATURE] process_collector: Add support for Darwin systems. #1600 #1616 #1625 #1675 #1715
  • [FEATURE] api: Add ability to invoke CloseIdleConnections on api.Client using api.Client.(CloseIdler).CloseIdleConnections() casting. #1513
  • [FEATURE] promhttp: Add promhttp.HandlerOpts.EnableOpenMetricsTextCreatedSamples option to create OpenMetrics _created lines. Not recommended unless you want to use opt-in Created Timestamp feature. Community works on OpenMetrics 2.0 format that should make those lines obsolete (they increase cardinality significantly). #1408
  • [FEATURE] prometheus: Add NewConstNativeHistogram function. #1654

... (truncated)

Changelog

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

1.21.1 / 2025-03-04

  • [BUGFIX] prometheus: Revert of Inc, Add and Observe cumulative metric CAS optimizations (#1661), causing regressions on low contention cases.
  • [BUGFIX] prometheus: Fix GOOS=ios build, broken due to process_collector_* wrong build tags.

1.21.0 / 2025-02-17

⚠️ This release contains potential breaking change if you upgrade github.com/prometheus/common to 0.62+ together with client_golang. ⚠️

New common version changes model.NameValidationScheme global variable, which relaxes the validation of label names and metric name, allowing all UTF-8 characters. Typically, this should not break any user, unless your test or usage expects strict certain names to panic/fail on client_golang metric registration, gathering or scrape. In case of problems change model.NameValidationScheme to old model.LegacyValidation value in your project init function.

  • [BUGFIX] gocollector: Fix help message for runtime/metric metrics. #1583
  • [BUGFIX] prometheus: Fix Desc.String() method for no labels case. #1687
  • [ENHANCEMENT] prometheus: Optimize popular prometheus.BuildFQName function; now up to 30% faster. #1665
  • [ENHANCEMENT] prometheus: Optimize Inc, Add and Observe cumulative metrics; now up to 50% faster under high concurrent contention. #1661
  • [CHANGE] Upgrade prometheus/common to 0.62.0 which changes model.NameValidationScheme global variable. #1712
  • [CHANGE] Add support for Go 1.23. #1602
  • [FEATURE] process_collector: Add support for Darwin systems. #1600 #1616 #1625 #1675 #1715
  • [FEATURE] api: Add ability to invoke CloseIdleConnections on api.Client using api.Client.(CloseIdler).CloseIdleConnections() casting. #1513
  • [FEATURE] promhttp: Add promhttp.HandlerOpts.EnableOpenMetricsTextCreatedSamples option to create OpenMetrics _created lines. Not recommended unless you want to use opt-in Created Timestamp feature. Community works on OpenMetrics 2.0 format that should make those lines obsolete (they increase cardinality significantly). #1408
  • [FEATURE] prometheus: Add NewConstNativeHistogram function. #1654
Commits

Updates go.etcd.io/bbolt from 1.3.11 to 1.4.0

Release notes

Sourced from go.etcd.io/bbolt's releases.

v1.4.0

See the CHANGELOG/v1.4.0 for more details.

v1.4.0-beta.0

See the CHANGELOG/v1.4.0-beta.0 for more details.

Commits
  • 0d51685 Merge pull request #893 from ArkaSaha30/bump-go-1.23.6
  • 7a9779b update goland toolchain to 1.23.6
  • 51df26e Merge pull request #890 from ahrtr/remove_changelog_20250204
  • 354980c Remove changelog from release-1.4
  • 5dbec69 Merge pull request #889 from etcd-io/dependabot/go_modules/github.com/spf13/p...
  • 33910cc build(deps): Bump github.com/spf13/pflag from 1.0.5 to 1.0.6
  • 74ae007 Merge pull request #887 from etcd-io/dependabot/github_actions/actions/stale-...
  • 462353e Merge pull request #888 from etcd-io/dependabot/github_actions/actions/setup-...
  • 539c456 build(deps): Bump actions/setup-go from 5.2.0 to 5.3.0
  • b610582 build(deps): Bump actions/stale from 9.0.0 to 9.1.0
  • Additional commits viewable in compare view

Updates github.com/urfave/cli/v2 from 2.27.5 to 2.27.6

Release notes

Sourced from github.com/urfave/cli/v2's releases.

v2.27.6

What's Changed

Full Changelog: urfave/cli@v2.27.5...v2.27.6

Commits
  • 9d76d15 Merge pull request #2070 from dearchap/issue_2069
  • 4abc9c3 Fix:(issue_2069) Add sep for string slice
  • 3b17080 Merge pull request #2015 from urfave/update_docs_v2
  • 1e15e30 Update cli.yml
  • 50bdebf Merge pull request #1986 from urfave/v2-use-usage-template-in-subcommand-help
  • ba8fc3d Use usage template in subcommand help
  • See full diff in compare view

Updates github.com/docker/cli from 27.5.1+incompatible to 28.0.1+incompatible

Commits
  • 068a01e Merge pull request #5870 from thaJeztah/carry_5855
  • d75f8d8 Add detailed descriptions for --ulimit options in docker run documentation
  • ffdfc5f Merge pull request #5742 from mertssmnoglu/fix-dockerfile-exec-form
  • 6bd9908 Merge pull request #5867 from thaJeztah/bump_go_jose
  • 7559583 vendor: github.com/go-jose/go-jose/v4 v4.0.5
  • 41277f5 Merge pull request #5865 from robmry/doc_default_bridge
  • 4e7497e Update dockerd command line ref, default bridge opts
  • be66909 Update dockerd command line ref, changes in 28.0
  • 111468c Merge pull request #5864 from thaJeztah/gha_bump_docker
  • 427c136 gha: add docker 28 to test matrix
  • Additional commits viewable in compare view

Updates github.com/klauspost/compress from 1.17.11 to 1.18.0

Release notes

Sourced from github.com/klauspost/compress's releases.

v1.18.0

What's Changed

New Contributors

Full Changelog: klauspost/compress@v1.17.11...v1.18.0

Commits

Updates github.com/prometheus/client_golang from 1.20.5 to 1.21.1

Release notes

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

v1.21.1 / 2025-03-04

This release addresses a performance regression introduced in #1661 -- thanks to all who reported this quickly: @​chlunde, @​dethi, @​aaronbee @​tsuna @​kakkoyun 💪🏽. This patch release also fixes the iOS build.

We will be hardening the release process even further (#1759, #1761) to prevent this in future, sorry for the inconvenience!

The high concurrency optimization is planned to be eventually reintroduced, however in a much safer manner, potentially in a separate API.

  • [BUGFIX] prometheus: Revert of Inc, Add and Observe cumulative metric CAS optimizations (#1661), causing regressions on low concurrency cases #1757
  • [BUGFIX] prometheus: Fix GOOS=ios build, broken due to process_collector_* wrong build tags. #1758

Full Changelog: prometheus/client_golang@v1.21.0...v1.21.1

v1.21.0 / 2025-02-19

⚠️ This release contains potential breaking change if you upgrade github.com/prometheus/common to 0.62+ together with client_golang (and depend on the strict, legacy validation for the label names). New common version changes model.NameValidationScheme global variable, which relaxes the validation of label names and metric name, allowing all UTF-8 characters. Typically, this should not break any user, unless your test or usage expects strict certain names to panic/fail on client_golang metric registration, gathering or scrape. In case of problems change model.NameValidationScheme to old model.LegacyValidation value in your project init function. ⚠️

  • [BUGFIX] gocollector: Fix help message for runtime/metric metrics. #1583
  • [BUGFIX] prometheus: Fix Desc.String() method for no labels case. #1687
  • [PERF] prometheus: Optimize popular prometheus.BuildFQName function; now up to 30% faster. #1665
  • [PERF] prometheus: Optimize Inc, Add and Observe cumulative metrics; now up to 50% faster under high concurrent contention. #1661
  • [CHANGE] Upgrade prometheus/common to 0.62.0 which changes model.NameValidationScheme global variable. #1712
  • [CHANGE] Add support for Go 1.23. #1602
  • [FEATURE] process_collector: Add support for Darwin systems. #1600 #1616 #1625 #1675 #1715
  • [FEATURE] api: Add ability to invoke CloseIdleConnections on api.Client using api.Client.(CloseIdler).CloseIdleConnections() casting. #1513
  • [FEATURE] promhttp: Add promhttp.HandlerOpts.EnableOpenMetricsTextCreatedSamples option to create OpenMetrics _created lines. Not recommended unless you want to use opt-in Created Timestamp feature. Community works on OpenMetrics 2.0 format that should make those lines obsolete (they increase cardinality significantly). #1408
  • [FEATURE] prometheus: Add NewConstNativeHistogram function. #1654

... (truncated)

Changelog

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

1.21.1 / 2025-03-04

  • [BUGFIX] prometheus: Revert of Inc, Add and Observe cumulative metric CAS optimizations (#1661), causing regressions on low contention cases.
  • [BUGFIX] prometheus: Fix GOOS=ios build, broken due to process_collector_* wrong build tags.

1.21.0 / 2025-02-17

⚠️ This release contains potential breaking change if you upgrade github.com/prometheus/common to 0.62+ together with client_golang. ⚠️

New common version changes model.NameValidationScheme global variable, which relaxes the validation of label names and metric name, allowing all UTF-8 characters. Typically, this should not break any user, unless your test or usage expects strict certain names to panic/fail on client_golang metric registration, gathering or scrape. In case of problems change model.NameValidationScheme to old model.LegacyValidation value in your project init function.

  • [BUGFIX] gocollector: Fix help message for runtime/metric metrics. #1583
  • [BUGFIX] prometheus: Fix Desc.String() method for no labels case. #1687
  • [ENHANCEMENT] prometheus: Optimize popular prometheus.BuildFQName function; now up to 30% faster. #1665
  • [ENHANCEMENT] prometheus: Optimize Inc, Add and Observe cumulative metrics; now up to 50% faster under high concurrent contention. #1661
  • [CHANGE] Upgrade prometheus/common to 0.62.0 which changes model.NameValidationScheme global variable. #1712
  • [CHANGE] Add support for Go 1.23. #1602
  • [FEATURE] process_collector: Add support for Darwin systems. #1600 #1616 #1625 #1675 #1715
  • [FEATURE] api: Add ability to invoke CloseIdleConnections on api.Client using api.Client.(CloseIdler).CloseIdleConnections() casting. #1513
  • [FEATURE] promhttp: Add promhttp.HandlerOpts.EnableOpenMetricsTextCreatedSamples option to create OpenMetrics _created lines. Not recommended unless you want to use opt-in Created Timestamp feature. Community works on OpenMetrics 2.0 format that should make those lines obsolete (they increase cardinality significantly). #1408
  • [FEATURE] prometheus: Add NewConstNativeHistogram function. #1654
Commits

Updates go.etcd.io/bbolt from 1.3.11 to 1.4.0

Release notes

Sourced from go.etcd.io/bbolt's releases.

v1.4.0

See the CHANGELOG/v1.4.0 for more details.

v1.4.0-beta.0

See the CHANGELOG/v1.4.0-beta.0 for more details.

Commits
  • 0d51685 Merge pull request #893 from ArkaSaha30/bump-go-1.23.6
  • 7a9779b update goland toolchain to 1.23.6
  • 51df26e Merge pull request #890 from ahrtr/remove_changelog_20250204
  • 354980c Remove changelog from release-1.4
  • 5dbec69 Merge pull request #889 from etcd-io/dependabot/go_modules/github.com/spf13/p...
  • 33910cc build(deps): Bump github.com/spf13/pflag from 1.0.5 to 1.0.6
  • 74ae007 Merge pull request #887 from etcd-io/dependabot/github_actions/actions/stale-...
  • 462353e Merge pull request #888 from etcd-io/dependabot/github_actions/actions/setup-...
  • 539c456 build(deps): Bump actions/setup-go from 5.2.0 to 5.3.0
  • b610582 build(deps): Bump actions/stale from 9.0.0 to 9.1.0
  • Additional commits viewable in compare view

Updates github.com/urfave/cli/v2 from 2.27.5 to 2.27.6

Release notes

Sourced from github.com/urfave/cli/v2's releases.

v2.27.6

What's Changed

Full Changelog: urfave/cli@v2.27.5...v2.27.6

Commits
  • 9d76d15 Merge pull request #2070 from dearchap/issue_2069
  • 4abc9c3 Fix:(issue_2069) Add sep for string slice
  • 3b17080 Merge pull request #2015 from urfave/update_docs_v2
  • 1e15e30 Update cli.yml
  • 50bdebf Merge pull request #1986 from urfave/v2-use-usage-template-in-subcommand-help
  • ba8fc3d Use usage template in subcommand help
  • See full diff in compare view

Updates github.com/multiformats/go-multiaddr from 0.14.0 to 0.15.0

Release notes

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

v0.15.0

Breaking Changes

  • There is no Multiaddr interface type.
  • Multiaddr is now a concrete type of []Component. Not an interface.
  • Empty Multiaddrs should be checked len(ma) == 0, exactly how slices should be checked with len(s) == 0 rather than s == nil.
  • Components do not implement Multiaddr as there is no Multiaddr to implement. The do implement a Multiaddrer interface that lets them convert to Multiaddrs.
  • Multiaddr can no longer be a key in a Map. If you want unique Multiaddrs, use string(Multiaddr.Bytes()) or Multiaddr.String() as the key, otherwise you can use the pointer value *Multiaddr.

Why?

This library has had multiple issues related to Multiaddr being an interface. Many methods use and return nil as the zero value, which behaves poorly when the user forgets to do a nil check on every returned value and attempts to call a method on the nil pointer. For example, using Split to split a Multiaddr and then using Join to rebuild the original Multiaddr historically would panic in case one side of the split was nil. Using an interface also leads to incorrect usages of == to check if two Multiaddrs were equal (would only work for pointer equality) and, likewise, incorrectly using Multiaddr as a key for a map.

Using an interface is typically done to provide a consistent API surface for multiple implementing types. In practice however, the Multiaddr interface was only implemented for multiaddr and component (with arguably some awkwardness when using a component as a Multiaddr).

The better approach is to use a concrete type for a Multiaddr. This lets pointer receiver methods work even if the pointer is nil, since the compiler already knows which function to call. Most methods now take a value rather than a pointer which avoids the issue of a nil pointer dereference completely.

What's changed

v0.15 refactors the codebase to make it much harder to hit nil pointer dereference panics.

It does so by taking a different approach to how we've treated multiaddrs in the past. Instead of attempting to make them a general datastructure, we focus on treating them as just an encoding scheme. Users of multiaddrs are expected to parse the multiaddr into some struct that is suitable for their use case, and use the multiaddr form when interoperating. By treating Multiaddrs as just an encoding scheme we can make a number of simplifications in the codebase. Specifically we now:

  • Remove the Multiaddr interface.
  • Make Multiaddr a concrete type of []Component

Migration

Refer to ./v015-MIGRATION.md for breaking changes and migration tips

Full Changelog: multiformats/go-multiaddr@v0.14.0...v0.15.0

Commits
  • 30b45fb chore: release v0.15.0 (#266)
  • 4d1f355 refactor: Backwards compatible Encapsulate/Decapsulate/Join/NewComponent (#272)
  • 2ac523b refactor: keep same api as v0.14.0 for SplitFirst/SplitLast (#271)
  • 4abf520 Merge pull request #268 from multiformats/uci/update-go
  • e41d519 chore!: bump go.mod to Go 1.23 and run go fix
  • 46805b0 refactor: Follows up on #261 (#264)
  • 1ef63b5 refactor!: make the API harder to misuse (#261)
  • d19cf5d build(deps): bump golang.org/x/crypto from 0.18.0 to 0.31.0 (#259)
  • See full diff in compare view

Updates github.com/klauspost/compress from 1.17.11 to 1.18.0

Release notes

Sourced from github.com/klauspost/compress's releases.

v1.18.0

What's Changed

New Contributors

  • @​tcpdumppy made their first contributio...

    Description has been truncated

@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Mar 12, 2025
@dependabot dependabot bot force-pushed the dependabot/go_modules/gomod-9c508b529d branch 2 times, most recently from 1e5ff01 to 114044f Compare March 14, 2025 16:13
Bumps the gomod group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/docker/cli](https://github.com/docker/cli) | `27.5.1+incompatible` | `28.0.1+incompatible` |
| [github.com/klauspost/compress](https://github.com/klauspost/compress) | `1.17.11` | `1.18.0` |
| [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `1.20.5` | `1.21.1` |
| [go.etcd.io/bbolt](https://github.com/etcd-io/bbolt) | `1.3.11` | `1.4.0` |
| [github.com/urfave/cli/v2](https://github.com/urfave/cli) | `2.27.5` | `2.27.6` |

Bumps the gomod group with 6 updates in the /cmd directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/docker/cli](https://github.com/docker/cli) | `27.5.1+incompatible` | `28.0.1+incompatible` |
| [github.com/klauspost/compress](https://github.com/klauspost/compress) | `1.17.11` | `1.18.0` |
| [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `1.20.5` | `1.21.1` |
| [go.etcd.io/bbolt](https://github.com/etcd-io/bbolt) | `1.3.11` | `1.4.0` |
| [github.com/urfave/cli/v2](https://github.com/urfave/cli) | `2.27.5` | `2.27.6` |
| [github.com/multiformats/go-multiaddr](https://github.com/multiformats/go-multiaddr) | `0.14.0` | `0.15.0` |

Bumps the gomod group with 1 update in the /estargz directory: [github.com/klauspost/compress](https://github.com/klauspost/compress).
Bumps the gomod group with 2 updates in the /ipfs directory: [github.com/klauspost/compress](https://github.com/klauspost/compress) and [github.com/multiformats/go-multiaddr](https://github.com/multiformats/go-multiaddr).


Updates `github.com/docker/cli` from 27.5.1+incompatible to 28.0.1+incompatible
- [Commits](docker/cli@v27.5.1...v28.0.1)

Updates `github.com/klauspost/compress` from 1.17.11 to 1.18.0
- [Release notes](https://github.com/klauspost/compress/releases)
- [Changelog](https://github.com/klauspost/compress/blob/master/.goreleaser.yml)
- [Commits](klauspost/compress@v1.17.11...v1.18.0)

Updates `github.com/prometheus/client_golang` from 1.20.5 to 1.21.1
- [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.20.5...v1.21.1)

Updates `go.etcd.io/bbolt` from 1.3.11 to 1.4.0
- [Release notes](https://github.com/etcd-io/bbolt/releases)
- [Commits](etcd-io/bbolt@v1.3.11...v1.4.0)

Updates `github.com/urfave/cli/v2` from 2.27.5 to 2.27.6
- [Release notes](https://github.com/urfave/cli/releases)
- [Changelog](https://github.com/urfave/cli/blob/main/docs/CHANGELOG.md)
- [Commits](urfave/cli@v2.27.5...v2.27.6)

Updates `github.com/docker/cli` from 27.5.1+incompatible to 28.0.1+incompatible
- [Commits](docker/cli@v27.5.1...v28.0.1)

Updates `github.com/klauspost/compress` from 1.17.11 to 1.18.0
- [Release notes](https://github.com/klauspost/compress/releases)
- [Changelog](https://github.com/klauspost/compress/blob/master/.goreleaser.yml)
- [Commits](klauspost/compress@v1.17.11...v1.18.0)

Updates `github.com/prometheus/client_golang` from 1.20.5 to 1.21.1
- [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.20.5...v1.21.1)

Updates `go.etcd.io/bbolt` from 1.3.11 to 1.4.0
- [Release notes](https://github.com/etcd-io/bbolt/releases)
- [Commits](etcd-io/bbolt@v1.3.11...v1.4.0)

Updates `github.com/urfave/cli/v2` from 2.27.5 to 2.27.6
- [Release notes](https://github.com/urfave/cli/releases)
- [Changelog](https://github.com/urfave/cli/blob/main/docs/CHANGELOG.md)
- [Commits](urfave/cli@v2.27.5...v2.27.6)

Updates `github.com/multiformats/go-multiaddr` from 0.14.0 to 0.15.0
- [Release notes](https://github.com/multiformats/go-multiaddr/releases)
- [Commits](multiformats/go-multiaddr@v0.14.0...v0.15.0)

Updates `github.com/klauspost/compress` from 1.17.11 to 1.18.0
- [Release notes](https://github.com/klauspost/compress/releases)
- [Changelog](https://github.com/klauspost/compress/blob/master/.goreleaser.yml)
- [Commits](klauspost/compress@v1.17.11...v1.18.0)

Updates `github.com/klauspost/compress` from 1.17.11 to 1.18.0
- [Release notes](https://github.com/klauspost/compress/releases)
- [Changelog](https://github.com/klauspost/compress/blob/master/.goreleaser.yml)
- [Commits](klauspost/compress@v1.17.11...v1.18.0)

Updates `github.com/multiformats/go-multiaddr` from 0.14.0 to 0.15.0
- [Release notes](https://github.com/multiformats/go-multiaddr/releases)
- [Commits](multiformats/go-multiaddr@v0.14.0...v0.15.0)

---
updated-dependencies:
- dependency-name: github.com/docker/cli
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gomod
- dependency-name: github.com/klauspost/compress
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/prometheus/client_golang
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: go.etcd.io/bbolt
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/urfave/cli/v2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: github.com/docker/cli
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: gomod
- dependency-name: github.com/klauspost/compress
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/prometheus/client_golang
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: go.etcd.io/bbolt
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/urfave/cli/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: github.com/multiformats/go-multiaddr
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/klauspost/compress
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/klauspost/compress
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/multiformats/go-multiaddr
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/go_modules/gomod-9c508b529d branch from 114044f to 321ff13 Compare March 19, 2025 10:35
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.

0 participants