Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 21, 2025

Bumps the deps group with 7 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.29.0
github.com/thanos-io/thanos 0.36.1 0.40.1
go.uber.org/zap 1.27.0 1.27.1
golang.org/x/mod 0.29.0 0.30.0
google.golang.org/api 0.248.0 0.256.0

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/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 github.com/prometheus/alertmanager from 0.28.1 to 0.29.0

Release notes

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

0.29.0 / 2025-11-01

  • [FEATURE] Add incident.io notifier. #4372
  • [FEATURE] Add monospace message formatting. #4362
  • [FEATURE] Add ability to customize interval for maintenance to run. #4541
  • [ENHANCEMENT] Update Jira notifier to support both Jira cloud API v3 and Jira datacenter API v2. #4542
  • [ENHANCEMENT] Increase mixin rate intervals for alert FailedToSendAlerts. #4206
  • [ENHANCEMENT] Make /alertmanager group writable in docker image. #4469
  • [BUGFIX] Fix logged notification count on error in notify. #4323
  • [BUGFIX] Fix docker image permissions path. #4288
  • [BUGFIX] Fix error handling in template rendering for Telegram. #4353
  • [BUGFIX] Fix duplicate other in error messages for config. #4366
  • [BUGFIX] Fix logic that considers an alert reopened in Jira. #4478
  • [BUGFIX] Fix Jira issue count #4615

0.29.0-rc.1 / 2025-10-12

  • [FEATURE] Add incident.io notifier. #4372
  • [FEATURE] Add monospace message formatting. #4362
  • [FEATURE] Add ability to customize interval for maintenance to run. #4541
  • [ENHANCEMENT] Update Jira notifier to support both Jira cloud API v3 and Jira datacenter API v2. #4542
  • [ENHANCEMENT] Increase mixin rate intervals for alert FailedToSendAlerts. #4206
  • [ENHANCEMENT] Make /alertmanager group writable in docker image. #4469
  • [BUGFIX] Fix logged notification count on error in notify. #4323
  • [BUGFIX] Fix docker image permissions path. #4288
  • [BUGFIX] Fix error handling in template rendering for Telegram. #4353
  • [BUGFIX] Fix duplicate other in error messages for config. #4366
  • [BUGFIX] Fix logic that considers an alert reopened in Jira. #4478
Changelog

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

0.29.0 / 2025-11-01

  • [FEATURE] Add incident.io notifier. #4372
  • [FEATURE] Add monospace message formatting. #4362
  • [FEATURE] Add ability to customize interval for maintenance to run. #4541
  • [ENHANCEMENT] Update Jira notifier to support both Jira cloud API v3 and Jira datacenter API v2. #4542
  • [ENHANCEMENT] Increase mixin rate intervals for alert FailedToSendAlerts. #4206
  • [ENHANCEMENT] Make /alertmanager group writable in docker image. #4469
  • [BUGFIX] Fix logged notification count on error in notify. #4323
  • [BUGFIX] Fix docker image permissions path. #4288
  • [BUGFIX] Fix error handling in template rendering for Telegram. #4353
  • [BUGFIX] Fix duplicate other in error messages for config. #4366
  • [BUGFIX] Fix logic that considers an alert reopened in Jira. #4478
  • [BUGFIX] Fix Jira issue count #4615
Commits

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/stretchr/testify from 1.11.0 to 1.11.1

Release notes

Sourced from github.com/stretchr/testify's releases.

v1.11.1

This release fixes #1785 introduced in v1.11.0 where expected argument values implementing the stringer interface (String() string) with a method which mutates their value, when passed to mock.Mock.On (m.On("Method", <expected>).Return()) or actual argument values passed to mock.Mock.Called may no longer match one another where they previously did match. The behaviour prior to v1.11.0 where the stringer is always called is restored. Future testify releases may not call the stringer method at all in this case.

What's Changed

Full Changelog: stretchr/testify@v1.11.0...v1.11.1

Commits

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

Release notes

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

v0.40.1

This fix fixes a performance regression in the gRPC layer.

What's Changed

Full Changelog: thanos-io/thanos@v0.40.0...v0.40.1

v0.40.0

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.
  • #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

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

New Contributors

Full Changelog: thanos-io/thanos@v0.39.2...v0.40.0

v0.40.0-rc.0

v0.40.0-rc.0 - 2025 10 20

Fixed

... (truncated)

Changelog

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

v0.40.1 - 2025 10 28

Fixed

  • #8545 extgrpc: call gogo methods from the codec

Added

Changed

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

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

Removed

v0.39.2 - 2025 07 17

Fixed

  • #8374 Query: fix panic when concurrently accessing annotations map
  • #8375 Query: fix native histogram buckets in distributed queries

v0.39.1 - 2025 07 01

Fixes a memory leak issue on query-frontend. The bug only affects v0.39.0.

... (truncated)

Commits

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.29.0 to 0.30.0

Commits
  • 7416265 go.mod: update golang.org/x dependencies
  • 5517a71 all: fix some comments
  • b6cdd1a modfile: use reflect.TypeFor instead of reflect.TypeOf
  • See full diff in compare view

Updates golang.org/x/oauth2 from 0.30.0 to 0.31.0

Commits
  • 014cf77 all: upgrade go directive to at least 1.24.0 [generated]
  • 3c76ce5 endpoints: correct Naver OAuth2 endpoint URLs
  • See full diff in compare view

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

Release notes

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

v0.256.0

0.256.0 (2025-11-10)

Features

v0.255.0

0.255.0 (2025-11-04)

Features

v0.254.0

0.254.0 (2025-10-28)

Features

v0.253.0

0.253.0 (2025-10-22)

Features

... (truncated)

Changelog

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

0.256.0 (2025-11-10)

Features

0.255.0 (2025-11-04)

Features

0.254.0 (2025-10-28)

Features

0.253.0 (2025-10-22)

Features

... (truncated)

Commits

Updates google.golang.org/grpc from 1.75.0 to 1.76.0

Release notes

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

Release 1.76.0

Dependencies

Bug Fixes

  • client: Return status INTERNAL when a server sends zero response messages for a unary or client-streaming RPC. (#8523)
  • client: Fail RPCs with status INTERNAL instead of UNKNOWN upon receiving http headers with status 1xx and END_STREAM flag set. (#8518)
  • pick_first: Fix race condition that could cause pick_first to get stuck in IDLE state on backend address change. (#8615)

New Features

  • credentials: Add credentials/jwt package providing file-based JWT PerRPCCredentials (A97). (#8431)

Performance Improvements

  • client: Improve HTTP/2 header size estimate to reduce re-allocations. (#8547)
  • encoding/proto: Avoid redundant message size calculation when marshaling. (#8569)

Release 1.75.1

Bug Fixes

  • transport: Fix a data race while copying headers for stats handlers in the std lib http2 server transport. (#8519)
  • xdsclient:
    • Fix a data race caused while reporting load to LRS. (#8483)
    • Fix regression preventing empty node IDs when creating an LRS client. (#8483)
  • server: Fix a regression preventing streams from being cancelled or timed out when blocked on flow control. (#8528)
Commits
  • d96c2ef Change version to 1.76.0 (#8584)
  • 79c553c Cherry pick #8610, #8615 to v1.76.x (#8621)
  • 0513350 client: minor improvements to log messages (#8564)
  • ebaf486 credentials: implement file-based JWT Call Credentials (part 1 for A97) (#8431)
  • ca78c90 xds/resolver_test: fix flaky test ResolverBadServiceUpdate_NACKedWithoutCache...
  • 83bead4 internal/buffer: set closed flag when closing channel in the Load method (#8575)
  • 0f45079 encoding/proto: enable use cached size option (#8569)
  • 8420f3f transport: avoid slice reallocation during header creation (#8547)
  • b36320e Revert "stats/opentelemetry: record retry attempts from clientStream (#8342)"...
  • c122250 stats/opentelemetry: record retry attempts from clientStream (

@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Nov 21, 2025
@dependabot dependabot bot force-pushed the dependabot/go_modules/deps-3dc57236d9 branch from 7ab60f5 to 77144a6 Compare November 24, 2025 21:15
@dependabot dependabot bot force-pushed the dependabot/go_modules/deps-3dc57236d9 branch from 77144a6 to ed836bc Compare December 8, 2025 21:05
@dependabot dependabot bot force-pushed the dependabot/go_modules/deps-3dc57236d9 branch from ed836bc to 4b45b3d Compare December 15, 2025 21:06
Bumps the deps group with 7 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.29.0` |
| [github.com/thanos-io/thanos](https://github.com/thanos-io/thanos) | `0.36.1` | `0.40.1` |
| [go.uber.org/zap](https://github.com/uber-go/zap) | `1.27.0` | `1.27.1` |
| [golang.org/x/mod](https://github.com/golang/mod) | `0.29.0` | `0.30.0` |
| [google.golang.org/api](https://github.com/googleapis/google-api-go-client) | `0.248.0` | `0.256.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/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.29.0
- [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.29.0)

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/stretchr/testify` from 1.11.0 to 1.11.1
- [Release notes](https://github.com/stretchr/testify/releases)
- [Commits](stretchr/testify@v1.11.0...v1.11.1)

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

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.29.0 to 0.30.0
- [Commits](golang/mod@v0.29.0...v0.30.0)

Updates `golang.org/x/oauth2` from 0.30.0 to 0.31.0
- [Commits](golang/oauth2@v0.30.0...v0.31.0)

Updates `google.golang.org/api` from 0.248.0 to 0.256.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.256.0)

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

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

---
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.29.0
  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/stretchr/testify
  dependency-version: 1.11.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: deps
- dependency-name: github.com/thanos-io/thanos
  dependency-version: 0.40.1
  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.30.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: golang.org/x/oauth2
  dependency-version: 0.31.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: google.golang.org/api
  dependency-version: 0.256.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: google.golang.org/grpc
  dependency-version: 1.76.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: google.golang.org/protobuf
  dependency-version: 1.36.10
  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-3dc57236d9 branch from 4b45b3d to 6651e7a Compare December 22, 2025 21:06
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