Skip to content

deps:chore - update module github.com/prometheus/client_golang to v1.24.1 - #206

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/github.com-prometheus-client_golang-1.x
Open

deps:chore - update module github.com/prometheus/client_golang to v1.24.1#206
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/github.com-prometheus-client_golang-1.x

Conversation

@renovate

@renovate renovate Bot commented Nov 1, 2025

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
github.com/prometheus/client_golang v1.12.1v1.24.1 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

prometheus/client_golang (github.com/prometheus/client_golang)

v1.24.1

Compare Source

v1.24.0: - 2026-07-20

Compare Source

Changes
  • [CHANGE] Minimum required Go version is now 1.25, only the two latest Go versions (1.25 and 1.26) are supported from now on. #​1862
  • [CHANGE] prometheus: Name validation now always uses the UTF-8 scheme instead of the deprecated model.NameValidationScheme global. Default behavior is unchanged; code that set NameValidationScheme = LegacyValidation no longer gets legacy enforcement at metric, label, and push-grouping construction. #​2051
  • [CHANGE] api/prometheus/v1: Support matchers (matches[] parameter) in Rules method (Rules(ctx context.Context, matches []string) (RulesResult, error)). #​1843
  • [CHANGE] api/prometheus/v1: Refactor LabelNames method to return model.LabelNames instead of []string for consistency across the API. #​1850
  • [CHANGE] exp/api/remote: Simplify Store interface, rename Handler to WriteHandler, and encapsulate write response handling. #​1855
  • [FEATURE] prometheus: Add new Go 1.26 runtime metrics (/sched/goroutines-created:goroutines, /sched/goroutines/not-in-go:goroutines, /sched/goroutines/runnable:goroutines, /sched/goroutines/running:goroutines, /sched/goroutines/waiting:goroutines, /sched/threads/total:threads). #​1942
  • [FEATURE] prometheus: Add WithUnit(unit string) option and explicit OpenMetrics unit support in CounterOpts, GaugeOpts, SummaryOpts, and HistogramOpts. #​1392
  • [FEATURE] prometheus: Expose descriptor construction error through public Err() method on Desc. #​1902
  • [FEATURE] promhttp: Add opt-in HandlerOpts.CoalesceGather to deduplicate concurrent Gather calls so overlapping scrapes share one collection cycle, preventing goroutine pile-up when the scrape rate outpaces collection time. #​1969
  • [FEATURE] promhttp: HTTP handlers created by promhttp package now support metrics filtering by providing one or more name[] query parameters. The default behavior when none are provided remains the same, returning all metrics. #​1925
  • [FEATURE] api/prometheus/v1: Add query formatting endpoint support (/format_query) and FormatQuery(ctx context.Context, query string) (string, error) method. #​1846, #​1856
  • [FEATURE] api/prometheus/v1: Add support for /status/tsdb/blocks endpoint via TSDBBlocks(ctx context.Context) ([]TSDBBlock, error) method. #​1896
  • [FEATURE] exp/api/remote: Export BackoffConfig to allow customization when using WithAPIBackoff. #​1895
  • [FEATURE] exp/api/remote: Add RetryCallBack to allow custom logging or handling on retry attempts in the remote write client. #​1888, #​1890
  • [ENHANCEMENT] prometheus/collectors/version: Allow specifying custom labels when registering the version collector. #​1860
  • [ENHANCEMENT] api: Use cloned http.DefaultTransport when constructing default HTTP clients to prevent accidental mutations of shared global transport state. #​1885
  • [BUGFIX] prometheus: Recover from collector panics during Gather() and return an error instead of crashing the process. #​1961
  • [BUGFIX] prometheus: Fix cpu-seconds unit suffix handling for metric go_cpu_classes_gc_mark_assist_cpu_seconds. #​1991
  • [BUGFIX] promhttp: InstrumentHandlerDuration and InstrumentHandlerCounter no longer panic when given an observer/counter that does not implement ExemplarObserver/ExemplarAdder (e.g. a SummaryVec). The exemplar is dropped and the value is recorded via the plain Observe/Add path, matching the safe-cast already used by Timer.ObserveDurationWithExemplar. #​2005
  • [BUGFIX] api/prometheus/v1: Fall back to GET requests when POST requests return 403 Forbidden or method not allowed. #​2030
  • [BUGFIX] api: Respect context cancellation inside httpClient.Do. #​1971
  • [BUGFIX] exp/api/remote: Fix compression buffer pooling where compressed buffers were released prematurely, causing corrupted remote-write payloads. #​1889
  • [BUGFIX] exp/api/remote: Reject malformed snappy payloads declaring huge decoded sizes. Enforce a 32MB decoded-size limit to prevent OOM from oversized remote-write requests. #​1917
  • [BUGFIX] exp/api/remote: Ensure remote write v2 headers cannot be returned on v1 requests. #​1927
All commits

New Contributors

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

v1.23.2: - 2025-09-05

Compare Source

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.

All Changes

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

v1.23.1: - 2025-09-04

Compare Source

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

All Changes

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

v1.23.0: - 2025-07-30

Compare Source

  • [CHANGE] Minimum required Go version is now 1.23, only the two latest Go versions are supported from now on. #​1812
  • [FEATURE] Add WrapCollectorWith and WrapCollectorWithPrefix #​1766
  • [FEATURE] Add exemplars for native histograms #​1686
  • [ENHANCEMENT] exp/api: Bubble up status code from writeResponse #​1823
  • [ENHANCEMENT] collector/go: Update runtime metrics for Go v1.23 and v1.24 #​1833
  • [BUGFIX] exp/api: client prompt return on context cancellation #​1729
All Changes * Update example test by @​SuperQ in https://github.com/prometheus/client_golang/pull/1770 * build(deps): bump golang.org/x/net from 0.34.0 to 0.36.0 in /tutorials/whatsup by @​dependabot[bot] in https://github.com/prometheus/client_golang/pull/1776 * Synchronize common files from prometheus/prometheus by @​prombot in https://github.com/prometheus/client_golang/pull/1771 * Synchronize common files from prometheus/prometheus by @​prombot in https://github.com/prometheus/client_golang/pull/1778 * Synchronize common files from prometheus/prometheus by @​prombot in https://github.com/prometheus/client_golang/pull/1779 * build(deps): bump google.golang.org/protobuf from 1.36.5 to 1.36.6 in /exp by @​dependabot[bot] in https://github.com/prometheus/client_golang/pull/1782 * build(deps): bump github.com/prometheus/common from 0.62.0 to 0.63.0 in /exp by @​dependabot[bot] in https://github.com/prometheus/client_golang/pull/1781 * build(deps): bump github.com/prometheus/common from 0.62.0 to 0.63.0 by @​dependabot[bot] in https://github.com/prometheus/client_golang/pull/1783 * build(deps): bump google.golang.org/protobuf from 1.36.5 to 1.36.6 by @​dependabot[bot] in https://github.com/prometheus/client_golang/pull/1784 * build(deps): bump github.com/prometheus/procfs from 0.15.1 to 0.16.0 by @​dependabot[bot] in https://github.com/prometheus/client_golang/pull/1786 * chore: Upgrade golangci-lint to v2 by @​kakkoyun in https://github.com/prometheus/client_golang/pull/1789 * build(deps): bump the github-actions group across 1 directory with 3 updates by @​dependabot[bot] in https://github.com/prometheus/client_golang/pull/1790 * Synchronize common files from prometheus/prometheus by @​prombot in https://github.com/prometheus/client_golang/pull/1791 * Add `WrapCollectorWith` and `WrapCollectorWithPrefix` by @​colega in https://github.com/prometheus/client_golang/pull/1766 * feat(github-actions): add Go file change detection to golangci-lint workflow by @​kakkoyun in https://github.com/prometheus/client_golang/pull/1794 * chore(ci): Fix flaky tests by @​kakkoyun in https://github.com/prometheus/client_golang/pull/1795 * build(deps): bump golang.org/x/net from 0.36.0 to 0.38.0 in /tutorials/whatsup by @​dependabot[bot] in https://github.com/prometheus/client_golang/pull/1799 * test(registry): Add goleak-based goroutine leak detection by @​surinkim in https://github.com/prometheus/client_golang/pull/1797 * build(deps): bump go.uber.org/goleak from 1.2.0 to 1.3.0 by @​dependabot[bot] in https://github.com/prometheus/client_golang/pull/1806 * build(deps): bump the github-actions group with 2 updates by @​dependabot[bot] in https://github.com/prometheus/client_golang/pull/1804 * Synchronize common files from prometheus/prometheus by @​prombot in https://github.com/prometheus/client_golang/pull/1809 * Add exemplars for native histograms by @​shivanthzen in https://github.com/prometheus/client_golang/pull/1686 * build(deps): bump golang.org/x/sys from 0.30.0 to 0.32.0 by @​dependabot[bot] in https://github.com/prometheus/client_golang/pull/1807 * build(deps): bump github.com/prometheus/client_model from 0.6.1 to 0.6.2 by @​dependabot[bot] in https://github.com/prometheus/client_golang/pull/1805 * build(deps): bump github.com/prometheus/procfs from 0.16.0 to 0.16.1 by @​dependabot[bot] in https://github.com/prometheus/client_golang/pull/1808 * build(deps): bump golang.org/x/net from 0.35.0 to 0.38.0 by @​dependabot[bot] in https://github.com/prometheus/client_golang/pull/1800 * Update supported Go versions by @​SuperQ in https://github.com/prometheus/client_golang/pull/1812 * Cleaup Go modules by @​SuperQ in https://github.com/prometheus/client_golang/pull/1813 * fix: client prompt return on context cancellation by @​umegbewe in https://github.com/prometheus/client_golang/pull/1729 * Simplify buf binary install by @​SuperQ in https://github.com/prometheus/client_golang/pull/1814 * Synchronize common files from prometheus/prometheus by @​prombot in https://github.com/prometheus/client_golang/pull/1815 * build(deps): bump the github-actions group with 5 updates by @​dependabot[bot] in https://github.com/prometheus/client_golang/pull/1817 * Synchronize common files from prometheus/prometheus by @​prombot in https://github.com/prometheus/client_golang/pull/1821 * exp/api: Bubble up status code from writeResponse by @​saswatamcode in https://github.com/prometheus/client_golang/pull/1823 * build(deps): bump github.com/prometheus/common from 0.64.0 to 0.65.0 by @​dependabot[bot] in https://github.com/prometheus/client_golang/pull/1827 * build(deps): bump github.com/prometheus/common from 0.64.0 to 0.65.0 in /exp by @​dependabot[bot] in https://github.com/prometheus/client_golang/pull/1828 * Synchronize common files from prometheus/prometheus by @​prombot in https://github.com/prometheus/client_golang/pull/1831 * Update runtime metrics for Go v1.23 and v1.24 by @​aknuds1 in https://github.com/prometheus/client_golang/pull/1833 * Fix `errNotImplemented` reference by @​aknuds1 in https://github.com/prometheus/client_golang/pull/1835 * build(deps): bump the github-actions group with 3 updates by @​dependabot[bot] in https://github.com/prometheus/client_golang/pull/1826 * Synchronize common files from prometheus/prometheus by @​prombot in https://github.com/prometheus/client_golang/pull/1832 * Cut v1.23.0-rc.0 by @​vesari in https://github.com/prometheus/client_golang/pull/1837 * cut v1.23.0-rc.1 by @​vesari in https://github.com/prometheus/client_golang/pull/1842

New Contributors

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

v1.22.0: - 2025-04-07

Compare Source

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

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

e.g.:

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

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • "every weekend"
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate

renovate Bot commented Nov 1, 2025

Copy link
Copy Markdown
Contributor Author

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 13 additional dependencies were updated
  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.17 -> 1.23.0
github.com/stretchr/testify v1.7.0 -> v1.11.1
golang.org/x/crypto v0.0.0-20220214200702-86341886e292 -> v0.41.0
google.golang.org/protobuf v1.27.1 -> v1.36.8
github.com/cespare/xxhash/v2 v2.1.2 -> v2.3.0
github.com/prometheus/client_model v0.2.0 -> v0.6.2
github.com/prometheus/common v0.32.1 -> v0.66.1
github.com/prometheus/procfs v0.7.3 -> v0.16.1
github.com/stretchr/objx v0.3.0 -> v0.5.2
golang.org/x/net v0.0.0-20220114011407-0dd24b26b47d -> v0.43.0
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 -> v0.35.0
golang.org/x/text v0.3.7 -> v0.28.0
golang.org/x/tools v0.1.8 -> v0.35.0
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b -> v3.0.1

@ghost

ghost commented Nov 1, 2025

Copy link
Copy Markdown

PR Summary

This Pull Request updates the Go module and dependency files to modernize the project’s dependency set. The main focus is on upgrading the Go version and several key dependencies, which brings improvements in compatibility, security, and features. These changes are essential for keeping the project up-to-date and secure, but they may also introduce breaking changes that require careful review.


Changed Files and Their Summaries

1. go.mod

  • Summary:

    • Updated Go version from 1.17 to 1.23.0.
    • Upgraded several dependencies, including:
      • github.com/prometheus/client_golang: v1.12.1 → v1.23.2
      • github.com/stretchr/testify: v1.7.0 → v1.11.1
      • golang.org/x/crypto: v0.0.0-20220214200702-86341886e292 → v0.41.0
      • google.golang.org/protobuf: v1.27.1 → v1.36.8
      • And others.
    • Added new indirect dependencies (e.g., github.com/munnerz/goautoneg, go.yaml.in/yaml/v2).
    • These updates modernize the codebase for better compatibility, security, and features.
  • Security Concerns:

    • Upgrading dependencies generally improves security by including patches for known vulnerabilities.
    • Attention: Major version upgrades (e.g., Go 1.17 → 1.23.0) may introduce breaking changes or new, unknown vulnerabilities.
    • Recommendation: Review the changelogs of all upgraded dependencies for breaking changes or new security advisories.

2. go.sum

  • Summary:

    • Updated to reflect new dependency versions and added modules from go.mod.
    • New checksums were added for upgraded and newly introduced dependencies, ensuring integrity verification.
  • Security Concerns:

    • No direct security concerns, as go.sum only contains cryptographic hashes for dependency verification.
    • Attention: Ensure that the hashes match the intended versions to prevent supply chain attacks.

Security Advice & Points of Attention

  • Review Dependency Changelogs:
    Carefully check the release notes and changelogs for all upgraded dependencies, especially those with major version jumps, for any breaking changes or new security advisories.
  • Test Thoroughly:
    Since the Go version and several core libraries have been upgraded, run all tests and validate application behavior in staging before deploying to production.
  • Supply Chain Integrity:
    Confirm that all new checksums in go.sum correspond to trusted sources to mitigate supply chain risks.

In summary:
This PR brings your project up-to-date with the latest Go version and dependency updates, which is beneficial for long-term maintenance and security. However, it is crucial to review all changes carefully for compatibility and potential new issues before merging.
This is an AI-generated summary, which may be innacurate.
This aims only to assist human reviewers, and does not replace code reviews in any way.
Use responsibly and please submit any feedback to this form.

@renovate

renovate Bot commented Dec 15, 2025

Copy link
Copy Markdown
Contributor Author

ℹ️ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 14 additional dependencies were updated
  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.17 -> 1.25.0
