Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 22, 2025

Bumps the go-modules group with 18 updates in the / directory:

Package From To
cloud.google.com/go/auth 0.16.4 0.17.0
cloud.google.com/go/compute/metadata 0.8.0 0.9.0
cloud.google.com/go/iam 1.5.2 1.5.3
cloud.google.com/go/monitoring 1.24.2 1.24.3
cloud.google.com/go/storage 1.56.0 1.57.0
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp 1.27.0 1.30.0
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric 0.53.0 0.54.0
github.com/anchore/syft 1.34.2 1.36.0
github.com/aws/aws-sdk-go-v2/config 1.31.13 1.31.14
github.com/aws/aws-sdk-go-v2/service/s3 1.88.5 1.88.6
github.com/containerd/cgroups/v3 3.0.3 3.0.5
github.com/envoyproxy/go-control-plane/envoy 1.32.4 1.35.0
github.com/klauspost/compress 1.18.0 1.18.1
github.com/mattn/go-runewidth 0.0.17 0.0.19
github.com/nwaples/rardecode/v2 2.2.0 2.2.1
github.com/opencontainers/runtime-spec 1.2.0 1.2.1
github.com/spiffe/go-spiffe/v2 2.5.0 2.6.0
go.opentelemetry.io/contrib/detectors/gcp 1.36.0 1.38.0

Updates cloud.google.com/go/auth from 0.16.4 to 0.17.0

Release notes

Sourced from cloud.google.com/go/auth's releases.

auth 0.17.0

0.17.0 (2025-10-02)

