Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 24, 2025

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

Package From To
cel.dev/expr 0.24.0 0.25.1
cloud.google.com/go/auth 0.16.4 0.18.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.58.0
github.com/anchore/syft 1.38.2 1.39.0
github.com/aws/aws-sdk-go-v2/service/s3 1.94.0 1.95.0
github.com/clipperhouse/displaywidth 0.6.1 0.6.2
github.com/cloudflare/circl 1.6.1 1.6.2
github.com/containerd/cgroups/v3 3.0.3 3.1.2
github.com/docker/cli 29.1.2+incompatible 29.1.3+incompatible
github.com/envoyproxy/go-control-plane/envoy 1.32.4 1.36.0
github.com/envoyproxy/protoc-gen-validate 1.2.1 1.3.0
github.com/gabriel-vasile/mimetype 1.4.11 1.4.12
github.com/googleapis/gax-go/v2 2.15.0 2.16.0
github.com/spdx/tools-golang 0.5.5 0.5.6
golang.org/x/oauth2 0.33.0 0.34.0

Updates cel.dev/expr from 0.24.0 to 0.25.1

Release notes

Sourced from cel.dev/expr's releases.

Release v0.25.1

Minor additions to the v0.25.0 release

What's Changed

Full Changelog: google/cel-spec@v0.25.0...v0.25.1

Release v0.25.0

What's Changed

New Contributors

Full Changelog: google/cel-spec@v0.24.0...v0.25.0

