PackageTrack

Go modules

github.com/prometheus/client_golang

v1.24.1prometheus/client_golang

Release timeline

2281 releases since 2012
20122026

One column per quarter.

Releases

  1. v1.24.2-0.20260820153414-89c60c05546920 Aug 2026pre-release

    Nothing published for this version

  2. v1.24.2-0.20260820123906-3df9b67fc30820 Aug 2026pre-release

    Nothing published for this version

  3. v1.24.2-0.20260820120455-86daff109e4120 Aug 2026pre-release

    Nothing published for this version

  4. v1.24.2-0.20260819131244-d8e38e08bd9119 Aug 2026pre-release

    Nothing published for this version

  5. v1.24.2-0.20260818134427-56b1a2725bee18 Aug 2026pre-release

    Nothing published for this version

  6. v1.24.2-0.20260818101338-0b801df570a718 Aug 2026pre-release

    Nothing published for this version

  7. v1.24.2-0.20260817105516-ff9340cd8b8417 Aug 2026pre-release

    Nothing published for this version

  8. v1.24.2-0.20260812154952-0c5dccd910c012 Aug 2026pre-release

    Nothing published for this version

  9. v1.24.124 Jul 2026

    Nothing published for this version

  10. v1.24.1-0.20260819131244-d8e38e08bd9119 Aug 2026pre-release

    Nothing published for this version

  11. v1.24.020 Jul 2026
    Release notes

    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
    • build(deps): bump github.com/prometheus/procfs from 0.16.1 to 0.17.0 by @dependabot[bot] in #1839
    • build(deps): bump golang.org/x/sys from 0.33.0 to 0.34.0 by @dependabot[bot] in #1838
    • prometheus/collectors: use godoc link for runtime/metrics supported metrics by @xieyuschen in #1844
    • Fix doc typo by @torrca in #1849
    • Merge release-1.23 into main by @vesari in #1851
    • build(deps): bump github/codeql-action from 3.29.2 to 3.29.5 in the github-actions group by @dependabot[bot] in #1852
    • Refactor LabelNames to return model.LabelNames type for consistency by @yshngg in #1850
    • remote: simplified Store interface; renamed Handler to WriteHandler by @bwplotka in #1855
    • feat(api/prometheus): add format_query endpoint for query formatting by @yshngg in #1846
    • feat(api): add FormatQuery method to Prometheus v1 API by @yshngg in #1856
    • Support matchers in rules API by @jotak in #1843
    • Use prometheus/common.expfmt.NewTextParser by @aknuds1 in #1859
    • Merge release-1.23 into main by @aknuds1 in #1861
    • chore: Drop support for <go1.22 by @mrueg in #1862
    • collectors/version: Allow custom additional labels by @mrueg in #1860
    • build(deps): bump github.com/prometheus/common from 0.65.0 to 0.66.0 by @ywwg in #1865
    • Sync release-1.23 into main by @aknuds1 in #1868
    • Sync main with release-1.23 by @aknuds1 in #1871
    • chore: clean up golangci-lint configuration by @mmorel-35 in #1802
    • build(deps): bump google.golang.org/protobuf from 1.36.8 to 1.36.9 by @dependabot[bot] in #1880
    • build(deps): bump google.golang.org/protobuf from 1.36.6 to 1.36.9 in /exp by @dependabot[bot] in #1882
    • build(deps): bump github.com/prometheus/common from 0.65.0 to 0.66.1 in /exp by @dependabot[bot] in #1883
    • build(deps): bump the github-actions group with 4 updates by @dependabot[bot] in #1881
    • Fix typo in remote api err msg by @SungJin1212 in #1878
    • chore: Update metrics for new Go version by @github-actions[bot] in #1864
    • Add RetryCallBack to remote_api.go by @pipiland2612 in #1888
    • bug(remote_write): Fix compression buffer pooling by @fpetkovski in #1889
    • Change RetryCallBack initialized by @pipiland2612 in #1890
    • Fix CI bug by @pipiland2612 in #1892
    • Use cloned http.DefaultTransport. issue-1857 by @karthikkondapally in #1885
    • Public backoff config to allow usage of WithAPIBackoff by @pipiland2612 in #1895
    • Clarify exp library stability by @pipiland2612 in #1894
    • feat: add support for /status/tsdb/blocks endpoint by @tjhop in #1896
    • minor refactor of replaceInvalidRune() in bridge.go by @karthikkondapally in #1897
    • build(deps): bump github.com/prometheus/procfs from 0.17.0 to 0.19.2 by @dependabot[bot] in #1903
    • build(deps): bump github.com/klauspost/compress from 1.18.0 to 1.18.1 by @dependabot[bot] in #1906
    • build(deps): bump golang.org/x/sys from 0.35.0 to 0.37.0 by @dependabot[bot] in #1904
    • build(deps): bump github.com/prometheus/common from 0.66.1 to 0.67.2 by @dependabot[bot] in #1907
    • build(deps): bump github.com/klauspost/compress from 1.18.0 to 1.18.1 in /exp by @dependabot[bot] in #1911
    • build(deps): bump google.golang.org/protobuf from 1.36.9 to 1.36.10 in /exp by @dependabot[bot] in #1909
    • build(deps): bump github.com/prometheus/common from 0.66.1 to 0.67.2 in /exp by @dependabot[bot] in #1910
    • build(deps): bump the github-actions group with 2 updates by @dependabot[bot] in #1908
    • chore(ci): Add CRLF detection and fix targets to prevent CRLF contamination by @kakkoyun in #1898
    • chore(ci): Use stable names for CI steps by @kakkoyun in #1914
    • build(deps): bump github.com/klauspost/compress from 1.18.1 to 1.18.2 by @dependabot[bot] in #1920
    • build(deps): bump github.com/prometheus/common from 0.67.2 to 0.67.4 by @dependabot[bot] in #1921
    • build(deps): bump golang.org/x/sys from 0.37.0 to 0.38.0 by @dependabot[bot] in #1922
    • build(deps): bump github.com/prometheus/common from 0.67.2 to 0.67.4 in /exp by @dependabot[bot] in #1923
    • build(deps): bump github.com/klauspost/compress from 1.18.1 to 1.18.2 in /exp by @dependabot[bot] in #1924
    • build(deps): bump the github-actions group with 4 updates by @dependabot[bot] in #1919
    • feat: expose Desc error through public Err() method by @duricanikolic in #1902
    • Allow /metrics handler output filtering via name[] query param by @colega in #1925
    • Prevent OOM from malformed snappy payloads by validating decoded length by @makasim in #1917
    • Ensure remote write v2 headers cannot be returned on v1 requests by @kgeckhart in #1927
    • build(deps): bump google.golang.org/protobuf from 1.36.10 to 1.36.11 by @dependabot[bot] in #1932
    • build(deps): bump golang.org/x/sys from 0.38.0 to 0.39.0 by @dependabot[bot] in #1933
    • build(deps): bump google.golang.org/protobuf from 1.36.10 to 1.36.11 in /exp by @dependabot[bot] in #1935
    • build(deps): bump the github-actions group with 5 updates by @dependabot[bot] in #1934
    • promhttp/zstd: add unit tests for zstd writer registration by @90ashish in #1929
    • feat(collector): add Go 1.26 new runtime metrics by @kakkoyun in #1942
    • build(deps): bump github.com/prometheus/common from 0.67.4 to 0.67.5 in /exp by @dependabot[bot] in #1948
    • build(deps): bump the github-actions group with 4 updates by @dependabot[bot] in #1946
    • build(deps): bump github.com/klauspost/compress from 1.18.2 to 1.18.3 by @dependabot[bot] in #1944
    • build(deps): bump golang.org/x/sys from 0.39.0 to 0.40.0 by @dependabot[bot] in #1945
    • build(deps): bump github.com/klauspost/compress from 1.18.2 to 1.18.3 in /exp by @dependabot[bot] in #1947
    • chore(test): bump 1.25, tests with synctest and check not panic by @manute in #1950
    • build(deps): bump github.com/prometheus/procfs from 0.19.2 to 0.20.1 by @dependabot[bot] in #1954
    • build(deps): bump golang.org/x/sys from 0.40.0 to 0.41.0 by @dependabot[bot] in #1957
    • build(deps): bump github.com/klauspost/compress from 1.18.3 to 1.18.4 by @dependabot[bot] in #1955
    • build(deps): bump go.opentelemetry.io/otel/sdk from 1.34.0 to 1.40.0 in /tutorials/whatsup by @dependabot[bot] in #1959
    • build(deps): bump github.com/prometheus/common from 0.67.4 to 0.67.5 by @dependabot[bot] in #1956
    • build(deps): bump the github-actions group with 2 updates by @dependabot[bot] in #1958
    • chore(collectors/go): generate the tests after new metric by @kakkoyun in #1962
    • Remove Arthur from the list of maintainers by @ArthurSens in #1964
    • build(deps): bump google.golang.org/grpc from 1.69.4 to 1.79.3 in /tutorials/whatsup by @dependabot[bot] in #1965
    • fix: recover from collector panic and return error in Gather by @Saflaski in #1961
    • prometheus: clarify MetricVec delete semantics in godoc by @Retr0-XD in #1967
    • build(deps): bump golang.org/x/sys from 0.41.0 to 0.42.0 by @dependabot[bot] in #1973
    • build(deps): bump github.com/klauspost/compress from 1.18.4 to 1.18.5 by @dependabot[bot] in #1974
    • build(deps): bump github.com/klauspost/compress from 1.18.4 to 1.18.5 in /exp by @dependabot[bot] in #1976
    • Optionally add OM unit by @vesari in #1392
    • fix: respect context cancellation in httpClient.Do by @pedrampdd in #1971
    • build(deps): bump go.opentelemetry.io/otel/sdk from 1.40.0 to 1.43.0 in /tutorials/whatsup by @dependabot[bot] in #1978
    • Synchronize common files from prometheus/prometheus by @prombot in #1977
    • Synchronize common files from prometheus/prometheus by @prombot in #1980
    • examples: add native histogram usage example by @thegdsks in #1981
    • chore(ci): add macOS, Windows and arm64 test runners by @kakkoyun in #1968
    • prometheus: honor PidFn on windows and darwin by @Retr0-XD in #1966
    • Synchronize common files from prometheus/prometheus by @prombot in #1984
    • Synchronize common files from prometheus/prometheus by @prombot in #1985
    • promhttp: implement WithXFromContext in terms of WithXFromRequest by @tie in #1863
    • Synchronize common files from prometheus/prometheus by @prombot in #1988
    • Fix bug unit cpu-seconds not a suffix of metric go_cpu_classes_gc_mark_assist_cpu_seconds by @vesari in #1991
    • build(deps): bump golang.org/x/sys from 0.42.0 to 0.43.0 by @dependabot[bot] in #1993
    • build(deps): bump github.com/klauspost/compress from 1.18.5 to 1.18.6 by @dependabot[bot] in

    Note truncated.

    Open source →
  12. v1.24.0-rc.017 Jul 2026pre-release
    Release notes

    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
    • build(deps): bump github.com/prometheus/procfs from 0.16.1 to 0.17.0 by @dependabot[bot] in #1839
    • build(deps): bump golang.org/x/sys from 0.33.0 to 0.34.0 by @dependabot[bot] in #1838
    • prometheus/collectors: use godoc link for runtime/metrics supported metrics by @xieyuschen in #1844
    • Fix doc typo by @torrca in #1849
    • Merge release-1.23 into main by @vesari in #1851
    • build(deps): bump github/codeql-action from 3.29.2 to 3.29.5 in the github-actions group by @dependabot[bot] in #1852
    • Refactor LabelNames to return model.LabelNames type for consistency by @yshngg in #1850
    • remote: simplified Store interface; renamed Handler to WriteHandler by @bwplotka in #1855
    • feat(api/prometheus): add format_query endpoint for query formatting by @yshngg in #1846
    • feat(api): add FormatQuery method to Prometheus v1 API by @yshngg in #1856
    • Support matchers in rules API by @jotak in #1843
    • Use prometheus/common.expfmt.NewTextParser by @aknuds1 in #1859
    • Merge release-1.23 into main by @aknuds1 in #1861
    • chore: Drop support for <go1.22 by @mrueg in #1862
    • collectors/version: Allow custom additional labels by @mrueg in #1860
    • build(deps): bump github.com/prometheus/common from 0.65.0 to 0.66.0 by @ywwg in #1865
    • Sync release-1.23 into main by @aknuds1 in #1868
    • Sync main with release-1.23 by @aknuds1 in #1871
    • chore: clean up golangci-lint configuration by @mmorel-35 in #1802
    • build(deps): bump google.golang.org/protobuf from 1.36.8 to 1.36.9 by @dependabot[bot] in #1880
    • build(deps): bump google.golang.org/protobuf from 1.36.6 to 1.36.9 in /exp by @dependabot[bot] in #1882
    • build(deps): bump github.com/prometheus/common from 0.65.0 to 0.66.1 in /exp by @dependabot[bot] in #1883
    • build(deps): bump the github-actions group with 4 updates by @dependabot[bot] in #1881
    • Fix typo in remote api err msg by @SungJin1212 in #1878
    • chore: Update metrics for new Go version by @github-actions[bot] in #1864
    • Add RetryCallBack to remote_api.go by @pipiland2612 in #1888
    • bug(remote_write): Fix compression buffer pooling by @fpetkovski in #1889
    • Change RetryCallBack initialized by @pipiland2612 in #1890
    • Fix CI bug by @pipiland2612 in #1892
    • Use cloned http.DefaultTransport. issue-1857 by @karthikkondapally in #1885
    • Public backoff config to allow usage of WithAPIBackoff by @pipiland2612 in #1895
    • Clarify exp library stability by @pipiland2612 in #1894
    • feat: add support for /status/tsdb/blocks endpoint by @tjhop in #1896
    • minor refactor of replaceInvalidRune() in bridge.go by @karthikkondapally in #1897
    • build(deps): bump github.com/prometheus/procfs from 0.17.0 to 0.19.2 by @dependabot[bot] in #1903
    • build(deps): bump github.com/klauspost/compress from 1.18.0 to 1.18.1 by @dependabot[bot] in #1906
    • build(deps): bump golang.org/x/sys from 0.35.0 to 0.37.0 by @dependabot[bot] in #1904
    • build(deps): bump github.com/prometheus/common from 0.66.1 to 0.67.2 by @dependabot[bot] in #1907
    • build(deps): bump github.com/klauspost/compress from 1.18.0 to 1.18.1 in /exp by @dependabot[bot] in #1911
    • build(deps): bump google.golang.org/protobuf from 1.36.9 to 1.36.10 in /exp by @dependabot[bot] in #1909
    • build(deps): bump github.com/prometheus/common from 0.66.1 to 0.67.2 in /exp by @dependabot[bot] in #1910
    • build(deps): bump the github-actions group with 2 updates by @dependabot[bot] in #1908
    • chore(ci): Add CRLF detection and fix targets to prevent CRLF contamination by @kakkoyun in #1898
    • chore(ci): Use stable names for CI steps by @kakkoyun in #1914
    • build(deps): bump github.com/klauspost/compress from 1.18.1 to 1.18.2 by @dependabot[bot] in #1920
    • build(deps): bump github.com/prometheus/common from 0.67.2 to 0.67.4 by @dependabot[bot] in #1921
    • build(deps): bump golang.org/x/sys from 0.37.0 to 0.38.0 by @dependabot[bot] in #1922
    • build(deps): bump github.com/prometheus/common from 0.67.2 to 0.67.4 in /exp by @dependabot[bot] in #1923
    • build(deps): bump github.com/klauspost/compress from 1.18.1 to 1.18.2 in /exp by @dependabot[bot] in #1924
    • build(deps): bump the github-actions group with 4 updates by @dependabot[bot] in #1919
    • feat: expose Desc error through public Err() method by @duricanikolic in #1902
    • Allow /metrics handler output filtering via name[] query param by @colega in #1925
    • Prevent OOM from malformed snappy payloads by validating decoded length by @makasim in #1917
    • Ensure remote write v2 headers cannot be returned on v1 requests by @kgeckhart in #1927
    • build(deps): bump google.golang.org/protobuf from 1.36.10 to 1.36.11 by @dependabot[bot] in #1932
    • build(deps): bump golang.org/x/sys from 0.38.0 to 0.39.0 by @dependabot[bot] in #1933
    • build(deps): bump google.golang.org/protobuf from 1.36.10 to 1.36.11 in /exp by @dependabot[bot] in #1935
    • build(deps): bump the github-actions group with 5 updates by @dependabot[bot] in #1934
    • promhttp/zstd: add unit tests for zstd writer registration by @90ashish in #1929
    • feat(collector): add Go 1.26 new runtime metrics by @kakkoyun in #1942
    • build(deps): bump github.com/prometheus/common from 0.67.4 to 0.67.5 in /exp by @dependabot[bot] in #1948
    • build(deps): bump the github-actions group with 4 updates by @dependabot[bot] in #1946
    • build(deps): bump github.com/klauspost/compress from 1.18.2 to 1.18.3 by @dependabot[bot] in #1944
    • build(deps): bump golang.org/x/sys from 0.39.0 to 0.40.0 by @dependabot[bot] in #1945
    • build(deps): bump github.com/klauspost/compress from 1.18.2 to 1.18.3 in /exp by @dependabot[bot] in #1947
    • chore(test): bump 1.25, tests with synctest and check not panic by @manute in #1950
    • build(deps): bump github.com/prometheus/procfs from 0.19.2 to 0.20.1 by @dependabot[bot] in #1954
    • build(deps): bump golang.org/x/sys from 0.40.0 to 0.41.0 by @dependabot[bot] in #1957
    • build(deps): bump github.com/klauspost/compress from 1.18.3 to 1.18.4 by @dependabot[bot] in #1955
    • build(deps): bump go.opentelemetry.io/otel/sdk from 1.34.0 to 1.40.0 in /tutorials/whatsup by @dependabot[bot] in #1959
    • build(deps): bump github.com/prometheus/common from 0.67.4 to 0.67.5 by @dependabot[bot] in #1956
    • build(deps): bump the github-actions group with 2 updates by @dependabot[bot] in #1958
    • chore(collectors/go): generate the tests after new metric by @kakkoyun in #1962
    • Remove Arthur from the list of maintainers by @ArthurSens in #1964
    • build(deps): bump google.golang.org/grpc from 1.69.4 to 1.79.3 in /tutorials/whatsup by @dependabot[bot] in #1965
    • fix: recover from collector panic and return error in Gather by @Saflaski in #1961
    • prometheus: clarify MetricVec delete semantics in godoc by @Retr0-XD in #1967
    • build(deps): bump golang.org/x/sys from 0.41.0 to 0.42.0 by @dependabot[bot] in #1973
    • build(deps): bump github.com/klauspost/compress from 1.18.4 to 1.18.5 by @dependabot[bot] in #1974
    • build(deps): bump github.com/klauspost/compress from 1.18.4 to 1.18.5 in /exp by @dependabot[bot] in #1976
    • Optionally add OM unit by @vesari in #1392
    • fix: respect context cancellation in httpClient.Do by @pedrampdd in #1971
    • build(deps): bump go.opentelemetry.io/otel/sdk from 1.40.0 to 1.43.0 in /tutorials/whatsup by @dependabot[bot] in #1978
    • Synchronize common files from prometheus/prometheus by @prombot in #1977
    • Synchronize common files from prometheus/prometheus by @prombot in #1980
    • examples: add native histogram usage example by @thegdsks in #1981
    • chore(ci): add macOS, Windows and arm64 test runners by @kakkoyun in #1968
    • prometheus: honor PidFn on windows and darwin by @Retr0-XD in #1966
    • Synchronize common files from prometheus/prometheus by @prombot in #1984
    • Synchronize common files from prometheus/prometheus by @prombot in #1985
    • promhttp: implement WithXFromContext in terms of WithXFromRequest by @tie in #1863
    • Synchronize common files from prometheus/prometheus by @prombot in #1988
    • Fix bug unit cpu-seconds not a suffix of metric go_cpu_classes_gc_mark_assist_cpu_seconds by @vesari in #1991
    • build(deps): bump golang.org/x/sys from 0.42.0 to 0.43.0 by @dependabot[bot] in #1993
    • build(deps): bump github.com/klauspost/compress from 1.18.5 to 1.18.6 by @dependabot[bot] in

    Note truncated.

    Open source →
  13. v1.23.3-0.20260810122141-0b4876a6a1bd10 Aug 2026pre-release

    Nothing published for this version

  14. v1.23.3-0.20260805172144-18218bff2edc5 Aug 2026pre-release

    Nothing published for this version

  15. v1.23.3-0.20260801095103-291e2c630cf51 Aug 2026pre-release

    Nothing published for this version

  16. v1.23.3-0.20260724065723-ecdb8254ba6124 Jul 2026pre-release

    Nothing published for this version

  17. v1.23.3-0.20260723095000-436bf2e0fb6023 Jul 2026pre-release

    Nothing published for this version

  18. v1.23.3-0.20260723090750-2a170abebb4c23 Jul 2026pre-release

    Nothing published for this version

  19. v1.23.3-0.20260723074827-db1bfbfcdbce23 Jul 2026pre-release

    Nothing published for this version

  20. v1.23.3-0.20260723060443-91ec32357f8723 Jul 2026pre-release

    Nothing published for this version

  21. v1.23.3-0.20260720095000-971d4a34e3c120 Jul 2026pre-release

    Nothing published for this version

  22. v1.23.3-0.20260717131607-fa362ed347e517 Jul 2026pre-release

    Nothing published for this version

  23. v1.23.3-0.20260716094704-78262a77b89916 Jul 2026pre-release

    Nothing published for this version

  24. v1.23.3-0.20260715115437-34e9a7fe186a15 Jul 2026pre-release

    Nothing published for this version

  25. v1.23.3-0.20260710134234-de192175ccd610 Jul 2026pre-release

    Nothing published for this version

  26. v1.23.3-0.20260708163044-20355eb4487c8 Jul 2026pre-release

    Nothing published for this version

  27. v1.23.3-0.20260707113824-e0b7a44b4eb07 Jul 2026pre-release

    Nothing published for this version

  28. v1.23.3-0.20260706085648-2c6e6c1dea776 Jul 2026pre-release

    Nothing published for this version

  29. v1.23.3-0.20260706084936-0f73d8cbbdbe6 Jul 2026pre-release

    Nothing published for this version

  30. v1.23.3-0.20260706084613-f63424d2378b6 Jul 2026pre-release

    Nothing published for this version

  31. v1.23.3-0.20260702112354-832cec72badf2 Jul 2026pre-release

    Nothing published for this version

  32. v1.23.3-0.20260702103713-7dc915d301412 Jul 2026pre-release

    Nothing published for this version

  33. v1.23.3-0.20260701095028-a2061d59e26c1 Jul 2026pre-release

    Nothing published for this version

  34. v1.23.3-0.20260630072210-b60fbc2882f730 Jun 2026pre-release

    Nothing published for this version

  35. v1.23.3-0.20260624042014-28914d017fba24 Jun 2026pre-release

    Nothing published for this version

  36. v1.23.3-0.20260623123012-0bc38646adf323 Jun 2026pre-release

    Nothing published for this version

  37. v1.23.3-0.20260623122432-45d1ee3846e723 Jun 2026pre-release

    Nothing published for this version

  38. v1.23.3-0.20260623121716-e34f51cc908f23 Jun 2026pre-release

    Nothing published for this version

  39. v1.23.3-0.20260621222812-74560058a7af21 Jun 2026pre-release

    Nothing published for this version

  40. v1.23.3-0.20260619092947-6601282b8b0619 Jun 2026pre-release

    Nothing published for this version

  41. v1.23.3-0.20260619092734-443f1ce2973b19 Jun 2026pre-release

    Nothing published for this version

  42. v1.23.3-0.20260602051030-3537b20ac86b2 Jun 2026pre-release

    Nothing published for this version

  43. v1.23.3-0.20260602050458-79920b9f846b2 Jun 2026pre-release

    Nothing published for this version

  44. v1.23.3-0.20260602050236-6576eaeb5e262 Jun 2026pre-release

    Nothing published for this version

  45. v1.23.3-0.20260601143016-7f859560c04e1 Jun 2026pre-release

    Nothing published for this version

  46. v1.23.3-0.20260601111853-6dd46257bfb21 Jun 2026pre-release

    Nothing published for this version

  47. v1.23.3-0.20260529153740-02eaf492695d29 May 2026pre-release

    Nothing published for this version

  48. v1.23.3-0.20260528162723-d61fb3f8aa4b28 May 2026pre-release

    Nothing published for this version

  49. v1.23.3-0.20260518105423-c9d5bc4c50a918 May 2026pre-release

    Nothing published for this version

  50. v1.23.3-0.20260512195842-e839fbaf72ad12 May 2026pre-release

    Nothing published for this version

  51. v1.23.3-0.20260512065557-99805a273ecb12 May 2026pre-release

    Nothing published for this version

  52. v1.23.3-0.20260506204903-0ac87e14c3036 May 2026pre-release

    Nothing published for this version

  53. v1.23.3-0.20260506075656-0b88ca2329216 May 2026pre-release

    Nothing published for this version

  54. v1.23.3-0.20260501111648-f6951953d56f1 May 2026pre-release

    Nothing published for this version

  55. v1.23.3-0.20260429134713-79042c63b36a29 Apr 2026pre-release

    Nothing published for this version

  56. v1.23.3-0.20260423082357-773db0a948a823 Apr 2026pre-release

    Nothing published for this version

  57. v1.23.3-0.20260422140503-9f0fd78323f822 Apr 2026pre-release

    Nothing published for this version

  58. v1.23.3-0.20260420141044-42dc83bb3f4220 Apr 2026pre-release

    Nothing published for this version

  59. v1.23.3-0.20260416115854-3b253491999c16 Apr 2026pre-release

    Nothing published for this version

  60. v1.23.3-0.20260415123413-5f35560ef2c715 Apr 2026pre-release

    Nothing published for this version