Features

  • add trust boundary support for external accounts (#12864) (a67a146)

  • Add trust boundary support for service accounts and impersonation (HTTP/gRPC) (#11870) (5c2b665)

Changelog

Sourced from cloud.google.com/go/auth's changelog.

v0.17.0

  • firestore BREAKING CHANGES:
    • Remove UpdateMap and UpdateStruct; rename UpdatePaths to Update. Change docref.UpdateMap(ctx, map[string]interface{}{"a.b", 1}) to docref.Update(ctx, []firestore.Update{{Path: "a.b", Value: 1}})

      Change docref.UpdateStruct(ctx, []string{"Field"}, aStruct) to docref.Update(ctx, []firestore.Update{{Path: "Field", Value: aStruct.Field}})

    • Rename MergePaths to Merge; require args to be FieldPaths

    • A value stored as an integer can be read into a floating-point field, and vice versa.

  • bigtable/cmd/cbt:
    • Support deleting a column.
    • Add regex option for row read.
  • spanner: Mark stable.
  • storage:
    • Add Reader.ContentEncoding method.
    • Fix handling of SignedURL headers.
  • bigquery:
    • If Uploader.Put is called with no rows, it returns nil without making a call.
    • Schema inference supports the "nullable" option in struct tags for non-required fields.
    • TimePartitioning supports "Field".

v0.16.0

  • Other bigquery changes:

    • JobIterator.Next returns *Job; removed JobInfo (BREAKING CHANGE).
    • UseStandardSQL is deprecated; set UseLegacySQL to true if you need Legacy SQL.
    • Uploader.Put will generate a random insert ID if you do not provide one.
    • Support time partitioning for load jobs.
    • Support dry-run queries.
    • A Job remembers its last retrieved status.
    • Support retrieving job configuration.
    • Support labels for jobs and tables.
    • Support dataset access lists.
    • Improve support for external data sources, including data from Bigtable and Google Sheets, and tables with external data.
    • Support updating a table's view configuration.
    • Fix uploading civil times with nanoseconds.
  • storage:

    • Support PubSub notifications.

... (truncated)

Commits
  • 050b16d all: update version and README
  • def6812 storage: fix SignedURL integration test
  • ff434d4 all: make tests pass with go1.10beta1
  • ad7ff91 storage: add header sanitisation for SignedURL.
  • b97d364 internal/fields: fix test to match next Go version
  • 6856ba4 bigquery: support inference of nullable fields
  • 5fa930e bigquery: support time-partitioning field
  • 9cfa4d0 bigtable: link to the cbt installation instructions in the cbt docs
  • 3051b91 datatransfer: move into bigquery dir
  • 5733118 firestore: remove UpdateMap and UpdateStruct
  • Additional commits viewable in compare view

Updates cloud.google.com/go/compute/metadata from 0.8.0 to 0.9.0

Release notes

Sourced from cloud.google.com/go/compute/metadata's releases.

compute/metadata: v0.9.0

0.9.0 (2025-09-24)

Features

Changelog

Sourced from cloud.google.com/go/compute/metadata's changelog.

Code changes required from v0.9.0

  • pubsub: Replace

    sub.ModifyPushConfig(ctx, pubsub.PushConfig{Endpoint: "https://example.com/push"})
    

    with

    sub.Update(ctx, pubsub.SubscriptionConfigToUpdate{
        PushConfig: &pubsub.PushConfig{Endpoint: "https://example.com/push"},
    })
    
  • trace: traceGRPCServerInterceptor will be provided from *trace.Client. Given an initialized *trace.Client named tc, instead of

    s := grpc.NewServer(grpc.UnaryInterceptor(trace.GRPCServerInterceptor(tc)))
    

    write

    s := grpc.NewServer(grpc.UnaryInterceptor(tc.GRPCServerInterceptor()))
    
  • trace trace.GRPCClientInterceptor will also provided from *trace.Client. Instead of

    conn, err := grpc.Dial(srv.Addr, grpc.WithUnaryInterceptor(trace.GRPCClientInterceptor()))
    

    write

    conn, err := grpc.Dial(srv.Addr, grpc.WithUnaryInterceptor(tc.GRPCClientInterceptor()))
    
  • trace: We removed the deprecated trace.EnableGRPCTracing. Use the gRPC interceptor as a dial option as shown below when initializing Cloud package clients:

    c, err := pubsub.NewClient(ctx, "project-id", option.WithGRPCDialOption(grpc.WithUnaryInterceptor(tc.GRPCClientInterceptor())))
    if err != nil {
        ...
    

... (truncated)

Commits
  • d4f8670 BREAKING: all: regenerate toolkit client
  • 23179f2 readme: document Trace and Error Reporting clients
  • c2e00bb trace: switch to grpc-trace-bin for gRPC calls
  • 1de0ed4 rpcreplay: Fprintf functions
  • 8878988 bigtable/bttest: Return proper error code when entity already exists
  • e432073 bigtable: Don't retry on INTERNAL errors.
  • 84bf648 rpcreplay: responses to code review comments from previous CL
  • e687f27 rpcreplay: replay of unary RPCs
  • 9da216d spanner: more integration tests
  • a089e75 logging: document that Close flushes the loggers
  • Additional commits viewable in compare view

Updates cloud.google.com/go/iam from 1.5.2 to 1.5.3

Release notes

Sourced from cloud.google.com/go/iam's releases.

iam: v1.5.3

1.5.3 (2025-10-08)

Bug Fixes

  • iam: Upgrade gRPC service registration func (9dd3adf)
Commits

Updates cloud.google.com/go/monitoring from 1.24.2 to 1.24.3

Release notes

Sourced from cloud.google.com/go/monitoring's releases.

monitoring: v1.24.3

1.24.3 (2025-10-08)

Bug Fixes

  • monitoring: Upgrade gRPC service registration func (9dd3adf)
Commits

Updates cloud.google.com/go/storage from 1.56.0 to 1.57.0

Release notes

Sourced from cloud.google.com/go/storage's releases.

storage: v1.57.0

1.57.0 (2025-09-23)

Features

  • storage/control: Add new GetIamPolicy, SetIamPolicy, and TestIamPermissions RPCs (d73f912)
  • storage: Post support dynamic key name (#12677) (9e761f9)
  • storage: WithMeterProvider allows custom meter provider configuration (#12668) (7f574b0)

Bug Fixes

Performance Improvements

storage: v1.56.3

1.56.3 (2025-10-14)

Bug Fixes

Commits
  • 8efa03a chore(main): release spanner 1.57.0 (#9337)
  • 7ff5356 fix(spanner): SelectAll struct fields match should be case-insensitive (#9417)
  • f377281 fix(spanner): internal test package should import local version (#9416)
  • 8c76415 chore(main): release storage 1.38.0 (#9336)
  • 36d788b chore(main): release bigquery 1.59.1 (#9412)
  • 4ac005d fix(bigquery): align return time.Time values to UTC (#9411)
  • ae8c7b7 chore: release main (#9384)
  • f049c97 fix(aiplatform): remove field max_wait_duration from message Scheduling (#9...
  • f7170e2 chore: update CI to turn gowork setting off for build/test (#9396)
  • 530d273 chore(main): release vertexai 0.7.1 (#9395)
  • Additional commits viewable in compare view

Updates github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp from 1.27.0 to 1.30.0

Release notes

Sourced from github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp's releases.

v1.5.1 and v0.29.1

What's Changed

Full Changelog: GoogleCloudPlatform/opentelemetry-operations-go@v1.5.0...v1.5.1

v1.5.0 and v0.29.0

What's Changed

Full Changelog: GoogleCloudPlatform/opentelemetry-operations-go@v1.4.0...v1.5.0

v1.4.0 and v0.28.0

What's Changed

... (truncated)

Commits

Updates github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric from 0.53.0 to 0.54.0

Commits

Updates github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping from 0.53.0 to 0.54.0

Commits

Updates github.com/anchore/syft from 1.34.2 to 1.36.0

Release notes

Sourced from github.com/anchore/syft's releases.

v1.36.0

Added Features

Bug Fixes

(Full Changelog)

Commits
  • 8be4639 chore(deps): update tools to latest versions (#4302)
  • 44b7b09 chore(deps): bump github.com/github/go-spdx/v2 from 2.3.3 to 2.3.4 (#4301)
  • 675075e chore(deps): bump github/codeql-action from 4.30.8 to 4.30.9 (#4299)
  • 31b2c4c support universal (fat) mach-o binary files (#4278)
  • 07029ea chore(deps): bump sigstore/cosign-installer from 3.10.0 to 4.0.0 (#4296)
  • f4de1e8 chore(deps): bump anchore/sbom-action from 0.20.7 to 0.20.8 (#4297)
  • 538b4a2 convert posix path back to windows (#4285)
  • fc74b07 Remove duplicate image source providers (#4289)
  • 6627c52 chore(deps): bump anchore/sbom-action from 0.20.6 to 0.20.7 (#4293)
  • c0f32e1 feat: add option to fetch remote licenses for pnpm-lock.yaml files (#4286)
  • Additional commits viewable in compare view

Updates github.com/aws/aws-sdk-go-v2/config from 1.31.13 to 1.31.14

Commits

Updates github.com/aws/aws-sdk-go-v2/credentials from 1.18.17 to 1.18.18

Changelog

Sourced from github.com/aws/aws-sdk-go-v2/credentials's changelog.

Release (2023-03-16)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/aws-sdk-go-v2/config: v1.18.18
    • Bug Fix: Allow RoleARN to be set as functional option on STS WebIdentityRoleOptions. Fixes aws/aws-sdk-go-v22.
  • github.com/aws/aws-sdk-go-v2/service/guardduty: v1.18.0
    • Feature: Updated 9 APIs for feature enablement to reflect expansion of GuardDuty to features. Added new APIs and updated existing APIs to support RDS Protection GA.
  • github.com/aws/aws-sdk-go-v2/service/resourceexplorer2: v1.2.7
    • Documentation: Documentation updates for APIs.
  • github.com/aws/aws-sdk-go-v2/service/sagemakerruntime: v1.18.7
    • Documentation: Documentation updates for SageMaker Runtime

Release (2023-03-15)

Module Highlights

  • github.com/aws/aws-sdk-go-v2/service/migrationhubstrategy: v1.9.0
    • Feature: This release adds the binary analysis that analyzes IIS application DLLs on Windows and Java applications on Linux to provide anti-pattern report without configuring access to the source code.
  • github.com/aws/aws-sdk-go-v2/service/s3control: v1.31.0
    • Feature: Added support for S3 Object Lambda aliases.
  • github.com/aws/aws-sdk-go-v2/service/securitylake: v1.3.0
    • Feature: Make Create/Get/ListSubscribers APIs return resource share ARN and name so they can be used to validate the RAM resource share to accept. GetDatalake can be used to track status of UpdateDatalake and DeleteDatalake requests.

Release (2023-03-14)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/aws-sdk-go-v2/feature/ec2/imds: v1.13.0
    • Feature: Add flag to disable IMDSv1 fallback
  • github.com/aws/aws-sdk-go-v2/service/applicationautoscaling: v1.18.0
    • Feature: Application Auto Scaling customers can now use mathematical functions to customize the metric used with Target Tracking policies within the policy configuration itself, saving the cost and effort of publishing the customizations as a separate metric.
  • github.com/aws/aws-sdk-go-v2/service/dataexchange: v1.19.0
    • Feature: This release enables data providers to license direct access to S3 objects encrypted with Customer Managed Keys (CMK) in AWS KMS through AWS Data Exchange. Subscribers can use these keys to decrypt, then use the encrypted S3 objects shared with them, without creating or managing copies.
  • github.com/aws/aws-sdk-go-v2/service/directconnect: v1.18.7
    • Documentation: describe-direct-connect-gateway-associations includes a new status, updating, indicating that the association is currently in-process of updating.
  • github.com/aws/aws-sdk-go-v2/service/ec2: v1.90.0
    • Feature: This release adds a new DnsOptions key (PrivateDnsOnlyForInboundResolverEndpoint) to CreateVpcEndpoint and ModifyVpcEndpoint APIs.
  • github.com/aws/aws-sdk-go-v2/service/iam: v1.19.6
    • Documentation: Documentation only updates to correct customer-reported issues
  • github.com/aws/aws-sdk-go-v2/service/keyspaces: v1.2.0
    • Feature: Adding support for client-side timestamps
  • github.com/aws/aws-sdk-go-v2/service/support: v1.14.6
    • Announcement: Model regenerated with support for null string values to properly implement support service operations DescribeTrustedAdvisorCheckRefreshStatuses and DescribeTrustedAdvisorCheckSummaries

Release (2023-03-13)

... (truncated)

Commits

Updates github.com/aws/aws-sdk-go-v2/service/s3 from 1.88.5 to 1.88.6

Commits

Updates github.com/aws/aws-sdk-go-v2/service/sts from 1.38.7 to 1.38.8

Commits

Updates github.com/containerd/cgroups/v3 from 3.0.3 to 3.0.5

Release notes

Sourced from github.com/conta...

Description has been truncated

Bumps the go-modules group with 18 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [cloud.google.com/go/auth](https://github.com/googleapis/google-cloud-go) | `0.16.4` | `0.17.0` |
| [cloud.google.com/go/compute/metadata](https://github.com/googleapis/google-cloud-go) | `0.8.0` | `0.9.0` |
| [cloud.google.com/go/iam](https://github.com/googleapis/google-cloud-go) | `1.5.2` | `1.5.3` |
| [cloud.google.com/go/monitoring](https://github.com/googleapis/google-cloud-go) | `1.24.2` | `1.24.3` |
| [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) | `1.56.0` | `1.57.0` |
| [github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp](https://github.com/GoogleCloudPlatform/opentelemetry-operations-go) | `1.27.0` | `1.30.0` |
| [github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric](https://github.com/GoogleCloudPlatform/opentelemetry-operations-go) | `0.53.0` | `0.54.0` |
| [github.com/anchore/syft](https://github.com/anchore/syft) | `1.34.2` | `1.36.0` |
| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.31.13` | `1.31.14` |
| [github.com/aws/aws-sdk-go-v2/service/s3](https://github.com/aws/aws-sdk-go-v2) | `1.88.5` | `1.88.6` |
| [github.com/containerd/cgroups/v3](https://github.com/containerd/cgroups) | `3.0.3` | `3.0.5` |
| [github.com/envoyproxy/go-control-plane/envoy](https://github.com/envoyproxy/go-control-plane) | `1.32.4` | `1.35.0` |
| [github.com/klauspost/compress](https://github.com/klauspost/compress) | `1.18.0` | `1.18.1` |
| [github.com/mattn/go-runewidth](https://github.com/mattn/go-runewidth) | `0.0.17` | `0.0.19` |
| [github.com/nwaples/rardecode/v2](https://github.com/nwaples/rardecode) | `2.2.0` | `2.2.1` |
| [github.com/opencontainers/runtime-spec](https://github.com/opencontainers/runtime-spec) | `1.2.0` | `1.2.1` |
| [github.com/spiffe/go-spiffe/v2](https://github.com/spiffe/go-spiffe) | `2.5.0` | `2.6.0` |
| [go.opentelemetry.io/contrib/detectors/gcp](https://github.com/open-telemetry/opentelemetry-go-contrib) | `1.36.0` | `1.38.0` |



Updates `cloud.google.com/go/auth` from 0.16.4 to 0.17.0
- [Release notes](https://github.com/googleapis/google-cloud-go/releases)
- [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md)
- [Commits](googleapis/google-cloud-go@auth/v0.16.4...v0.17.0)

Updates `cloud.google.com/go/compute/metadata` from 0.8.0 to 0.9.0
- [Release notes](https://github.com/googleapis/google-cloud-go/releases)
- [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md)
- [Commits](googleapis/google-cloud-go@v0.8.0...v0.9.0)

Updates `cloud.google.com/go/iam` from 1.5.2 to 1.5.3
- [Release notes](https://github.com/googleapis/google-cloud-go/releases)
- [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md)
- [Commits](googleapis/google-cloud-go@iam/v1.5.2...iam/v1.5.3)

Updates `cloud.google.com/go/monitoring` from 1.24.2 to 1.24.3
- [Release notes](https://github.com/googleapis/google-cloud-go/releases)
- [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md)
- [Commits](googleapis/google-cloud-go@monitoring/v1.24.2...monitoring/v1.24.3)

Updates `cloud.google.com/go/storage` from 1.56.0 to 1.57.0
- [Release notes](https://github.com/googleapis/google-cloud-go/releases)
- [Changelog](https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md)
- [Commits](googleapis/google-cloud-go@spanner/v1.56.0...spanner/v1.57.0)

Updates `github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp` from 1.27.0 to 1.30.0
- [Release notes](https://github.com/GoogleCloudPlatform/opentelemetry-operations-go/releases)
- [Commits](GoogleCloudPlatform/opentelemetry-operations-go@detectors/gcp/v1.27.0...detectors/gcp/v1.30.0)

Updates `github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric` from 0.53.0 to 0.54.0
- [Release notes](https://github.com/GoogleCloudPlatform/opentelemetry-operations-go/releases)
- [Commits](GoogleCloudPlatform/opentelemetry-operations-go@v0.53.0...v0.54.0)

Updates `github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping` from 0.53.0 to 0.54.0
- [Release notes](https://github.com/GoogleCloudPlatform/opentelemetry-operations-go/releases)
- [Commits](GoogleCloudPlatform/opentelemetry-operations-go@v0.53.0...v0.54.0)

Updates `github.com/anchore/syft` from 1.34.2 to 1.36.0
- [Release notes](https://github.com/anchore/syft/releases)
- [Changelog](https://github.com/anchore/syft/blob/main/.goreleaser.yaml)
- [Commits](anchore/syft@v1.34.2...v1.36.0)

Updates `github.com/aws/aws-sdk-go-v2/config` from 1.31.13 to 1.31.14
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@config/v1.31.13...config/v1.31.14)

Updates `github.com/aws/aws-sdk-go-v2/credentials` from 1.18.17 to 1.18.18
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.18/CHANGELOG.md)
- [Commits](aws/aws-sdk-go-v2@config/v1.18.17...config/v1.18.18)

Updates `github.com/aws/aws-sdk-go-v2/service/s3` from 1.88.5 to 1.88.6
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@service/s3/v1.88.5...service/s3/v1.88.6)

Updates `github.com/aws/aws-sdk-go-v2/service/sts` from 1.38.7 to 1.38.8
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@service/sts/v1.38.7...service/iam/v1.38.8)

Updates `github.com/containerd/cgroups/v3` from 3.0.3 to 3.0.5
- [Release notes](https://github.com/containerd/cgroups/releases)
- [Commits](containerd/cgroups@v3.0.3...v3.0.5)

Updates `github.com/envoyproxy/go-control-plane/envoy` from 1.32.4 to 1.35.0
- [Release notes](https://github.com/envoyproxy/go-control-plane/releases)
- [Changelog](https://github.com/envoyproxy/go-control-plane/blob/main/CHANGELOG.md)
- [Commits](envoyproxy/go-control-plane@envoy/v1.32.4...envoy/v1.35.0)

Updates `github.com/github/go-spdx/v2` from 2.3.3 to 2.3.4
- [Release notes](https://github.com/github/go-spdx/releases)
- [Commits](github/go-spdx@v2.3.3...v2.3.4)

Updates `github.com/go-jose/go-jose/v4` from 4.0.5 to 4.1.1
- [Release notes](https://github.com/go-jose/go-jose/releases)
- [Commits](go-jose/go-jose@v4.0.5...v4.1.1)

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

Updates `github.com/mattn/go-runewidth` from 0.0.17 to 0.0.19
- [Commits](mattn/go-runewidth@v0.0.17...v0.0.19)

Updates `github.com/nwaples/rardecode/v2` from 2.2.0 to 2.2.1
- [Commits](nwaples/rardecode@v2.2.0...v2.2.1)

Updates `github.com/opencontainers/runtime-spec` from 1.2.0 to 1.2.1
- [Release notes](https://github.com/opencontainers/runtime-spec/releases)
- [Changelog](https://github.com/opencontainers/runtime-spec/blob/main/ChangeLog)
- [Commits](opencontainers/runtime-spec@v1.2.0...v1.2.1)

Updates `github.com/spiffe/go-spiffe/v2` from 2.5.0 to 2.6.0
- [Release notes](https://github.com/spiffe/go-spiffe/releases)
- [Changelog](https://github.com/spiffe/go-spiffe/blob/main/CHANGELOG.md)
- [Commits](spiffe/go-spiffe@v2.5.0...v2.6.0)

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

Updates `go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc` from 0.61.0 to 0.63.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go-contrib/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go-contrib@zpages/v0.61.0...zpages/v0.63.0)

Updates `google.golang.org/api` from 0.247.0 to 0.249.0
- [Release notes](https://github.com/googleapis/google-api-go-client/releases)
- [Changelog](https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md)
- [Commits](googleapis/google-api-go-client@v0.247.0...v0.249.0)

Updates `google.golang.org/genproto` from 0.0.0-20250603155806-513f23925822 to 0.0.0-20250922171735-9219d122eba9
- [Commits](https://github.com/googleapis/go-genproto/commits)

Updates `google.golang.org/genproto/googleapis/api` from 0.0.0-20250721164621-a45f3dfb1074 to 0.0.0-20250922171735-9219d122eba9
- [Commits](https://github.com/googleapis/go-genproto/commits)

Updates `google.golang.org/genproto/googleapis/rpc` from 0.0.0-20250818200422-3122310a409c to 0.0.0-20250922171735-9219d122eba9
- [Commits](https://github.com/googleapis/go-genproto/commits)

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

---
updated-dependencies:
- dependency-name: cloud.google.com/go/auth
  dependency-version: 0.17.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: cloud.google.com/go/compute/metadata
  dependency-version: 0.9.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: cloud.google.com/go/iam
  dependency-version: 1.5.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-modules
- dependency-name: cloud.google.com/go/monitoring
  dependency-version: 1.24.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-modules
- dependency-name: cloud.google.com/go/storage
  dependency-version: 1.57.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp
  dependency-version: 1.30.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric
  dependency-version: 0.54.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping
  dependency-version: 0.54.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: github.com/anchore/syft
  dependency-version: 1.36.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: github.com/aws/aws-sdk-go-v2/config
  dependency-version: 1.31.14
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-modules
- dependency-name: github.com/aws/aws-sdk-go-v2/credentials
  dependency-version: 1.18.18
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-modules
- dependency-name: github.com/aws/aws-sdk-go-v2/service/s3
  dependency-version: 1.88.6
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-modules
- dependency-name: github.com/aws/aws-sdk-go-v2/service/sts
  dependency-version: 1.38.8
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-modules
- dependency-name: github.com/containerd/cgroups/v3
  dependency-version: 3.0.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-modules
- dependency-name: github.com/envoyproxy/go-control-plane/envoy
  dependency-version: 1.35.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: github.com/github/go-spdx/v2
  dependency-version: 2.3.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-modules
- dependency-name: github.com/go-jose/go-jose/v4
  dependency-version: 4.1.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: github.com/klauspost/compress
  dependency-version: 1.18.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-modules
- dependency-name: github.com/mattn/go-runewidth
  dependency-version: 0.0.19
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-modules
- dependency-name: github.com/nwaples/rardecode/v2
  dependency-version: 2.2.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-modules
- dependency-name: github.com/opencontainers/runtime-spec
  dependency-version: 1.2.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-modules
- dependency-name: github.com/spiffe/go-spiffe/v2
  dependency-version: 2.6.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: go.opentelemetry.io/contrib/detectors/gcp
  dependency-version: 1.38.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc
  dependency-version: 0.63.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: google.golang.org/api
  dependency-version: 0.249.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: google.golang.org/genproto
  dependency-version: 0.0.0-20250922171735-9219d122eba9
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-modules
- dependency-name: google.golang.org/genproto/googleapis/api
  dependency-version: 0.0.0-20250922171735-9219d122eba9
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-modules
- dependency-name: google.golang.org/genproto/googleapis/rpc
  dependency-version: 0.0.0-20250922171735-9219d122eba9
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-modules
- dependency-name: google.golang.org/grpc
  dependency-version: 1.75.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-modules
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Oct 22, 2025
@dependabot dependabot bot requested a review from a team as a code owner October 22, 2025 23:08
@dependabot dependabot bot added go Pull requests that update Go code dependencies Pull requests that update a dependency file labels Oct 22, 2025
@paketo-bot paketo-bot added the semver:patch A change requiring a patch version bump label Oct 22, 2025
@dmikusa dmikusa merged commit 1af5862 into main Oct 23, 2025
9 of 10 checks passed
@dmikusa dmikusa deleted the dependabot/go_modules/go-modules-88f2b125a1 branch October 23, 2025 13:45
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 semver:patch A change requiring a patch version bump

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants