Skip to content

fix(deps): bump the deps group across 1 directory with 12 updates#1877

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/deps-453b3682bd
Open

fix(deps): bump the deps group across 1 directory with 12 updates#1877
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/deps-453b3682bd

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 17, 2026

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

Package From To
cloud.google.com/go/compute/metadata 0.8.0 0.9.0
cloud.google.com/go/monitoring 1.24.2 1.24.3
github.com/prometheus/alertmanager 0.28.1 0.31.1
github.com/thanos-io/thanos 0.36.1 0.41.0
go.uber.org/zap 1.27.0 1.27.1

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/monitoring from 1.24.2 to 1.24.3

Commits

Updates github.com/prometheus/alertmanager from 0.28.1 to 0.31.1

Release notes

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

0.31.1 / 2026-02-11

  • [BUGFIX] docs: Fix email TLS configuration example. #4976
  • [BUGFIX] docs: Add telegram bot token options to global config docs. #4999

0.31.0 / 2026-02-02

  • [ENHANCEMENT] docs(opsgenie): Fix description of api_url field. #4908
  • [ENHANCEMENT] docs(slack): Document missing app configs. #4871
  • [ENHANCEMENT] docs: Fix max-silence-size-bytes. #4805
  • [ENHANCEMENT] docs: Update expr for AlertmanagerClusterFailedToSendAlerts to exclude value 0. #4872
  • [ENHANCEMENT] docs: Use matchers for inhibit rules examples. #4131
  • [ENHANCEMENT] docs: add notification integrations. #4901
  • [ENHANCEMENT] docs: update slack_config attachments documentation links. #4802
  • [ENHANCEMENT] docs: update description of filter query params in openapi doc. #4810
  • [ENHANCEMENT] provider: Reduce lock contention. #4809
  • [FEATURE] slack: Add support for top-level text field in slack notification. #4867
  • [FEATURE] smtp: Add support for authsecret from file. #3087
  • [FEATURE] smtp: Customize the ssl/tls port support (#4757). #4818
  • [FEATURE] smtp: Enhance email notifier configuration validation. #4826
  • [FEATURE] telegram: Add chat_id_file configuration parameter. #4909
  • [FEATURE] telegram: Support global bot token. #4823
  • [FEATURE] webhook: Support templating in url fields. #4798
  • [FEATURE] wechat: Add config directive to pass api secret via file. #4734
  • [FEATURE] provider: Implement per alert limits. #4819
  • [BUGFIX] Allow empty group_by to override parent route. #4825
  • [BUGFIX] Set spellcheck=false attribute on silence filter input. #4811
  • [BUGFIX] jira: Fix for handling api v3 with ADF. #4756
  • [BUGFIX] jira: Prevent hostname corruption in cloud api url replacement. #4892

0.30.1 / 2026-01-12

  • [BUGFIX] Fix memory leak in tracing client. #4828

0.30.0 / 2025-12-15

  • [CHANGE] Don't allow calling qids with an empty ids list. #4707
  • [FEATURE] Add mattermost integration. #4090
  • [FEATURE] Add saturday to the first day of the week options. #4473
  • [FEATURE] Add templating functions for working with urls. #4625
  • [FEATURE] cluster: Allow persistent peer names. #4636
  • [FEATURE] dispatch: Add start delay. #4704
  • [FEATURE] provider: Add subscriber channel metrics. #4630
  • [FEATURE] template: Add tojson function. #4773
  • [FEATURE] Add api http metrics. #4162
  • [FEATURE] Add distributed tracing support. #4745
  • [FEATURE] Add names to inhibit rules. #4628
  • [FEATURE] Add timeout option for pagerduty notifier. #4354
  • [FEATURE] Add timeout option for slack notifier. #4355
  • [FEATURE] Allow nested details fields in pagerduty. #3944
  • [FEATURE] Implement phantom_threading to group email alerts into threads. #4623
  • [FEATURE] gc: Report errors, but remove erroneous silences and continue. #4724
  • [FEATURE] jira: Template customfields. #4029
  • [FEATURE] jira: Allow configuring issue update via parameter. #4621

... (truncated)

Changelog

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

0.31.1 / 2026-02-11

  • [BUGFIX] docs: Fix email TLS configuration example. #4976
  • [BUGFIX] docs: Add telegram bot token options to global config docs. #4999

0.31.0 / 2026-02-02

  • [ENHANCEMENT] docs(opsgenie): Fix description of api_url field. #4908
  • [ENHANCEMENT] docs(slack): Document missing app configs. #4871
  • [ENHANCEMENT] docs: Fix max-silence-size-bytes. #4805
  • [ENHANCEMENT] docs: Update expr for AlertmanagerClusterFailedToSendAlerts to exclude value 0. #4872
  • [ENHANCEMENT] docs: Use matchers for inhibit rules examples. #4131
  • [ENHANCEMENT] docs: add notification integrations. #4901
  • [ENHANCEMENT] docs: update slack_config attachments documentation links. #4802
  • [ENHANCEMENT] docs: update description of filter query params in openapi doc. #4810
  • [ENHANCEMENT] provider: Reduce lock contention. #4809
  • [FEATURE] slack: Add support for top-level text field in slack notification. #4867
  • [FEATURE] smtp: Add support for authsecret from file. #3087
  • [FEATURE] smtp: Customize the ssl/tls port support (#4757). #4818
  • [FEATURE] smtp: Enhance email notifier configuration validation. #4826
  • [FEATURE] telegram: Add chat_id_file configuration parameter. #4909
  • [FEATURE] telegram: Support global bot token. #4823
  • [FEATURE] webhook: Support templating in url fields. #4798
  • [FEATURE] wechat: Add config directive to pass api secret via file. #4734
  • [FEATURE] provider: Implement per alert limits. #4819
  • [BUGFIX] Allow empty group_by to override parent route. #4825
  • [BUGFIX] Set spellcheck=false attribute on silence filter input. #4811
  • [BUGFIX] jira: Fix for handling api v3 with ADF. #4756
  • [BUGFIX] jira: Prevent hostname corruption in cloud api url replacement. #4892

0.30.1 / 2026-01-12

  • [BUGFIX] Fix memory leak in tracing client. #4828

0.30.0 / 2025-12-15

  • [CHANGE] Don't allow calling qids with an empty ids list. #4707
  • [FEATURE] Add mattermost integration. #4090
  • [FEATURE] Add saturday to the first day of the week options. #4473
  • [FEATURE] Add templating functions for working with urls. #4625
  • [FEATURE] cluster: Allow persistent peer names. #4636
  • [FEATURE] dispatch: Add start delay. #4704
  • [FEATURE] provider: Add subscriber channel metrics. #4630
  • [FEATURE] template: Add tojson function. #4773
  • [FEATURE] Add api http metrics. #4162
  • [FEATURE] Add distributed tracing support. #4745
  • [FEATURE] Add names to inhibit rules. #4628
  • [FEATURE] Add timeout option for pagerduty notifier. #4354
  • [FEATURE] Add timeout option for slack notifier. #4355
  • [FEATURE] Allow nested details fields in pagerduty. #3944

... (truncated)

Commits
  • 7a639ba Add #4999 to changelog
  • a286b20 Add telegram bot token options to global config docs (#4999)
  • 24f7659 Release v0.31.1
  • f885cad Fix email tls configuration example in docs
  • 0ae07a0 Release v0.31.0 (#4916)
  • b6c86c6 build(deps): bump actions/checkout from 6.0.1 to 6.0.2 (#4926)
  • ec5576a build(deps): bump react-dom from 19.2.3 to 19.2.4 in /ui/mantine-ui (#4936)
  • 1e97b58 build(deps-dev): bump prettier from 3.7.4 to 3.8.1 in /ui/mantine-ui (#4935)
  • f5a141c build(deps-dev): bump vitest from 4.0.17 to 4.0.18 in /ui/mantine-ui (#4933)
  • c279335 build(deps): bump react-router-dom in /ui/mantine-ui (#4937)
  • Additional commits viewable in compare view

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

Release notes

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

v1.23.2 - 2025-09-05

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

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

v1.23.1 - 2025-09-04

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

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

Changelog

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

1.23.2 / 2025-09-05

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

1.23.1 / 2025-09-04

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

Commits

Updates github.com/thanos-io/thanos from 0.36.1 to 0.41.0

Release notes

Sourced from github.com/thanos-io/thanos's releases.

v0.41.0

This is a good one, among several bug fixes, we have batched Series and Query RPCs now - this should lead to drastic improvements in network bandwidth and decent improvements in CPU/Memory usage of Querier and all its endpoints.

Changes

Fixed

  • #8378: Store: fix the reuse of dirty posting slices
  • #8558: Query-Frontend: Fix not logging requests when external-prefix is set in query
  • #8254 Receive: Endless loop of retried replication with capnproto and distributors
  • #8618: Query-Frontend: ensure slow query and stats logging on request failures
  • #8480: Store: fix(readerpool): avoid inserting nil LazyBinaryReader on error to avoid panic

Added

  • #8623: Query: Enable batching of Series per SeriesResponse.
  • #8582: Sidecar: support --storage.tsdb.delay-compact-file.path Prometheus flag.
  • #8595: *: add --shipper.upload-compacted flag for controlling upload concurrency in components that use shippper

Changed

  • #8630: Receive: breaking ⚠️ shuffle sharding now uses consistent hashing for stability on scale. Existing tenant-to-node assignments will change on upgrade.
  • #8555: Promu: re-add Darwin and FreeBSD as release platforms
  • #8661: Upgrade Prometheus to v3.8.0. tsdb.enable-native-histograms flag in Receiver and Ruler becomes a no-op and deprecated. Now native histogram ingestion is always enabled.

New Contributors

v0.41.0-rc.1

Like v0.41.0-rc.0 but with additional cherry-pick of:

downgrade grpc-go to fix memory leak: thanos-io/thanos#8671

v0.41.0-rc.0

This is a good one, among several bug fixes, we have batched Series and Query RPCs now - this should lead to drastic improvements in network bandwidth and decent improvements in CPU/Memory usage of Querier and all its endpoints.

Changes

Fixed

... (truncated)

Changelog

Sourced from github.com/thanos-io/thanos's changelog.

v0.41.0 - 2026 02 12

Fixed

  • #8378: Store: fix the reuse of dirty posting slices
  • #8558: Query-Frontend: Fix not logging requests when external-prefix is set in query
  • #8254 Receive: Endless loop of retried replication with capnproto and distributors
  • #8618: Query-Frontend: ensure slow query and stats logging on request failures
  • #8480: Store: fix(readerpool): avoid inserting nil LazyBinaryReader on error to avoid panic

Added

  • #: Query: Enable batching of Series per SeriesResponse.
  • #: Sidecar: support --storage.tsdb.delay-compact-file.path Prometheus flag.
  • #: *: add --shipper.upload-compacted flag for controlling upload concurrency in components that use shippper

Changed

  • #8630: Receive: breaking ⚠️ shuffle sharding now uses consistent hashing for stability on scale. Existing tenant-to-node assignments will change on upgrade.
  • #8555: Promu: re-add Darwin and FreeBSD as release platforms
  • #8661: Upgrade Prometheus to v3.8.0. tsdb.enable-native-histograms flag in Receiver and Ruler becomes a no-op and deprecated. Now native histogram ingestion is always enabled.

v0.40.0 - 2025 10 27

Fixed

  • #8334 Query: wait for initial endpoint discovery before becoming ready
  • #8486 Receive: fix exemplar label corruption from Cap'n Proto memory references
  • #8499 Query: support UTF-8 label names for the /api/v1/label/:name/values API.
  • #8374 query: fix panic when accessing annotations concurrently
  • #8336 store: fix race between lazy index header creation

Added

  • #8366 Store: optionally ignore Parquet migrated blocks
  • #8359 Tools: add --shipper.upload-compacted flag for uploading compacted blocks to bucket upload-blocks
  • #8484 Query: add /api/v1/status/tsdb API endpoint.
  • #8454 Compact: ensure we don't mark blocks for deletion again after just deleting them
  • #8410 Compact: ignore blocks with deletion mark in partial deletes
  • #8556 All Components: add debug logs when enabling GOMEMLIMIT and log the effective memory limit on startup

Changed

  • #8370 Query: announced labelset now reflects relabel-config
  • #8464 Query: assume that we do not unmark a block for deletion. This solves a race between Thanos Store and Compactor.
  • #8402 Query/Receive: trim labelsets in String()
  • #8334 Query: wait for initial endpoint discovery before becoming ready
  • #8401 block/compact: rework consistency check, make writers only write
  • #8389 block: bust cache if modified timestamp differs
  • #8366 store: ignore parquet migrated blocks

... (truncated)

Commits
  • cb1396b *: release 0.41.0
  • 70ab0d9 Merge pull request #8672 from thanos-io/mhoffmann/prepare-release-41.0-rc.1
  • 96061da VERSION: cut 0.41.0-rc.1
  • 5c4609b Patch grpc-go
  • a1cfc6b Merge pull request #8669 from thanos-io/mhoffmann/prepare-release-41.0-rc.0
  • 45b320f VERSION: cut 0.41.0-rc.0
  • ec36479 Merge pull request #8668 from thanos-io/mhoffmann/cut-changelog-for-0-41-0
  • ef43a35 *: cut changelog for 0.41.0
  • ed284b5 Merge pull request #8636 from adezxc/adezxc/default_batching
  • f3d3972 feat: enable batching by default, remove grpc-go replace directive
  • Additional commits viewable in compare view

Updates go.uber.org/zap from 1.27.0 to 1.27.1

Release notes

Sourced from go.uber.org/zap's releases.

v1.27.1

Enhancements:

  • #1501[]: prevent Object from panicking on nils
  • #1511[]: Fix a race condition in WithLazy.

Thanks to @​rabbbit, @​alshopov, @​jquirke, @​arukiidou for their contributions to this release.

#1501: uber-go/zap#1501 #1511: uber-go/zap#1511

Changelog

Sourced from go.uber.org/zap's changelog.

1.27.1 (19 Nov 2025)

Enhancements:

  • #1501[]: prevent Object from panicking on nils
  • #1511[]: Fix a race condition in WithLazy.

Thanks to @​rabbbit, @​alshopov, @​jquirke, @​arukiidou for their contributions to this release.

#1501: uber-go/zap#1501 #1511: uber-go/zap#1511

Commits

Updates golang.org/x/mod from 0.30.0 to 0.32.0

Commits
  • 4c04067 go.mod: update golang.org/x dependencies
  • d271cf3 go.mod: update golang.org/x dependencies
  • 269c237 sumdb/note: delete chop
  • 3f03020 x/mod: apply go fix and go vet
  • See full diff in compare view

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

Commits

Updates google.golang.org/api from 0.248.0 to 0.252.0

Release notes

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

v0.252.0

0.252.0 (2025-10-07)

Features

v0.251.0

0.251.0 (2025-09-30)

Features

v0.250.0

0.250.0 (2025-09-25)

Features

v0.249.0

0.249.0 (2025-09-08)

Features

... (truncated)

Changelog

Sourced from google.golang.org/api's changelog.

0.252.0 (2025-10-07)

Features

0.251.0 (2025-09-30)

Features

0.250.0 (2025-09-25)

Features

0.249.0 (2025-09-08)

Features

... (truncated)

Commits
  • 88c288c chore(main): release 0.252.0 (#3327)
  • 2c4dd78 feat(all): auto-regenerate discovery clients (#3336)
  • ceff1a1 chore(all): update all (#3333)
  • 163216d feat(all): auto-regenerate discovery clients (#3334)
  • b9890fc feat(all): auto-regenerate discovery clients (#3332)
  • a67f44d feat(all): auto-regenerate discovery clients (#3331)
  • 4312741 chore: update CODEOWNERS, remove blunderbuss (#3329)
  • fcb7723 feat(all): auto-regenerate discovery clients (#3330)
  • b9b915b feat(all): auto-regenerate discovery clients (#3328)
  • c992545 feat(all): auto-regenerate discovery clients (#3326)
  • Additional commits viewable in

@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Feb 17, 2026
Bumps the deps group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [cloud.google.com/go/compute/metadata](https://github.com/googleapis/google-cloud-go) | `0.8.0` | `0.9.0` |
| [cloud.google.com/go/monitoring](https://github.com/googleapis/google-cloud-go) | `1.24.2` | `1.24.3` |
| [github.com/prometheus/alertmanager](https://github.com/prometheus/alertmanager) | `0.28.1` | `0.31.1` |
| [github.com/thanos-io/thanos](https://github.com/thanos-io/thanos) | `0.36.1` | `0.41.0` |
| [go.uber.org/zap](https://github.com/uber-go/zap) | `1.27.0` | `1.27.1` |



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/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 `github.com/prometheus/alertmanager` from 0.28.1 to 0.31.1
- [Release notes](https://github.com/prometheus/alertmanager/releases)
- [Changelog](https://github.com/prometheus/alertmanager/blob/main/CHANGELOG.md)
- [Commits](prometheus/alertmanager@v0.28.1...v0.31.1)

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

Updates `github.com/thanos-io/thanos` from 0.36.1 to 0.41.0
- [Release notes](https://github.com/thanos-io/thanos/releases)
- [Changelog](https://github.com/thanos-io/thanos/blob/main/CHANGELOG.md)
- [Commits](thanos-io/thanos@v0.36.1...v0.41.0)

Updates `go.uber.org/zap` from 1.27.0 to 1.27.1
- [Release notes](https://github.com/uber-go/zap/releases)
- [Changelog](https://github.com/uber-go/zap/blob/master/CHANGELOG.md)
- [Commits](uber-go/zap@v1.27.0...v1.27.1)

Updates `golang.org/x/mod` from 0.30.0 to 0.32.0
- [Commits](golang/mod@v0.30.0...v0.32.0)

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

Updates `google.golang.org/api` from 0.248.0 to 0.252.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.248.0...v0.252.0)

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

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

Updates `github.com/efficientgo/e2e` from 0.14.1-0.20230710114240-c316eb95ae5b to 0.14.1-0.20260204162810-8c75b1e33ef9
- [Release notes](https://github.com/efficientgo/e2e/releases)
- [Commits](https://github.com/efficientgo/e2e/commits)

---
updated-dependencies:
- dependency-name: cloud.google.com/go/compute/metadata
  dependency-version: 0.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: cloud.google.com/go/monitoring
  dependency-version: 1.24.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: github.com/prometheus/alertmanager
  dependency-version: 0.31.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: github.com/prometheus/client_golang
  dependency-version: 1.23.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: github.com/thanos-io/thanos
  dependency-version: 0.41.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: go.uber.org/zap
  dependency-version: 1.27.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: golang.org/x/mod
  dependency-version: 0.32.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: golang.org/x/oauth2
  dependency-version: 0.34.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: google.golang.org/api
  dependency-version: 0.252.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: google.golang.org/grpc
  dependency-version: 1.78.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: google.golang.org/protobuf
  dependency-version: 1.36.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: github.com/efficientgo/e2e
  dependency-version: 0.14.1-0.20260204162810-8c75b1e33ef9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/go_modules/deps-453b3682bd branch from 79daff2 to da39b3e Compare February 24, 2026 21:15
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