Skip to content

Bump the go-deps group across 1 directory with 16 updates#11

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/go-deps-72f879b7dc
Open

Bump the go-deps group across 1 directory with 16 updates#11
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/go-deps-72f879b7dc

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 10, 2026

Copy link
Copy Markdown

Bumps the go-deps group with 12 updates in the / directory:

Package From To
github.com/klauspost/compress 1.17.8 1.19.0
github.com/minio/minio-go/v7 7.0.72 7.2.1
github.com/prometheus/client_golang 1.19.0 1.23.2
github.com/slok/go-http-metrics 0.11.0 0.13.0
github.com/urfave/cli/v2 2.27.1 2.27.7
golang.org/x/oauth2 0.34.0 0.36.0
golang.org/x/sync 0.20.0 0.22.0
google.golang.org/grpc 1.79.3 1.82.1
github.com/Azure/azure-sdk-for-go/sdk/azcore 1.11.1 1.22.0
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob 0.4.1 1.8.0
github.com/johannesboyne/gofakes3 0.0.0-20230506070712-04da935ef877 1.2.0
github.com/valyala/gozstd 1.20.1 1.25.0

Updates github.com/klauspost/compress from 1.17.8 to 1.19.0

Release notes

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

v1.19.0

What's Changed

New Contributors

Full Changelog: klauspost/compress@v1.18.6...v1.19.0

v1.18.7

  • Fix s2.NewDict OOB read.

Security release without other changes.

Full Changelog: klauspost/compress@v1.18.6...v1.18.7

v1.18.6

What's Changed

New Contributors

Full Changelog: klauspost/compress@v1.18.5...v1.18.6

v1.18.5

What's Changed

... (truncated)

Commits

Updates github.com/minio/minio-go/v7 from 7.0.72 to 7.2.1

Release notes

Sourced from github.com/minio/minio-go/v7's releases.

v7.2.0

What's Changed

Full Changelog: minio/minio-go@v7.1.0...v7.2.0

Release v7.1.0

What's Changed

Full Changelog: minio/minio-go@v7.0.100...v7.1.0

v7.0.98

What's Changed

New Contributors

Full Changelog: minio/minio-go@v7.0.97...v7.0.98

Bugfix Release

What's Changed

New Contributors

... (truncated)

Commits

Updates github.com/prometheus/client_golang from 1.19.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

v1.23.0 - 2025-07-30

  • [CHANGE] Minimum required Go version is now 1.23, only the two latest Go versions are supported from now on. #1812
  • [FEATURE] Add WrapCollectorWith and WrapCollectorWithPrefix #1766
  • [FEATURE] Add exemplars for native histograms #1686
  • [ENHANCEMENT] exp/api: Bubble up status code from writeResponse #1823
  • [ENHANCEMENT] collector/go: Update runtime metrics for Go v1.23 and v1.24 #1833
  • [BUGFIX] exp/api: client prompt return on context cancellation #1729

... (truncated)

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.

1.23.0 / 2025-07-30

  • [CHANGE] Minimum required Go version is now 1.23, only the two latest Go versions are supported from now on. #1812
  • [FEATURE] Add WrapCollectorWith and WrapCollectorWithPrefix #1766
  • [FEATURE] Add exemplars for native histograms #1686
  • [ENHANCEMENT] exp/api: Bubble up status code from writeResponse #1823
  • [ENHANCEMENT] collector/go: Update runtime metrics for Go v1.23 and v1.24 #1833
  • [BUGFIX] exp/api: client prompt return on context cancellation #1729

1.22.0 / 2025-04-07

⚠️ This release contains potential breaking change if you use experimental zstd support introduce in #1496 ⚠️

Experimental support for zstd on scrape was added, controlled by the request Accept-Encoding header. It was enabled by default since version 1.20, but now you need to add a blank import to enable it. The decision to make it opt-in by default was originally made because the Go standard library was expected to have default zstd support added soon, golang/go#62513 however, the work took longer than anticipated and it will be postponed to upcoming major Go versions.

e.g.:

import (
  _ "github.com/prometheus/client_golang/prometheus/promhttp/zstd"
)
  • [FEATURE] prometheus: Add new CollectorFunc utility #1724
  • [CHANGE] Minimum required Go version is now 1.22 (we also test client_golang against latest go version - 1.24) #1738
  • [FEATURE] api: WithLookbackDelta and WithStats options have been added to API client. #1743
  • [CHANGE] ⚠️ promhttp: Isolate zstd support and klauspost/compress library use to promhttp/zstd package. #1765

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. ⚠️

... (truncated)

Commits

Updates github.com/slok/go-http-metrics from 0.11.0 to 0.13.0

Release notes

Sourced from github.com/slok/go-http-metrics's releases.

v0.13.0

0.13.0 - 2024-09-05

Added

  • Added IgnoredPaths option to ignore measuring specific exact paths.

Changed

  • Dependency updates.
  • Use Go 1.23.

v0.12.0

0.12.0 - 2024-04-19

Changed

  • Gin middleware now records the path using the regex from FullPath() instead of the real URL, avoiding cardinality explosion.
  • Dependency updates.
  • Use Go 1.22.
Changelog

Sourced from github.com/slok/go-http-metrics's changelog.

[0.13.0] - 2024-09-05

Added

  • Added IgnoredPaths option to ignore measuring specific exact paths.

Changed

  • Dependency updates.
  • Use Go 1.23.

[0.12.0] - 2024-04-19

Changed

  • Gin middleware now records the path using the regex from FullPath() instead of the real URL, avoiding cardinality explosion.
  • Dependency updates.
  • Use Go 1.22.
Commits

Updates github.com/urfave/cli/v2 from 2.27.1 to 2.27.7

Release notes

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

v2.27.7

What's Changed

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

v2.27.6

What's Changed

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

v2.27.5

What's Changed

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

v2.27.4

What's Changed

Full Changelog: urfave/cli@v2.27.3...v2.27.4

v2.27.3

What's Changed

New Contributors

Full Changelog: urfave/cli@v2.27.2...v2.27.3

v2.27.2

What's Changed

... (truncated)

Commits
  • 19b951a Merge pull request #2159 from urfave/v2-deps-up
  • dd134b5 Update dependencies in v2 series
  • 347cd02 Merge pull request #2157 from urfave/v2-not-dependabot
  • 0acf2e4 Dependabot does not work like this (v2)
  • c7bc0a9 Merge pull request #2154 from urfave/v2-dependabot-maybe
  • 6ec0368 Is this file needed on each release branch? (v2)
  • 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
  • Additional commits viewable in compare view

Updates golang.org/x/oauth2 from 0.34.0 to 0.36.0

Commits
  • 4d954e6 all: upgrade go directive to at least 1.25.0 [generated]
  • 89ff2e1 google: add safer credentials JSON loading options.
  • See full diff in compare view

Updates golang.org/x/sync from 0.20.0 to 0.22.0

Commits
  • 1eb64d4 semaphore: panic on negative weights
  • 5071ed6 all: fix some comments to improve readability
  • See full diff in compare view

Updates google.golang.org/grpc from 1.79.3 to 1.82.1

Release notes

Sourced from google.golang.org/grpc's releases.

Release 1.82.1

Security

  • server: Stop reading from the connection when flooded by HTTP/2 frames. The default value for this limit is 100 frames, excluding DATA and HEADERS, and may be changed by setting environment variable GRPC_GO_EXPERIMENTAL_CONTROL_BUFFER_THROTTLE_LIMIT.
  • xds/rbac: Support Metadata and RequestedServerName permissions matcher fields. If present in a DENY rule, previously these would be ignored and fail-open.
  • xds/rbac: Fix panic when parsing unsupported fields in NotRule/NotId permissions.
  • xds/rbac: Support the deprecated source_ip principal identifier by treating it as equivalent to direct_remote_ip.

Release 1.82.0

Behavior Changes

  • server: Remove support for GRPC_GO_EXPERIMENTAL_DISABLE_STRICT_PATH_CHECKING environment varibale. Strict incoming RPC path validation (which has been the default since v1.79.3) can no longer be disabled. (#9112)
  • transport: Add environment variable to change the default max header list size from 16MB to 8KB. This may be enabled by setting GRPC_GO_EXPERIMENTAL_ENABLE_8KB_DEFAULT_HEADER_LIST_SIZE=true. This will be enabled by default in a subsequent release. (#9019)
  • balancer: Load Balancing policy registry is now case-sensitive. Set GRPC_GO_EXPERIMENTAL_CASE_SENSITIVE_BALANCER_REGISTRIES=false (and file an issue) to revert to case-insensitive behavior. (#9017)

New Features

  • experimental/stats: Expose a new API, NewContextWithLabelCallback, to register a callback that is invoked when telemetry labels are added. (#8877)
  • client: Return a portion of the response body in the error message, when the client receives an unexpected non-gRPC HTTP response, to make debugging easier. (#8929)
  • server: Add environment variable GRPC_GO_SERVER_GOROUTINE_LABELS that controls setting runtime/pprof.Labels on goroutines spawned by the server. Set GRPC_GO_SERVER_GOROUTINE_LABELS=grpc.method=true to add the grpc.method label on goroutines spawned to handle incoming requests. (#9082)

Bug Fixes

  • xds/server: Fix a memory leak of HTTP filter instances occurring when route configurations are updated in-place during a Route Discovery Service (RDS) update. (#9138)
  • grpc: In the deprecated gzip Compressor (used via the deprecated WithCompressor dial option), enforce the MaxRecvMsgSize limit on the decompressed message buffer, preventing excessive memory allocation from highly compressed payloads. (#9114)
  • stats/opentelemetry: Record retry attempts, grpc.previous-rpc-attempts, at the call level and not the attempt level. (#8923)
  • encoding: Ensure Close() is always called on readers returned from Compressor.Decompress if possible. (#9135)
  • channelz: Fix the LastMessageSentTimestamp and LastMessageReceivedTimestamp fields in SocketMetrics to ensure they contain correct timestamp values. (#9109)

Release 1.81.1

Security

  • xds/rbac: Fix a potential authorization bypass caused by incorrectly falling through URI/DNS SANs to Subject Distinguished Name (DN) when matching the authenticated principal name. With this fix, only the first non-empty identity source will be used, as per gRFC A41. (#9111)

Bug Fixes

  • otel: Segregate client and server RPC information used for metrics and traces, to avoid one overwriting the other. (#9081)

Release 1.81.0

Behavior Changes

  • balancer/rls: Switch gauge metrics to asynchronous emission (once per collection cycle) to reduce telemetry noise and align with other gRPC language implementations. (#8808)

Dependencies

... (truncated)

Commits

Updates google.golang.org/protobuf from 1.36.10 to 1.36.11

Updates github.com/Azure/azure-sdk-for-go/sdk/azcore from 1.11.1 to 1.22.0

Release notes

Sourced from github.com/Azure/azure-sdk-for-go/sdk/azcore's releases.

sdk/azidentity/v1.14.0

1.14.0 (2026-06-15)

Breaking Changes

These changes affect only code written against a beta version such as v1.14.0-beta.3

  • Removed WorkloadIdentityCredentialOptions.EnableAzureProxy. It will return in v1.15.0-beta.1

Bugs Fixed

  • AzureDeveloperCLICredential improved reporting of error messages returned from azd

Other Changes

  • Returned azidentity errors include links to the troubleshooting guide when appropriate
  • This module now requires a minimum Go version of 1.25
  • Upgraded dependencies
Commits
  • a19f613 Prep azcore@v1.22.0 for release (#26926)
  • 5803c0e Increment package version after release of storage/azblob (#26935) (#26943)
  • 9a979ff [Automation] Regenerate SDK based on typespec-go branch main 【batch 6】 (#26939)
  • 711094d eng/tools/generator: release v0.4.14 (#26934)
  • 20bd677 Deprecate Change Analysis SDK (#26913)
  • 92a31ec [Automation] Regenerate SDK based on typespec-go branch main 【batch 5】 (#26932)
  • 768459d azcertificates: live recording for PlatformManaged + review fixes (follow-up ...
  • e845f72 Update codeowners (#26918)
  • 118bb35 eng/tools/internal/exports: handle untyped const with selector expr value (#2...
  • 2b3767b Configurations: 'specification/containerservice/resource-manager/Microsoft.C...
  • Additional commits viewable in compare view

Updates github.com/Azure/azure-sdk-for-go/sdk/azidentity from 1.6.0 to 1.13.1

Release notes

Sourced from github.com/Azure/azure-sdk-for-go/sdk/azidentity's releases.

sdk/storage/azblob/v1.8.0

1.8.0 (2026-06-15)

Features Added

  • Includes all features from 1.8.0-beta.1 and 1.8.0-beta.2

sdk/storage/azfile/v1.7.0

1.7.0 (2026-06-15)

Features Added

  • Includes all features from 1.7.0-beta.1
Commits
  • 6bb9b03 azidentity v1.13.1 (#25574)
  • e18dbd7 Increment package version after release of azidentity (#25367)
  • 4f0facc Prepare azidentity v1.13.0 for release (#25352)
  • 2d8c98b Selecting ManagedIdentityCredential disables DefaultAzureCredential's IMDS pr...
  • 67dd4fc Increment package version after release of azidentity (#25263)
  • 1a74bc8 Prepare azidentity v1.12.0 for release (#25231)
  • 839a355 Test IMDS managed identity with a remote VM (#25237)
  • c352be3 Sync eng/common directory with azure-sdk-tools for PR 11931 (#25243)
  • c994eca gofmt (#25234)
  • 9c95d95 [Release] sdk/resourcemanager/computefleet/armcomputefleet/2.0.0-beta.1 gener...
  • Additional commits viewable in compare view

Updates github.com/Azure/azure-sdk-for-go/sdk/storage/azblob from 0.4.1 to 1.8.0

Release notes

Sourced from github.com/Azure/azure-sdk-for-go/sdk/storage/azblob's releases.

sdk/storage/azblob/v1.8.0

1.8.0 (2026-06-15)

Features Added

  • Includes all features from 1.8.0-beta.1 and 1.8.0-beta.2

sdk/storage/azfile/v1.7.0

1.7.0 (2026-06-15)

Features Added

  • Includes all features from 1.7.0-beta.1

sdk/storage/azdatalake/v1.6.0

1.6.0 (2026-06-15)

Features Added

  • Includes all features from 1.6.0-beta.1

sdk/security/keyvault/azkeys/v1.6.0-beta.1

1.6.0-beta.1 (2026-06-09)

Features Added

  • Added the SecureWrapKey and SecureUnwrapKey operations
  • Added the JSONWebKeyWrapAlgorithm type and the ExternalKey, SecureKeyOperationResult, SecureKeyUnWrapOperationParameters, and SecureKeyWrapOperationParameters models
  • Added the ExternalKey and KeySize fields to KeyAttributes

Other Changes

  • Upgraded to API service version 2026-01-01-preview
  • Upgraded dependencies
  • The tests now require a new environment variable when recording: EKM_EXTERNAL_ID (name of an external key exposed by the EKM proxy)

sdk/security/keyvault/azadmin/v1.6.0-beta.1

1.6.0-beta.1 (2026-06-09)

Features Added

  • Added the ekm package for external key management operations

Other Changes

  • Upgraded to API service version 2026-01-01-preview
  • Upgraded dependencies
  • The ekm package's tests require two new environment variables when recording: EKM_PROXY_HOST (EKM proxy host:port), EKM_SERVER_CA_CERTIFICATE (PEM or base64-encoded DER CA chain)

sdk/data/azcosmos/v1.5.0

1.5.0 (2026-07-13)

Breaking Changes

... (truncated)

Commits

Updates github.com/johannesboyne/gofakes3 from 0.0.0-20230506070712-04da935ef877 to 1.2.0

Release notes

Sourced from github.com/johannesboyne/gofakes3's releases.

v1.2.0

Adds paginated bucket listing to the s3bolt backend.

Features

  • s3bolt: ListBucket now honours page.Marker and page.MaxKeys instead of returning ErrInternalPageNotImplemented, so listing a bolt-backed bucket can be paginated (#114) — thanks @​Aliexe-code

Bug fixes

  • s3bolt: fix infinite pagination when listing with a delimiter — NextMarker now advances past the whole common-prefix group instead of pointing at the prefix itself, so delimited listings terminate and each common prefix is returned exactly once (closes #66)

Delimited and flat multi-page listings are covered by new regression tests.

v1.1.0

Maintenance release: correctness fixes, S3 compatibility improvements, and dependency updates.

Note on tag naming: starting with this release, tags use the Go-required v prefix (see #116). A matching v1.0.0 tag was also added so go get github.com/johannesboyne/gofakes3@v1.0.0 resolves correctly.

Bug fixes

  • Fix CopyObject panic when X-Amz-Copy-Source is fully URL-encoded (View with Codesmith Autofix with Codesmith
    Need help on this PR? Tag /codesmith with what you need. Autofix is disabled. (Staging)

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Jul 10, 2026

@cursor cursor Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cursor Bugbot has reviewed your changes using default effort and found 1 potential issue.

Fix All in Cursor

❌ Bugbot Autofix is OFF. To automatically fix reported issues with cloud agents, enable autofix in the Cursor dashboard.

Reviewed by Cursor Bugbot for commit da8f8df. Configure here.

Comment thread go.mod
google.golang.org/genproto/googleapis/api v0.0.0-20260414002931-afd174a4e478
google.golang.org/genproto/googleapis/bytestream v0.0.0-20240401170217-c3f982113cda
google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217
google.golang.org/genproto/googleapis/rpc v0.0.0-20260414002931-afd174a4e478

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bazel builds skip dependency bumps

High Severity

This PR bumps versions only in go.mod and go.sum, but release binaries and OCI images are built with Bazel using pinned versions in deps.bzl and WORKSPACE (for example minio-go v7.0.72, azblob v0.4.1, grpc v1.79.3). Those artifacts therefore keep the pre-bump dependencies while go build/go test resolve the new ones.

Fix in Cursor Fix in Web

Reviewed by Cursor Bugbot for commit da8f8df. Configure here.

Bumps the go-deps group with 12 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/klauspost/compress](https://github.com/klauspost/compress) | `1.17.8` | `1.19.0` |
| [github.com/minio/minio-go/v7](https://github.com/minio/minio-go) | `7.0.72` | `7.2.1` |
| [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `1.19.0` | `1.23.2` |
| [github.com/slok/go-http-metrics](https://github.com/slok/go-http-metrics) | `0.11.0` | `0.13.0` |
| [github.com/urfave/cli/v2](https://github.com/urfave/cli) | `2.27.1` | `2.27.7` |
| [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.34.0` | `0.36.0` |
| [golang.org/x/sync](https://github.com/golang/sync) | `0.20.0` | `0.22.0` |
| [google.golang.org/grpc](https://github.com/grpc/grpc-go) | `1.79.3` | `1.82.1` |
| [github.com/Azure/azure-sdk-for-go/sdk/azcore](https://github.com/Azure/azure-sdk-for-go) | `1.11.1` | `1.22.0` |
| [github.com/Azure/azure-sdk-for-go/sdk/storage/azblob](https://github.com/Azure/azure-sdk-for-go) | `0.4.1` | `1.8.0` |
| [github.com/johannesboyne/gofakes3](https://github.com/johannesboyne/gofakes3) | `0.0.0-20230506070712-04da935ef877` | `1.2.0` |
| [github.com/valyala/gozstd](https://github.com/valyala/gozstd) | `1.20.1` | `1.25.0` |



Updates `github.com/klauspost/compress` from 1.17.8 to 1.19.0
- [Release notes](https://github.com/klauspost/compress/releases)
- [Commits](klauspost/compress@v1.17.8...v1.19.0)

Updates `github.com/minio/minio-go/v7` from 7.0.72 to 7.2.1
- [Release notes](https://github.com/minio/minio-go/releases)
- [Commits](minio/minio-go@v7.0.72...v7.2.1)

Updates `github.com/prometheus/client_golang` from 1.19.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.19.0...v1.23.2)

Updates `github.com/slok/go-http-metrics` from 0.11.0 to 0.13.0
- [Release notes](https://github.com/slok/go-http-metrics/releases)
- [Changelog](https://github.com/slok/go-http-metrics/blob/master/CHANGELOG.md)
- [Commits](slok/go-http-metrics@v0.11.0...v0.13.0)

Updates `github.com/urfave/cli/v2` from 2.27.1 to 2.27.7
- [Release notes](https://github.com/urfave/cli/releases)
- [Changelog](https://github.com/urfave/cli/blob/main/docs/CHANGELOG.md)
- [Commits](urfave/cli@v2.27.1...v2.27.7)

Updates `golang.org/x/oauth2` from 0.34.0 to 0.36.0
- [Commits](golang/oauth2@v0.34.0...v0.36.0)

Updates `golang.org/x/sync` from 0.20.0 to 0.22.0
- [Commits](golang/sync@v0.20.0...v0.22.0)

Updates `google.golang.org/grpc` from 1.79.3 to 1.82.1
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.79.3...v1.82.1)

Updates `google.golang.org/protobuf` from 1.36.10 to 1.36.11

Updates `github.com/Azure/azure-sdk-for-go/sdk/azcore` from 1.11.1 to 1.22.0
- [Release notes](https://github.com/Azure/azure-sdk-for-go/releases)
- [Commits](Azure/azure-sdk-for-go@sdk/azcore/v1.11.1...sdk/azcore/v1.22.0)

Updates `github.com/Azure/azure-sdk-for-go/sdk/azidentity` from 1.6.0 to 1.13.1
- [Release notes](https://github.com/Azure/azure-sdk-for-go/releases)
- [Commits](Azure/azure-sdk-for-go@sdk/azcore/v1.6.0...sdk/azidentity/v1.13.1)

Updates `github.com/Azure/azure-sdk-for-go/sdk/storage/azblob` from 0.4.1 to 1.8.0
- [Release notes](https://github.com/Azure/azure-sdk-for-go/releases)
- [Commits](Azure/azure-sdk-for-go@sdk/azcore/v0.4.1...sdk/azcore/v1.8.0)

Updates `github.com/johannesboyne/gofakes3` from 0.0.0-20230506070712-04da935ef877 to 1.2.0
- [Release notes](https://github.com/johannesboyne/gofakes3/releases)
- [Commits](https://github.com/johannesboyne/gofakes3/commits/v1.2.0)

Updates `github.com/valyala/gozstd` from 1.20.1 to 1.25.0
- [Commits](valyala/gozstd@v1.20.1...v1.25.0)

Updates `google.golang.org/genproto/googleapis/api` from 0.0.0-20251202230838-ff82c1b0f217 to 0.0.0-20260414002931-afd174a4e478
- [Commits](https://github.com/googleapis/go-genproto/commits)

Updates `google.golang.org/genproto/googleapis/rpc` from 0.0.0-20251202230838-ff82c1b0f217 to 0.0.0-20260414002931-afd174a4e478
- [Commits](https://github.com/googleapis/go-genproto/commits)

---
updated-dependencies:
- dependency-name: github.com/Azure/azure-sdk-for-go/sdk/azcore
  dependency-version: 1.22.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: github.com/Azure/azure-sdk-for-go/sdk/azidentity
  dependency-version: 1.13.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: github.com/Azure/azure-sdk-for-go/sdk/storage/azblob
  dependency-version: 1.8.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: go-deps
- dependency-name: github.com/johannesboyne/gofakes3
  dependency-version: 1.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: go-deps
- dependency-name: github.com/klauspost/compress
  dependency-version: 1.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: github.com/minio/minio-go/v7
  dependency-version: 7.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: github.com/prometheus/client_golang
  dependency-version: 1.23.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: github.com/slok/go-http-metrics
  dependency-version: 0.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: github.com/urfave/cli/v2
  dependency-version: 2.27.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-deps
- dependency-name: github.com/valyala/gozstd
  dependency-version: 1.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: golang.org/x/oauth2
  dependency-version: 0.36.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: golang.org/x/sync
  dependency-version: 0.22.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: google.golang.org/genproto/googleapis/api
  dependency-version: 0.0.0-20260414002931-afd174a4e478
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-deps
- dependency-name: google.golang.org/genproto/googleapis/rpc
  dependency-version: 0.0.0-20260414002931-afd174a4e478
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-deps
- dependency-name: google.golang.org/grpc
  dependency-version: 1.82.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-deps
- dependency-name: google.golang.org/protobuf
  dependency-version: 1.36.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title Bump the go-deps group with 16 updates Bump the go-deps group across 1 directory with 16 updates Jul 17, 2026
@dependabot
dependabot Bot force-pushed the dependabot/go_modules/go-deps-72f879b7dc branch from da8f8df to 08d1d01 Compare July 17, 2026 13: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