Skip to content

Update all dependencies - #101

Closed
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all
Closed

Update all dependencies#101
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/all

Conversation

@renovate

@renovate renovate Bot commented Dec 15, 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 Type Update
github.com/prometheus/client_golang v1.23.2v1.24.1 age confidence require minor
github.com/prometheus/client_model v0.6.2v0.6.3 age confidence require patch
github.com/prometheus/common v0.67.4v0.71.0 age confidence require minor
github.com/thanos-io/promql-engine 1a520ea674b63a age confidence require digest

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

prometheus/client_model (github.com/prometheus/client_model)

v0.6.3

Compare Source

What's Changed

New Contributors

Full Changelog: prometheus/client_model@v0.6.2...v0.6.3

What's Changed

New Contributors

Full Changelog: prometheus/client_model@v0.6.2...v0.6.3

prometheus/common (github.com/prometheus/common)

v0.71.0

Compare Source

What's Changed

  • Synchronize common files from prometheus/prometheus by @​prombot in #​957
  • build(deps): bump the codeql group across 1 directory with 4 updates by @​dependabot[bot] in #​955
  • Synchronize common files from prometheus/prometheus by @​prombot in #​958
  • fix: use slog.DiscardHandler in promslog.NopLogger by @​FUSAKLA in #​960
  • build(deps): bump ossf/scorecard-action from 2.4.3 to 2.4.4 by @​dependabot[bot] in #​956
  • Synchronize common files from prometheus/prometheus by @​prombot in #​959
  • Synchronize common files from prometheus/prometheus by @​prombot in #​961
  • feat: implement gauge and counter support for OpenMetrics 2.0 by @​dashpole in #​894
  • fix: support exemplars with empty label sets in OpenMetrics 2.0 by @​dashpole in #​965
  • model: sort label names without boxing them into sort.Interface by @​SoloJacobs in #​963
  • expfmt: fix wildcard content negotiation regression for Negotiate and NegotiateIncludingOpenMetrics by @​dashpole in #​966
  • expfmt: precompute parsed goautoneg.Accept for well-known Format constants by @​dashpole in #​967
  • expfmt: format OpenMetrics 2.0 float values and validate units by @​dashpole in #​969
  • fix: drop invalid OpenMetrics 2.0 exemplars instead of failing exposition by @​dashpole in #​970
  • model: add Duration unit constants and conversion methods by @​locker95 in #​952
  • expfmt: prevent st@ leaking to Gauge and Untyped samples in OpenMetrics 2.0 by @​dashpole in #​971
  • expfmt: fix OpenMetrics 2.0 decoder error, format docs, and encoder version dispatch by @​dashpole in #​968
  • build(deps): bump github.com/stretchr/testify from 1.11.1 to 1.12.1 by @​dependabot[bot] in #​977
  • build(deps): bump google.golang.org/protobuf from 1.36.11 to 1.36.12 by @​dependabot[bot] in #​976
  • build(deps): bump golang.org/x/net from 0.57.0 to 0.58.0 in the golang-org-x group across 1 directory by @​dependabot[bot] in [

Note

PR body was truncated to here.


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, only on Monday (* 0-3 * * 1)
  • Automerge
    • At any time (no schedule defined)

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

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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 force-pushed the renovate/all branch 2 times, most recently from 1d1cf47 to 69d32fa Compare December 18, 2025 17:43
@renovate renovate Bot changed the title fix(deps): update all dependencies Update all dependencies Dec 23, 2025
@renovate
renovate Bot force-pushed the renovate/all branch 4 times, most recently from c085c81 to 265bcc8 Compare January 9, 2026 16:43
@renovate
renovate Bot force-pushed the renovate/all branch 2 times, most recently from d5dfc88 to 7d03f98 Compare January 19, 2026 15:07
@renovate
renovate Bot force-pushed the renovate/all branch 2 times, most recently from 5c60cc4 to 3a64544 Compare February 10, 2026 22:26
@renovate
renovate Bot force-pushed the renovate/all branch 2 times, most recently from ca3d0f9 to c653970 Compare February 25, 2026 21:56
@renovate
renovate Bot force-pushed the renovate/all branch 6 times, most recently from d6ecd62 to 1602471 Compare April 7, 2026 17:10
@renovate
renovate Bot force-pushed the renovate/all branch 4 times, most recently from ebc0377 to 8f692a8 Compare April 29, 2026 18:59
@renovate
renovate Bot force-pushed the renovate/all branch from 8f692a8 to 20bb149 Compare May 13, 2026 13:12
@renovate
renovate Bot force-pushed the renovate/all branch 2 times, most recently from 1650e8f to 8d43b05 Compare May 29, 2026 16:56
@renovate

renovate Bot commented May 29, 2026

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):

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

Details:

Package Change
go 1.24.9 -> 1.25.0
github.com/stretchr/testify v1.11.1 -> v1.12.1
github.com/prometheus/procfs v0.17.0 -> v0.21.1
golang.org/x/sys v0.39.0 -> v0.47.0
golang.org/x/text v0.32.0 -> v0.41.0
google.golang.org/protobuf v1.36.11 -> v1.36.12

@renovate
renovate Bot force-pushed the renovate/all branch 6 times, most recently from f01f475 to 65662ca Compare July 22, 2026 18:08
@renovate
renovate Bot force-pushed the renovate/all branch 2 times, most recently from 9dc2ea9 to 58b663c Compare July 29, 2026 11:16
@renovate
renovate Bot force-pushed the renovate/all branch 3 times, most recently from ac5e9dd to 95a1eca Compare August 17, 2026 12:05
@renovate
renovate Bot force-pushed the renovate/all branch 2 times, most recently from 3642a08 to 20a70ad Compare August 19, 2026 15:12
@renovate
renovate Bot force-pushed the renovate/all branch 14 times, most recently from b68665a to 0287848 Compare September 2, 2026 14:07
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.

1 participant