Skip to content

fix(deps): update all - #500

Open
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/all
Open

fix(deps): update all#500
renovate[bot] wants to merge 1 commit into
masterfrom
renovate/all

Conversation

@renovate

@renovate renovate Bot commented Jun 3, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
cloud.google.com/go/alloydbconn v1.18.3v1.18.5 age confidence
cloud.google.com/go/spanner v1.91.0v1.94.0 age confidence
github.com/googleapis/gax-go/v2 v2.22.0v2.23.0 age confidence
github.com/googleapis/go-sql-spanner v1.25.1v1.26.0 age confidence
github.com/jackc/pgx/v5 v5.9.2v5.10.0 age confidence
github.com/prometheus/client_golang v1.23.2v1.24.1 age confidence
github.com/rickar/cal/v2 v2.1.27v2.1.28 age confidence

Release Notes

googlecloudplatform/alloydb-go-connector (cloud.google.com/go/alloydbconn)

v1.18.5

Compare Source

Bug Fixes

v1.18.4

Compare Source

Bug Fixes
googleapis/gax-go (github.com/googleapis/gax-go/v2)

v2.23.0

Compare Source

Features
  • v2: add http.response.status_code to TransportTelemetryData (#​513) (7d5554f)
Bug Fixes
googleapis/go-sql-spanner (github.com/googleapis/go-sql-spanner)

v1.26.0

Compare Source

Features
  • Add directed_read connection variable (#​821) (e8b6af3)
  • Automatically set a default_sequence_kind on DDL failure (#​824) (1bc1d6d)
  • Retrieve read timestamp from read-only transaction (#​834) (3ba6ab1)
  • Support case-insensitive query parameter matching (#​823) (d0368f6)
  • Support SHOW TRANSACTION variables and transaction_isolation alias (#​822) (464bef4)
Bug Fixes
  • conn: Clone QueryOptions before modifying LastStatement field (#​820) (6eb8e2b)
  • examples: Wait for emulator port to open before executing samples (#​828) (f6fec0d)
  • ruby-wrapper: Resolve flakiness on Windows and path warning (#​829) (87617cf)
  • Support read-only transactions in RunTransaction (#​826) (1c33428)
  • test: Resolve flakiness in MaxIdleConnections tests (#​825) (fd7de25)
  • test: Resolve flakiness in TestStatementTimeout by adding delay to ExecuteSql (#​827) (318e4b4)
  • Update all dependencies (#​851) (f925772)
  • Update dependency io.grpc:grpc-bom to v1.82.1 (#​853) (107a767)
  • Update module cloud.google.com/go/longrunning to v1.1.0 (#​859) (e8e22d6)

v1.25.2

Compare Source

Bug Fixes
jackc/pgx (github.com/jackc/pgx/v5)

v5.10.0

Compare Source

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

rickar/cal (github.com/rickar/cal/v2)

v2.1.28

Compare Source

What's Changed

New Contributors

Full Changelog: rickar/cal@v2.1.27...v2.1.28


Configuration

📅 Schedule: (UTC)

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

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 enabled auto-merge (squash) June 3, 2026 00:58
@renovate
renovate Bot requested review from InfernoJJ and adamdecaf as code owners June 3, 2026 00:58
@renovate
renovate Bot force-pushed the renovate/all branch from 1f2e0ac to 61fc448 Compare June 6, 2026 01:09
@renovate renovate Bot changed the title fix(deps): update all to v5.10.0 fix(deps): update all Jun 6, 2026
@renovate
renovate Bot force-pushed the renovate/all branch from 61fc448 to d7d4f1e Compare June 9, 2026 22:44
@renovate

renovate Bot commented Jun 9, 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):

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

Details:

Package Change
go 1.25.0 -> 1.25.8
go.opentelemetry.io/otel v1.43.0 -> v1.44.0
go.opentelemetry.io/otel/sdk v1.43.0 -> v1.44.0
go.opentelemetry.io/otel/trace v1.43.0 -> v1.44.0
google.golang.org/grpc v1.81.1 -> v1.82.1
cloud.google.com/go/longrunning v0.13.0 -> v1.2.0
github.com/googleapis/enterprise-certificate-proxy v0.3.15 -> v0.3.17
github.com/prometheus/common v0.67.5 -> v0.70.1
github.com/prometheus/procfs v0.20.1 -> v0.21.1
go.opentelemetry.io/otel/metric v1.43.0 -> v1.44.0
go.opentelemetry.io/otel/sdk/metric v1.43.0 -> v1.44.0
golang.org/x/crypto v0.51.0 -> v0.54.0
golang.org/x/net v0.55.0 -> v0.57.0
golang.org/x/sync v0.20.0 -> v0.22.0
golang.org/x/sys v0.45.0 -> v0.47.0
golang.org/x/text v0.37.0 -> v0.40.0
google.golang.org/api v0.278.0 -> v0.287.1
google.golang.org/genproto/googleapis/api v0.0.0-20260504160031-60b97b32f348 -> v0.0.0-20260630182238-925bb5da69e7
google.golang.org/genproto/googleapis/rpc v0.0.0-20260511170946-3700d4141b60 -> v0.0.0-20260630182238-925bb5da69e7

@renovate
renovate Bot force-pushed the renovate/all branch 2 times, most recently from b6e0d8f to fad5b54 Compare June 22, 2026 18:35
@renovate
renovate Bot force-pushed the renovate/all branch 5 times, most recently from 101b919 to 45a6fd1 Compare June 30, 2026 17:40
@renovate
renovate Bot force-pushed the renovate/all branch 6 times, most recently from 1a26071 to c8140fd Compare July 14, 2026 19:08
@renovate
renovate Bot force-pushed the renovate/all branch 3 times, most recently from 563a73b to d8bbc0d Compare July 20, 2026 22:04
@renovate
renovate Bot force-pushed the renovate/all branch 6 times, most recently from 60b3a25 to a730ea4 Compare July 27, 2026 17:50
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