github.com/google/uuid v1.3.0 -> v1.6.0
github.com/stretchr/testify v1.7.0 -> v1.11.1
golang.org/x/crypto v0.0.0-20220214200702-86341886e292 -> v0.54.0
google.golang.org/protobuf v1.27.1 -> v1.36.11
github.com/cespare/xxhash/v2 v2.1.2 -> v2.3.0
github.com/prometheus/client_model v0.2.0 -> v0.6.2
github.com/prometheus/common v0.32.1 -> v0.70.1
github.com/prometheus/procfs v0.7.3 -> v0.21.1
github.com/stretchr/objx v0.3.0 -> v0.5.2
golang.org/x/net v0.0.0-20220114011407-0dd24b26b47d -> v0.57.0
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 -> v0.47.0
golang.org/x/text v0.3.7 -> v0.40.0
golang.org/x/tools v0.1.8 -> v0.47.0
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b -> v3.0.1

@renovate renovate Bot changed the title deps:chore - update module github.com/prometheus/client_golang to v1.23.2 deps:chore - update module github.com/prometheus/client_golang to v1.23.2 - autoclosed Apr 30, 2026
@renovate renovate Bot closed this Apr 30, 2026
@renovate
renovate Bot deleted the renovate/github.com-prometheus-client_golang-1.x branch April 30, 2026 11:29
@renovate renovate Bot changed the title deps:chore - update module github.com/prometheus/client_golang to v1.23.2 - autoclosed deps:chore - update module github.com/prometheus/client_golang to v1.23.2 May 2, 2026
@renovate renovate Bot reopened this May 2, 2026
@renovate
renovate Bot force-pushed the renovate/github.com-prometheus-client_golang-1.x branch 2 times, most recently from 7b855a4 to 3a0cf8b Compare May 2, 2026 01:11
@ghost

ghost commented May 2, 2026

Copy link
Copy Markdown

Snyk checks have failed. 11 issues have been found so far.

Status Scan Engine Critical High Medium Low Total (11)
Open Source Security 1 10 0 0 11 issues
Licenses 0 0 0 0 0 issues
Code Security 0 0 0 0 0 issues

💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse.

@renovate renovate Bot changed the title deps:chore - update module github.com/prometheus/client_golang to v1.23.2 deps:chore - update module github.com/prometheus/client_golang to v1.23.2 - autoclosed Jul 3, 2026
@renovate renovate Bot closed this Jul 3, 2026
@renovate renovate Bot changed the title deps:chore - update module github.com/prometheus/client_golang to v1.23.2 - autoclosed deps:chore - update module github.com/prometheus/client_golang to v1.23.2 Jul 4, 2026
@renovate renovate Bot reopened this Jul 4, 2026
@renovate
renovate Bot force-pushed the renovate/github.com-prometheus-client_golang-1.x branch 2 times, most recently from 3a0cf8b to e6b8f62 Compare July 4, 2026 01:31
@snyk-io

snyk-io Bot commented Jul 4, 2026

Copy link
Copy Markdown

Snyk checks have failed. 8 issues have been found so far.

Status Scan Engine Critical High Medium Low Total (8)
Open Source Security 1 7 0 0 8 issues
Licenses 0 0 0 0 0 issues
Code Security 0 0 0 0 0 issues

💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse.

@renovate
renovate Bot force-pushed the renovate/github.com-prometheus-client_golang-1.x branch from e6b8f62 to 274989c Compare July 20, 2026 20:56
@renovate renovate Bot changed the title deps:chore - update module github.com/prometheus/client_golang to v1.23.2 deps:chore - update module github.com/prometheus/client_golang to v1.24.0 Jul 20, 2026
…24.1

Signed-off-by: Renovate Bot <bot@renovateapp.com>
@renovate
renovate Bot force-pushed the renovate/github.com-prometheus-client_golang-1.x branch from 274989c to a1d0644 Compare July 24, 2026 12:16
@renovate renovate Bot changed the title deps:chore - update module github.com/prometheus/client_golang to v1.24.0 deps:chore - update module github.com/prometheus/client_golang to v1.24.1 Jul 24, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants