chore: update go dependencies #63

Merged
Wuast94 merged 3 commits from updatarr/go-dependencies-c171078cda into main 2026-07-23 01:13:46 +02:00
Owner

Updates go dependencies.

Automerge: Enabled

Changed files:

  • .devcontainer/Dockerfile:3 golang:1.26.5-bookworm@sha256:18aedc16aa19b3fd7ded7245fc14b109e054d65d22ed53c355c899582bbb2113 -> golang:1.26.5-bookworm@sha256:1ecb7edf62a0408027bd5729dfd6b1b8766e578e8df93995b225dfd0944eb651
  • go.mod:6 v1.1.3 -> v1.2.0
  • go.mod:7 v1.23.2 -> v1.24.0
  • go.mod:15 v0.70.0 -> v0.70.1
Release notes

v1.2.0: github.com/lmittmann/tint: v1.2.0

Compare source

tint.NewHandler is now deprecated in favor of the new tint.NewTextHandler. Existing code keeps working, and go fix (Go 1.26+) upgrades call sites automatically.

What's Changed

New Contributors

Full Changelog: https://github.com/lmittmann/tint/compare/v1.1.3...v1.2.0

v1.24.0: github.com/prometheus/client_golang: 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: https://github.com/prometheus/client_golang/compare/v1.23.2...v1.24.0

v0.70.1: github.com/prometheus/common: v0.70.1

Compare source

What's Changed

Full Changelog: https://github.com/prometheus/common/compare/v0.70.0...v0.70.1

Updates `go dependencies`. Automerge: Enabled Changed files: - `.devcontainer/Dockerfile:3` `golang:1.26.5-bookworm@sha256:18aedc16aa19b3fd7ded7245fc14b109e054d65d22ed53c355c899582bbb2113` -> `golang:1.26.5-bookworm@sha256:1ecb7edf62a0408027bd5729dfd6b1b8766e578e8df93995b225dfd0944eb651` - `go.mod:6` `v1.1.3` -> `v1.2.0` - `go.mod:7` `v1.23.2` -> `v1.24.0` - `go.mod:15` `v0.70.0` -> `v0.70.1` <details> <summary>Release notes</summary> ### [`v1.2.0`](https://github.com/lmittmann/tint/releases/tag/v1.2.0): github.com/lmittmann/tint: v1.2.0 [Compare source](https://github.com/lmittmann/tint/compare/v1.1.3...v1.2.0) `tint.NewHandler` is now deprecated in favor of the new `tint.NewTextHandler`. Existing code keeps working, and go fix (Go 1.26+) upgrades call sites automatically. ## What's Changed * Avoid throwaway time rounding by @scop in https://github.com/lmittmann/tint/pull/102 * fix formating of `[]byte` values by @lmittmann in https://github.com/lmittmann/tint/pull/103 * refactor: rename NewHandler to NewTextHandler by @lmittmann in https://github.com/lmittmann/tint/pull/109 ## New Contributors * @scop made their first contribution in https://github.com/lmittmann/tint/pull/102 **Full Changelog**: https://github.com/lmittmann/tint/compare/v1.1.3...v1.2.0 ### [`v1.24.0`](https://github.com/prometheus/client_golang/releases/tag/v1.24.0): github.com/prometheus/client_golang: v1.24.0 - 2026-07-20 [Compare source](https://github.com/prometheus/client_golang/compare/v1.23.2...v1.24.0) ### 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 <details> <summary> All commits </summary> * build(deps): bump github.com/prometheus/procfs from 0.16.1 to 0.17.0 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1839 * build(deps): bump golang.org/x/sys from 0.33.0 to 0.34.0 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1838 * prometheus/collectors: use godoc link for runtime/metrics supported metrics by @xieyuschen in https://github.com/prometheus/client_golang/pull/1844 * Fix doc typo by @torrca in https://github.com/prometheus/client_golang/pull/1849 * Merge release-1.23 into main by @vesari in https://github.com/prometheus/client_golang/pull/1851 * build(deps): bump github/codeql-action from 3.29.2 to 3.29.5 in the github-actions group by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1852 * Refactor LabelNames to return model.LabelNames type for consistency by @yshngg in https://github.com/prometheus/client_golang/pull/1850 * remote: simplified Store interface; renamed Handler to WriteHandler by @bwplotka in https://github.com/prometheus/client_golang/pull/1855 * feat(api/prometheus): add format_query endpoint for query formatting by @yshngg in https://github.com/prometheus/client_golang/pull/1846 * feat(api): add FormatQuery method to Prometheus v1 API by @yshngg in https://github.com/prometheus/client_golang/pull/1856 * Support matchers in rules API by @jotak in https://github.com/prometheus/client_golang/pull/1843 * Use prometheus/common.expfmt.NewTextParser by @aknuds1 in https://github.com/prometheus/client_golang/pull/1859 * Merge release-1.23 into main by @aknuds1 in https://github.com/prometheus/client_golang/pull/1861 * chore: Drop support for <go1.22 by @mrueg in https://github.com/prometheus/client_golang/pull/1862 * collectors/version: Allow custom additional labels by @mrueg in https://github.com/prometheus/client_golang/pull/1860 * build(deps): bump github.com/prometheus/common from 0.65.0 to 0.66.0 by @ywwg in https://github.com/prometheus/client_golang/pull/1865 * Sync release-1.23 into main by @aknuds1 in https://github.com/prometheus/client_golang/pull/1868 * Sync main with release-1.23 by @aknuds1 in https://github.com/prometheus/client_golang/pull/1871 * chore: clean up golangci-lint configuration by @mmorel-35 in https://github.com/prometheus/client_golang/pull/1802 * build(deps): bump google.golang.org/protobuf from 1.36.8 to 1.36.9 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1880 * build(deps): bump google.golang.org/protobuf from 1.36.6 to 1.36.9 in /exp by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1882 * build(deps): bump github.com/prometheus/common from 0.65.0 to 0.66.1 in /exp by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1883 * build(deps): bump the github-actions group with 4 updates by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1881 * Fix typo in remote api err msg by @SungJin1212 in https://github.com/prometheus/client_golang/pull/1878 * chore: Update metrics for new Go version by @github-actions[bot] in https://github.com/prometheus/client_golang/pull/1864 * Add RetryCallBack to remote_api.go by @pipiland2612 in https://github.com/prometheus/client_golang/pull/1888 * bug(remote_write): Fix compression buffer pooling by @fpetkovski in https://github.com/prometheus/client_golang/pull/1889 * Change RetryCallBack initialized by @pipiland2612 in https://github.com/prometheus/client_golang/pull/1890 * Fix CI bug by @pipiland2612 in https://github.com/prometheus/client_golang/pull/1892 * Use cloned http.DefaultTransport. issue-1857 by @karthikkondapally in https://github.com/prometheus/client_golang/pull/1885 * Public backoff config to allow usage of WithAPIBackoff by @pipiland2612 in https://github.com/prometheus/client_golang/pull/1895 * Clarify exp library stability by @pipiland2612 in https://github.com/prometheus/client_golang/pull/1894 * feat: add support for `/status/tsdb/blocks` endpoint by @tjhop in https://github.com/prometheus/client_golang/pull/1896 * minor refactor of replaceInvalidRune() in bridge.go by @karthikkondapally in https://github.com/prometheus/client_golang/pull/1897 * build(deps): bump github.com/prometheus/procfs from 0.17.0 to 0.19.2 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1903 * build(deps): bump github.com/klauspost/compress from 1.18.0 to 1.18.1 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1906 * build(deps): bump golang.org/x/sys from 0.35.0 to 0.37.0 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1904 * build(deps): bump github.com/prometheus/common from 0.66.1 to 0.67.2 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1907 * build(deps): bump github.com/klauspost/compress from 1.18.0 to 1.18.1 in /exp by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1911 * build(deps): bump google.golang.org/protobuf from 1.36.9 to 1.36.10 in /exp by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1909 * build(deps): bump github.com/prometheus/common from 0.66.1 to 0.67.2 in /exp by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1910 * build(deps): bump the github-actions group with 2 updates by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1908 * chore(ci): Add CRLF detection and fix targets to prevent CRLF contamination by @kakkoyun in https://github.com/prometheus/client_golang/pull/1898 * chore(ci): Use stable names for CI steps by @kakkoyun in https://github.com/prometheus/client_golang/pull/1914 * build(deps): bump github.com/klauspost/compress from 1.18.1 to 1.18.2 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1920 * build(deps): bump github.com/prometheus/common from 0.67.2 to 0.67.4 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1921 * build(deps): bump golang.org/x/sys from 0.37.0 to 0.38.0 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1922 * build(deps): bump github.com/prometheus/common from 0.67.2 to 0.67.4 in /exp by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1923 * build(deps): bump github.com/klauspost/compress from 1.18.1 to 1.18.2 in /exp by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1924 * build(deps): bump the github-actions group with 4 updates by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1919 * feat: expose Desc error through public Err() method by @duricanikolic in https://github.com/prometheus/client_golang/pull/1902 * Allow `/metrics` handler output filtering via `name[]` query param by @colega in https://github.com/prometheus/client_golang/pull/1925 * Prevent OOM from malformed snappy payloads by validating decoded length by @makasim in https://github.com/prometheus/client_golang/pull/1917 * Ensure remote write v2 headers cannot be returned on v1 requests by @kgeckhart in https://github.com/prometheus/client_golang/pull/1927 * build(deps): bump google.golang.org/protobuf from 1.36.10 to 1.36.11 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1932 * build(deps): bump golang.org/x/sys from 0.38.0 to 0.39.0 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1933 * build(deps): bump google.golang.org/protobuf from 1.36.10 to 1.36.11 in /exp by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1935 * build(deps): bump the github-actions group with 5 updates by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1934 * promhttp/zstd: add unit tests for zstd writer registration by @90ashish in https://github.com/prometheus/client_golang/pull/1929 * feat(collector): add Go 1.26 new runtime metrics by @kakkoyun in https://github.com/prometheus/client_golang/pull/1942 * build(deps): bump github.com/prometheus/common from 0.67.4 to 0.67.5 in /exp by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1948 * build(deps): bump the github-actions group with 4 updates by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1946 * build(deps): bump github.com/klauspost/compress from 1.18.2 to 1.18.3 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1944 * build(deps): bump golang.org/x/sys from 0.39.0 to 0.40.0 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1945 * build(deps): bump github.com/klauspost/compress from 1.18.2 to 1.18.3 in /exp by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1947 * chore(test): bump 1.25, tests with synctest and check not panic by @manute in https://github.com/prometheus/client_golang/pull/1950 * build(deps): bump github.com/prometheus/procfs from 0.19.2 to 0.20.1 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1954 * build(deps): bump golang.org/x/sys from 0.40.0 to 0.41.0 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1957 * build(deps): bump github.com/klauspost/compress from 1.18.3 to 1.18.4 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1955 * build(deps): bump go.opentelemetry.io/otel/sdk from 1.34.0 to 1.40.0 in /tutorials/whatsup by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1959 * build(deps): bump github.com/prometheus/common from 0.67.4 to 0.67.5 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1956 * build(deps): bump the github-actions group with 2 updates by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1958 * chore(collectors/go): generate the tests after new metric by @kakkoyun in https://github.com/prometheus/client_golang/pull/1962 * Remove Arthur from the list of maintainers by @ArthurSens in https://github.com/prometheus/client_golang/pull/1964 * build(deps): bump google.golang.org/grpc from 1.69.4 to 1.79.3 in /tutorials/whatsup by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1965 * fix: recover from collector panic and return error in Gather by @Saflaski in https://github.com/prometheus/client_golang/pull/1961 * prometheus: clarify MetricVec delete semantics in godoc by @Retr0-XD in https://github.com/prometheus/client_golang/pull/1967 * build(deps): bump golang.org/x/sys from 0.41.0 to 0.42.0 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1973 * build(deps): bump github.com/klauspost/compress from 1.18.4 to 1.18.5 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1974 * build(deps): bump github.com/klauspost/compress from 1.18.4 to 1.18.5 in /exp by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1976 * Optionally add OM unit by @vesari in https://github.com/prometheus/client_golang/pull/1392 * fix: respect context cancellation in httpClient.Do by @pedrampdd in https://github.com/prometheus/client_golang/pull/1971 * build(deps): bump go.opentelemetry.io/otel/sdk from 1.40.0 to 1.43.0 in /tutorials/whatsup by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1978 * Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/client_golang/pull/1977 * Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/client_golang/pull/1980 * examples: add native histogram usage example by @thegdsks in https://github.com/prometheus/client_golang/pull/1981 * chore(ci): add macOS, Windows and arm64 test runners by @kakkoyun in https://github.com/prometheus/client_golang/pull/1968 * prometheus: honor PidFn on windows and darwin by @Retr0-XD in https://github.com/prometheus/client_golang/pull/1966 * Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/client_golang/pull/1984 * Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/client_golang/pull/1985 * promhttp: implement WithXFromContext in terms of WithXFromRequest by @tie in https://github.com/prometheus/client_golang/pull/1863 * Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/client_golang/pull/1988 * Fix bug unit cpu-seconds not a suffix of metric go_cpu_classes_gc_mark_assist_cpu_seconds by @vesari in https://github.com/prometheus/client_golang/pull/1991 * build(deps): bump golang.org/x/sys from 0.42.0 to 0.43.0 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1993 * build(deps): bump github.com/klauspost/compress from 1.18.5 to 1.18.6 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1992 * build(deps): bump github.com/klauspost/compress from 1.18.5 to 1.18.6 in /exp by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1995 * exp/api/remote: limit request body size in SnappyDecodeMiddleware by @roidelapluie in https://github.com/prometheus/client_golang/pull/1996 * Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/client_golang/pull/2001 * build(deps): bump the github-actions group across 1 directory with 4 updates by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/1994 * ci(update-go-versions): declare permissions for the monthly chore PR by @arpitjain099 in https://github.com/prometheus/client_golang/pull/2003 * docs: fix godoc indentation and typos in timer.go and wrap.go by @immanuwell in https://github.com/prometheus/client_golang/pull/2009 * ci: harden actions/checkout with persist-credentials: false by @roidelapluie in https://github.com/prometheus/client_golang/pull/2011 * fix(registry): prevent file descriptor leak in WriteToTextfile by @ProjectMutilation in https://github.com/prometheus/client_golang/pull/2010 * Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/client_golang/pull/2008 * promhttp: add regression test for concurrent map writes (#1274) by @pedrampdd in https://github.com/prometheus/client_golang/pull/2000 * build(deps): bump github.com/prometheus/common from 0.67.6-0.20260224092343-e4c38a0aea47 to 0.68.0 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/2015 * build(deps): bump the github-actions group with 2 updates by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/2016 * build(deps): bump golang.org/x/sys from 0.43.0 to 0.45.0 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/2014 * build(deps): bump github.com/prometheus/common from 0.67.5 to 0.68.0 in /exp by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/2017 * promhttp: fix grammar in exemplar option doc comments by @s3onghyun in https://github.com/prometheus/client_golang/pull/2023 * fix: use keyed fields in SamplePair struct literals in api_test.go by @immanuwell in https://github.com/prometheus/client_golang/pull/2012 * refactor: replace interface{} with any (Go 1.18+) by @MD-Mushfiqur123 in https://github.com/prometheus/client_golang/pull/2021 * Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/client_golang/pull/2013 * build(deps): bump github.com/prometheus/common from 0.68.0 to 0.69.0 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/2025 * build(deps): bump github.com/prometheus/common from 0.68.0 to 0.69.0 in /exp by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/2027 * build(deps): bump golang.org/x/sys from 0.45.0 to 0.46.0 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/2026 * Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/client_golang/pull/2028 * build(deps): bump github.com/prometheus/procfs from 0.20.1 to 0.21.0 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/2033 * build(deps): bump github.com/klauspost/compress from 1.18.6 to 1.18.7 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/2036 * build(deps): bump github.com/prometheus/procfs from 0.21.0 to 0.21.1 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/2035 * build(deps): bump github.com/klauspost/compress from 1.18.6 to 1.18.7 in /exp by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/2038 * Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/client_golang/pull/2041 * fix(api): fall back to GET on forbidden POSTs by @immanuwell in https://github.com/prometheus/client_golang/pull/2030 * build(deps): bump golang.org/x/net from 0.48.0 to 0.55.0 in /tutorials/whatsup by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/2042 * build(deps): bump the github-actions group across 1 directory with 5 updates by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/2043 * chores: remove example Dockerfile and container_description.yaml by @bwplotka in https://github.com/prometheus/client_golang/pull/2044 * Update dependabot config by @SuperQ in https://github.com/prometheus/client_golang/pull/2046 * build(deps): bump github.com/klauspost/compress from 1.18.7 to 1.19.0 in /exp by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/2048 * build(deps): bump github.com/klauspost/compress from 1.18.7 to 1.19.0 by @dependabot[bot] in https://github.com/prometheus/client_golang/pull/2047 * promhttp: don't panic when instrumenting with non-exemplar observers by @spor3006 in https://github.com/prometheus/client_golang/pull/2005 * Replace deprecated model.NameValidationScheme with explicit UTF8Validation by @kakkoyun in https://github.com/prometheus/client_golang/pull/2051 * test: fix two flaky tests (darwin start_time regex, memstats HeapReleased drift) by @kakkoyun in https://github.com/prometheus/client_golang/pull/2050 * fix: correct typos in comments and test error messages by @maxtaran2010 in https://github.com/prometheus/client_golang/pull/2049 * examples: improve simple main.go example by @dhanudhanushree in https://github.com/prometheus/client_golang/pull/1999 * Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/client_golang/pull/2055 * feat(promhttp): add CoalesceGather option to deduplicate concurrent Gather calls by @kakkoyun in https://github.com/prometheus/client_golang/pull/1969 * build(deps): update all Go dependencies in all go.mod files by @bwplotka in https://github.com/prometheus/client_golang/pull/2059 * Cut v1.24.0-rc.0 by @bwplotka in https://github.com/prometheus/client_golang/pull/2058 </details> ## New Contributors * @xieyuschen made their first contribution in https://github.com/prometheus/client_golang/pull/1844 * @torrca made their first contribution in https://github.com/prometheus/client_golang/pull/1849 * @yshngg made their first contribution in https://github.com/prometheus/client_golang/pull/1850 * @jotak made their first contribution in https://github.com/prometheus/client_golang/pull/1843 * @SungJin1212 made their first contribution in https://github.com/prometheus/client_golang/pull/1878 * @github-actions[bot] made their first contribution in https://github.com/prometheus/client_golang/pull/1864 * @pipiland2612 made their first contribution in https://github.com/prometheus/client_golang/pull/1888 * @fpetkovski made their first contribution in https://github.com/prometheus/client_golang/pull/1889 * @karthikkondapally made their first contribution in https://github.com/prometheus/client_golang/pull/1885 * @tjhop made their first contribution in https://github.com/prometheus/client_golang/pull/1896 * @duricanikolic made their first contribution in https://github.com/prometheus/client_golang/pull/1902 * @makasim made their first contribution in https://github.com/prometheus/client_golang/pull/1917 * @kgeckhart made their first contribution in https://github.com/prometheus/client_golang/pull/1927 * @90ashish made their first contribution in https://github.com/prometheus/client_golang/pull/1929 * @manute made their first contribution in https://github.com/prometheus/client_golang/pull/1950 * @Saflaski made their first contribution in https://github.com/prometheus/client_golang/pull/1961 * @Retr0-XD made their first contribution in https://github.com/prometheus/client_golang/pull/1967 * @pedrampdd made their first contribution in https://github.com/prometheus/client_golang/pull/1971 * @thegdsks made their first contribution in https://github.com/prometheus/client_golang/pull/1981 * @tie made their first contribution in https://github.com/prometheus/client_golang/pull/1863 * @arpitjain099 made their first contribution in https://github.com/prometheus/client_golang/pull/2003 * @immanuwell made their first contribution in https://github.com/prometheus/client_golang/pull/2009 * @ProjectMutilation made their first contribution in https://github.com/prometheus/client_golang/pull/2010 * @s3onghyun made their first contribution in https://github.com/prometheus/client_golang/pull/2023 * @MD-Mushfiqur123 made their first contribution in https://github.com/prometheus/client_golang/pull/2021 * @spor3006 made their first contribution in https://github.com/prometheus/client_golang/pull/2005 * @maxtaran2010 made their first contribution in https://github.com/prometheus/client_golang/pull/2049 * @dhanudhanushree made their first contribution in https://github.com/prometheus/client_golang/pull/1999 **Full Changelog**: https://github.com/prometheus/client_golang/compare/v1.23.2...v1.24.0 ### [`v0.70.1`](https://github.com/prometheus/common/releases/tag/v0.70.1): github.com/prometheus/common: v0.70.1 [Compare source](https://github.com/prometheus/common/compare/v0.70.0...v0.70.1) ## What's Changed * Update CHANGELOG for v0.70.0 by @roidelapluie in https://github.com/prometheus/common/pull/945 * config: clarify sensitive redirect headers match net/http by @roidelapluie in https://github.com/prometheus/common/pull/924 * Synchronize common files from prometheus/prometheus by @prombot in https://github.com/prometheus/common/pull/946 * build(deps): bump actions/checkout from 7.0.0 to 7.0.1 by @dependabot[bot] in https://github.com/prometheus/common/pull/950 * build(deps): bump actions/setup-go from 6.5.0 to 7.0.0 by @dependabot[bot] in https://github.com/prometheus/common/pull/949 * build(deps): bump the codeql group with 4 updates by @dependabot[bot] in https://github.com/prometheus/common/pull/948 * build(deps): bump golang.org/x/net from 0.56.0 to 0.57.0 in the golang-org-x group across 1 directory by @dependabot[bot] in https://github.com/prometheus/common/pull/947 **Full Changelog**: https://github.com/prometheus/common/compare/v0.70.0...v0.70.1 </details>
chore: update go dependencies
Some checks failed
CI / Quality (pull_request) Failing after 5m55s
CI / Build (pull_request) Has been skipped
cc319fd8e0
Wuast94 scheduled this pull request to auto merge when all checks succeed 2026-07-13 15:38:37 +02:00
Wuast94 force-pushed updatarr/go-dependencies-c171078cda from cc319fd8e0
Some checks failed
CI / Quality (pull_request) Failing after 5m55s
CI / Build (pull_request) Has been skipped
to 762723fe8a
Some checks failed
CI / Quality (pull_request) Failing after 6m4s
CI / Build (pull_request) Has been skipped
2026-07-14 09:49:31 +02:00
Compare
Wuast94 force-pushed updatarr/go-dependencies-c171078cda from 762723fe8a
Some checks failed
CI / Quality (pull_request) Failing after 6m4s
CI / Build (pull_request) Has been skipped
to 816d44f27d
Some checks failed
CI / Quality (pull_request) Failing after 5m56s
CI / Build (pull_request) Has been skipped
2026-07-14 12:24:03 +02:00
Compare
Wuast94 force-pushed updatarr/go-dependencies-c171078cda from 816d44f27d
Some checks failed
CI / Quality (pull_request) Failing after 5m56s
CI / Build (pull_request) Has been skipped
to 02c496ca3a
Some checks failed
CI / Quality (pull_request) Failing after 5m58s
CI / Build (pull_request) Has been skipped
2026-07-14 18:41:02 +02:00
Compare
Wuast94 force-pushed updatarr/go-dependencies-c171078cda from 02c496ca3a
Some checks failed
CI / Quality (pull_request) Failing after 5m58s
CI / Build (pull_request) Has been skipped
to f3b4d25761
Some checks failed
CI / Quality (pull_request) Failing after 5m56s
CI / Build (pull_request) Has been skipped
2026-07-15 00:25:39 +02:00
Compare
Wuast94 force-pushed updatarr/go-dependencies-c171078cda from f3b4d25761
Some checks failed
CI / Quality (pull_request) Failing after 5m56s
CI / Build (pull_request) Has been skipped
to 2fd28ee526
Some checks failed
CI / Quality (pull_request) Failing after 1m55s
CI / Build (pull_request) Has been skipped
2026-07-17 18:28:20 +02:00
Compare
Wuast94 force-pushed updatarr/go-dependencies-c171078cda from 2fd28ee526
Some checks failed
CI / Quality (pull_request) Failing after 1m55s
CI / Build (pull_request) Has been skipped
to 55f0f4c9f5
Some checks failed
CI / Quality (pull_request) Failing after 2m22s
CI / Build (pull_request) Has been skipped
2026-07-17 19:06:33 +02:00
Compare
Wuast94 force-pushed updatarr/go-dependencies-c171078cda from 55f0f4c9f5
Some checks failed
CI / Quality (pull_request) Failing after 2m22s
CI / Build (pull_request) Has been skipped
to 2fde9c3ea3
Some checks failed
CI / Quality (pull_request) Failing after 5m10s
CI / Build (pull_request) Has been skipped
2026-07-19 05:03:20 +02:00
Compare
Wuast94 force-pushed updatarr/go-dependencies-c171078cda from 2fde9c3ea3
Some checks failed
CI / Quality (pull_request) Failing after 5m10s
CI / Build (pull_request) Has been skipped
to 415b900c0e
Some checks failed
CI / Quality (pull_request) Failing after 5m32s
CI / Build (pull_request) Has been skipped
2026-07-20 17:56:48 +02:00
Compare
Wuast94 force-pushed updatarr/go-dependencies-c171078cda from 415b900c0e
Some checks failed
CI / Quality (pull_request) Failing after 5m32s
CI / Build (pull_request) Has been skipped
to 8ff4ad3c3b
Some checks failed
CI / Quality (pull_request) Failing after 8m16s
CI / Build (pull_request) Has been skipped
2026-07-21 15:15:17 +02:00
Compare
Wuast94 force-pushed updatarr/go-dependencies-c171078cda from 8ff4ad3c3b
Some checks failed
CI / Quality (pull_request) Failing after 8m16s
CI / Build (pull_request) Has been skipped
to 51881f8b4a
Some checks failed
CI / Quality (pull_request) Failing after 18m27s
CI / Build (pull_request) Has been skipped
2026-07-22 11:16:31 +02:00
Compare
Wuast94 force-pushed updatarr/go-dependencies-c171078cda from 51881f8b4a
Some checks failed
CI / Quality (pull_request) Failing after 18m27s
CI / Build (pull_request) Has been skipped
to 2de5f28131
Some checks failed
CI / Quality (pull_request) Failing after 3m39s
CI / Build (pull_request) Has been skipped
2026-07-22 12:02:06 +02:00
Compare
Wuast94 force-pushed updatarr/go-dependencies-c171078cda from 2de5f28131
Some checks failed
CI / Quality (pull_request) Failing after 3m39s
CI / Build (pull_request) Has been skipped
to 6519174ed7
Some checks failed
CI / Quality (pull_request) Failing after 7m54s
CI / Build (pull_request) Has been skipped
2026-07-22 18:24:01 +02:00
Compare
Merge branch 'main' into updatarr/go-dependencies-c171078cda
Some checks failed
CI / Quality (pull_request) Failing after 5m0s
CI / Build (pull_request) Has been skipped
c2893823bc
fix: use renamed tint text handler
All checks were successful
CI / Quality (pull_request) Successful in 7m54s
CI / Build (pull_request) Successful in 1m59s
27a896b904
Wuast94 deleted branch updatarr/go-dependencies-c171078cda 2026-07-23 01:13:48 +02:00
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
Wuast94/intel-gpu-exporter!63
No description provided.