Commits
  • 7f3c4c5 Add parsing tests for string and bytes literals (#489)
  • d3430a8 Remove test/v1 directory and its protos (#487)
  • 3c96c71 Remove remaining google.rpc.Status deps from cel-spec (#486)
  • 750024a Clarify formatting decimals, add %f formatting test cases around rounding (#485)
  • 9dd5f5c Remove int(enum) -> int signature (#483)
  • 808c918 Remove TOC from language definition (#482)
  • bad3928 Add a test case for lastIndexOf in string_ext against an empty string (#468)
  • 14cdd3f Tests for selector, function, and field names formerly defined as reserved (#...
  • 8a33394 Remove orphaned ToC entry for enums as ints from the specification (#476)
  • a8f582a Initial version of the policy specification (#477)
  • See full diff in compare view

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

Release notes

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

auth 0.18.0

0.18.0 (2025-12-15)

Features

chat 0.17.0

0.17.0 (2025-12-18)

Features

  • Add app authorization support to space APIs (PiperOrigin-RevId: 845227338) (ce62012f)

  • Add accessory widget support for private messages (PiperOrigin-RevId: 845227338) (ce62012f)

  • Addition of GMAIL_MESSAGE value for RichLinkType enum in the RichLinkMetadata proto (PiperOrigin-RevId: 844825126) (ce62012f)

Documentation

  • Improve documentation of attachment.proto, event_payload.proto and space.proto (PiperOrigin-RevId: 845227338) (ce62012f)
Changelog

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

v0.18.0

  • bigquery:

    • Marked stable.
    • Schema inference of nullable fields supported.
    • Added TimePartitioning to QueryConfig.
  • firestore: Data provided to DocumentRef.Set with a Merge option can contain Delete sentinels.

  • logging: Clients can accept parent resources other than projects.

  • pubsub:

    • pubsub/pstest: A lighweight fake for pubsub. Experimental; feedback welcome.
    • Support updating more subscription metadata: AckDeadline, RetainAckedMessages and RetentionDuration.
  • oslogin/apiv1beta: New client for the Cloud OS Login API.

  • rpcreplay: A package for recording and replaying gRPC traffic.

  • spanner:

    • Add a ReadWithOptions that supports a row limit, as well as an index.
    • Support query plan and execution statistics.
    • Added OpenCensus support.
  • storage: Clarify checksum validation for gzipped files (it is not validated when the file is served uncompressed).

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:

... (truncated)

Commits
  • 767c40d all: update version and README
  • f757f0d firestore: clarify how to check if a document doesn't exist.
  • aa64de2 spanner: handle breaking change in opencensus trace
  • eb1cc5f bigtable: use localhost instead of 127.0.0.1
  • 566ccf3 Fix ReadRows() reading bug
  • 31bbc66 pstest: misc small changes
  • afc02e1 oslogin/apiv1beta: generate oslogin client
  • 0fdc913 pubsub: resumable stream implementation
  • a0fa192 all: remove path functions from generated files
  • 8e80142 pubsub: remove gRPC blocking-dial option
  • Additional commits viewable in compare view

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

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

Commits

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

Commits

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

Release notes

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

storage 1.58.0

1.58.0 (2025-12-03)

Features

  • add object contexts in Go GCS SDK (#13390) (079c4d96)

  • calculate crc32c by default and pass checksum in trailing and per-chunk request (#13205) (2ab1c778)

  • add support for partial success in ListBuckets (#13320) (d91e47f2)

Bug Fixes

storage 1.57.2

1.57.2 (2025-11-14)

Features

Bug Fixes

Documentation

  • updates to docs and docs formatting (PiperOrigin-RevId: 828488192) (93ca68d5)

storage: v1.57.1

1.57.1 (2025-10-28)

Bug Fixes

  • storage: Takeover idempotence. (#13230) (cc5d2a1)
  • storage: Copy metadata when using Copier with grpc (#12919) (57a2e80)
  • storage: Fix takeover response handling. (#13239) (26d75bc)
  • storage: Remove default timeout for gRPC operations (#13022) (b94c3ba)
  • storage: Skip download of file outside of target dir (#12945) (6259aee)
  • storage: Upgrade gRPC service registration func (8fffca2)

storage: v1.56.3

1.56.3 (2025-10-14)

Bug Fixes

Commits

Updates github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp from 1.27.0 to 1.29.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.38.2 to 1.39.0

Release notes

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

v1.39.0

Added Features

Bug Fixes

(Full Changelog)

Commits
  • e9e3494 remove debug output (#4496)
  • b3c70da Add experimental cataloger capabilities command (#4317)
  • ae1a247 Unpin fixture dependencies that will always float (#4495)
  • 0ea920b Decompress UPX packed binaries to extract golang build info (ELF formatted bi...
  • 7ef4703 chore(deps): update tools to latest versions (#4491)
  • 8334fb0 chore(deps): bump modernc.org/sqlite from 1.40.1 to 1.41.0 (#4489)
  • c9760d2 feat: snap can be queried by revision and track/risk/branch (#4439)
  • 74c9380 fix: 4423 dotnet-deps cataloger skips project type by def
  • 7ed733c signpost to docs site (#4483)
  • a39c600 chore(deps): bump github/codeql-action from 4.31.8 to 4.31.9 (#4481)
  • Additional commits viewable in compare view

Updates github.com/aws/aws-sdk-go-v2/service/s3 from 1.94.0 to 1.95.0

Commits

Updates github.com/clipperhouse/displaywidth from 0.6.1 to 0.6.2

Changelog

Sourced from github.com/clipperhouse/displaywidth's changelog.

Changelog

Commits

Updates github.com/cloudflare/circl from 1.6.1 to 1.6.2

Release notes

Sourced from github.com/cloudflare/circl's releases.

CIRCL v1.6.2

  • New SLH-DSA, improvements in ML-DSA for arm64.
  • Tested compilation on WASM.

What's Changed

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

| Package | From | To |
| --- | --- | --- |
| [cel.dev/expr](https://github.com/google/cel-spec) | `0.24.0` | `0.25.1` |
| [cloud.google.com/go/auth](https://github.com/googleapis/google-cloud-go) | `0.16.4` | `0.18.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.58.0` |
| [github.com/anchore/syft](https://github.com/anchore/syft) | `1.38.2` | `1.39.0` |
| [github.com/aws/aws-sdk-go-v2/service/s3](https://github.com/aws/aws-sdk-go-v2) | `1.94.0` | `1.95.0` |
| [github.com/clipperhouse/displaywidth](https://github.com/clipperhouse/displaywidth) | `0.6.1` | `0.6.2` |
| [github.com/cloudflare/circl](https://github.com/cloudflare/circl) | `1.6.1` | `1.6.2` |
| [github.com/containerd/cgroups/v3](https://github.com/containerd/cgroups) | `3.0.3` | `3.1.2` |
| [github.com/docker/cli](https://github.com/docker/cli) | `29.1.2+incompatible` | `29.1.3+incompatible` |
| [github.com/envoyproxy/go-control-plane/envoy](https://github.com/envoyproxy/go-control-plane) | `1.32.4` | `1.36.0` |
| [github.com/envoyproxy/protoc-gen-validate](https://github.com/envoyproxy/protoc-gen-validate) | `1.2.1` | `1.3.0` |
| [github.com/gabriel-vasile/mimetype](https://github.com/gabriel-vasile/mimetype) | `1.4.11` | `1.4.12` |
| [github.com/googleapis/gax-go/v2](https://github.com/googleapis/gax-go) | `2.15.0` | `2.16.0` |
| [github.com/spdx/tools-golang](https://github.com/spdx/tools-golang) | `0.5.5` | `0.5.6` |
| [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.33.0` | `0.34.0` |



Updates `cel.dev/expr` from 0.24.0 to 0.25.1
- [Release notes](https://github.com/google/cel-spec/releases)
- [Commits](google/cel-spec@v0.24.0...v0.25.1)

Updates `cloud.google.com/go/auth` from 0.16.4 to 0.18.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.18.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.58.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.58.0)

Updates `github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp` from 1.27.0 to 1.29.0
- [Release notes](https://github.com/GoogleCloudPlatform/opentelemetry-operations-go/releases)
- [Commits](GoogleCloudPlatform/opentelemetry-operations-go@detectors/gcp/v1.27.0...detectors/gcp/v1.29.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.38.2 to 1.39.0
- [Release notes](https://github.com/anchore/syft/releases)
- [Changelog](https://github.com/anchore/syft/blob/main/RELEASE.md)
- [Commits](anchore/syft@v1.38.2...v1.39.0)

Updates `github.com/aws/aws-sdk-go-v2/service/s3` from 1.94.0 to 1.95.0
- [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.94.0...service/s3/v1.95.0)

Updates `github.com/clipperhouse/displaywidth` from 0.6.1 to 0.6.2
- [Release notes](https://github.com/clipperhouse/displaywidth/releases)
- [Changelog](https://github.com/clipperhouse/displaywidth/blob/main/CHANGELOG.md)
- [Commits](clipperhouse/displaywidth@v0.6.1...v0.6.2)

Updates `github.com/cloudflare/circl` from 1.6.1 to 1.6.2
- [Release notes](https://github.com/cloudflare/circl/releases)
- [Commits](cloudflare/circl@v1.6.1...v1.6.2)

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

Updates `github.com/docker/cli` from 29.1.2+incompatible to 29.1.3+incompatible
- [Commits](docker/cli@v29.1.2...v29.1.3)

Updates `github.com/envoyproxy/go-control-plane/envoy` from 1.32.4 to 1.36.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.36.0)

Updates `github.com/envoyproxy/protoc-gen-validate` from 1.2.1 to 1.3.0
- [Release notes](https://github.com/envoyproxy/protoc-gen-validate/releases)
- [Commits](bufbuild/protoc-gen-validate@v1.2.1...v1.3.0)

Updates `github.com/gabriel-vasile/mimetype` from 1.4.11 to 1.4.12
- [Release notes](https://github.com/gabriel-vasile/mimetype/releases)
- [Commits](gabriel-vasile/mimetype@v1.4.11...v1.4.12)

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

Updates `github.com/goccy/go-yaml` from 1.19.0 to 1.19.1
- [Release notes](https://github.com/goccy/go-yaml/releases)
- [Changelog](https://github.com/goccy/go-yaml/blob/master/CHANGELOG.md)
- [Commits](goccy/go-yaml@v1.19.0...v1.19.1)

Updates `github.com/googleapis/enterprise-certificate-proxy` from 0.3.6 to 0.3.7
- [Release notes](https://github.com/googleapis/enterprise-certificate-proxy/releases)
- [Commits](googleapis/enterprise-certificate-proxy@v0.3.6...v0.3.7)

Updates `github.com/googleapis/gax-go/v2` from 2.15.0 to 2.16.0
- [Release notes](https://github.com/googleapis/gax-go/releases)
- [Commits](googleapis/gax-go@v2.15.0...v2.16.0)

Updates `github.com/opencontainers/runtime-spec` from 1.2.0 to 1.3.0
- [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.3.0)

Updates `github.com/spdx/tools-golang` from 0.5.5 to 0.5.6
- [Release notes](https://github.com/spdx/tools-golang/releases)
- [Changelog](https://github.com/spdx/tools-golang/blob/main/RELEASE-NOTES.md)
- [Commits](spdx/tools-golang@v0.5.5...v0.5.6)

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 `golang.org/x/oauth2` from 0.33.0 to 0.34.0
- [Commits](golang/oauth2@v0.33.0...v0.34.0)

Updates `gonum.org/v1/gonum` from 0.15.1 to 0.16.0
- [Release notes](https://github.com/gonum/gonum/releases)
- [Commits](gonum/gonum@v0.15.1...v0.16.0)

Updates `google.golang.org/api` from 0.247.0 to 0.257.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.257.0)

Updates `google.golang.org/genproto` from 0.0.0-20250603155806-513f23925822 to 0.0.0-20251202230838-ff82c1b0f217
- [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-20251202230838-ff82c1b0f217
- [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-20251202230838-ff82c1b0f217
- [Commits](https://github.com/googleapis/go-genproto/commits)

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

---
updated-dependencies:
- dependency-name: cel.dev/expr
  dependency-version: 0.25.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: cloud.google.com/go/auth
  dependency-version: 0.18.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.58.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.29.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.39.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: github.com/aws/aws-sdk-go-v2/service/s3
  dependency-version: 1.95.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: github.com/clipperhouse/displaywidth
  dependency-version: 0.6.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-modules
- dependency-name: github.com/cloudflare/circl
  dependency-version: 1.6.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-modules
- dependency-name: github.com/containerd/cgroups/v3
  dependency-version: 3.1.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: github.com/docker/cli
  dependency-version: 29.1.3+incompatible
  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.36.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: github.com/envoyproxy/protoc-gen-validate
  dependency-version: 1.3.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: github.com/gabriel-vasile/mimetype
  dependency-version: 1.4.12
  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.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: github.com/goccy/go-yaml
  dependency-version: 1.19.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-modules
- dependency-name: github.com/googleapis/enterprise-certificate-proxy
  dependency-version: 0.3.7
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-modules
- dependency-name: github.com/googleapis/gax-go/v2
  dependency-version: 2.16.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: github.com/opencontainers/runtime-spec
  dependency-version: 1.3.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: github.com/spdx/tools-golang
  dependency-version: 0.5.6
  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: golang.org/x/oauth2
  dependency-version: 0.34.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: gonum.org/v1/gonum
  dependency-version: 0.16.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: go-modules
- dependency-name: google.golang.org/api
  dependency-version: 0.257.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-20251202230838-ff82c1b0f217
  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-20251202230838-ff82c1b0f217
  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-20251202230838-ff82c1b0f217
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: go-modules
- dependency-name: google.golang.org/grpc
  dependency-version: 1.77.0
  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 Dec 24, 2025
@dependabot dependabot bot requested a review from a team as a code owner December 24, 2025 16:05
@dependabot dependabot bot requested review from mhdawson and pacostas and removed request for a team December 24, 2025 16:05
@paketo-bot paketo-bot added the semver:patch A change requiring a patch version bump label Dec 24, 2025
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