Skip to content

fix(go.mod/go.sum): update minor dependencies (golang) - #132

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/minor-deps-golang
Open

fix(go.mod/go.sum): update minor dependencies (golang)#132
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/minor-deps-golang

Conversation

@renovate

@renovate renovate Bot commented Mar 27, 2026

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/onsi/ginkgo/v2 v2.27.5v2.32.0 age confidence require minor
github.com/onsi/gomega v1.39.0v1.42.1 age confidence require minor
github.com/prometheus/client_golang v1.23.2v1.24.1 age confidence require minor
go (source) 1.25.61.26.5 age confidence golang minor
k8s.io/api v0.35.0v0.36.3 age confidence require minor
k8s.io/apimachinery v0.35.0v0.36.3 age confidence require minor
k8s.io/client-go v0.35.0v0.36.3 age confidence require minor
k8s.io/code-generator v0.35.0v0.36.3 age confidence require minor
sigs.k8s.io/controller-runtime v0.23.0v0.24.1 age confidence require minor
sigs.k8s.io/controller-runtime/tools/setup-envtest v0.0.0-20260125161707-82cc073adb06v0.24.1 age confidence require minor
sigs.k8s.io/controller-tools v0.20.0v0.21.0 age confidence require minor

Release Notes

onsi/ginkgo (github.com/onsi/ginkgo/v2)

v2.32.0

Compare Source

2.32.0

-fd generate RSpec-style documentation output. Thank @​woodie !
--sleep-on-failure pauses a failed spec before teardown. Thanks @​qinqon !

v2.31.0

Compare Source

2.31.0

Add a bunch of Claude Skills via the marketplace:

/plugin marketplace add onsi/ginkgo
/plugin install ginkgo@ginkgo

v2.30.0

Compare Source

2.30.0

Features

Ginkgo now allows extentions/global.Reset to support running multiple suites from within a single process. This may take some massaging on your part (see 1672) but can dramatically speed up codebases with O(hundreds) of test suites.

Thanks @​lawrencejones !

Fixes
  • Fix nested --github-output group for progress report nested inside timeline [4f62d7a]

v2.29.0

Compare Source

2.29.0

GinkgoHelperGo makes it easier to write test helpers that need to run in goroutines. Specifically, it makes managing the failure state and capturing failure panics correctly straightforward.

ginkgo outline now includes entries defined in DescribeTableSubtree

v2.28.3

Compare Source

2.28.3

Maintenance

Bump all dependencies

v2.28.2

Compare Source

2.28.2

  • Add ArtifactDir() to support Go 1.26 testing.TB interface [f3a36b6]
  • Implement shell completion [94151c8]
  • Add asan CLI option mirroring msan implementation [4d21dbb]
  • Bump uri from 1.0.3 to 1.0.4 in /docs (#​1630) [c102161]
  • fix aspect ratio [9619647]
  • update logos [5779304]

v2.28.1

Compare Source

2.28.1

Update all dependencies. This auto-updated the required version of Go to 1.24, consistent with the fact that Go 1.23 has been out of support for almost six months.

v2.28.0

Compare Source

2.28.0

Ginkgo's SemVer filter now supports filtering multiple components by SemVer version:

It("should work in a specific version range (1.0.0, 2.0.0) and third-party dependency redis in [8.0.0, ~)", SemVerConstraint(">= 3.2.0"), ComponentSemVerConstraint("redis", ">= 8.0.0") func() {
    // This test will only run when version is between 1.0.0 (exclusive) and 2.0.0 (exclusive) and redis version is >= 8.0.0
})

can be filtered in or out with an invocation like:

ginkgo --sem-ver-filter="2.1.1, redis=8.2.0"

Huge thanks to @​Icarus9913 for working on this!

onsi/gomega (github.com/onsi/gomega)

v1.42.1

Compare Source

1.42.1

Bump Dependencies

v1.42.0

Compare Source

1.42.0

Add a set of Claude skill as a marketplace plugin

v1.41.0

Compare Source

v1.40.0

Compare Source

1.40.0

We're adopting a new release strategy to minimize dependency bloat in projects that consume Gomega. It is a limitation of the go mod toolchain that test subdependencies of your project's direct dependencies get pulled in as indirect dependencies. In the case of Gomega, this ends up pulling in all of Ginkgo into your go.mod even if you are only using Gomega (Gomega uses Ginkgo for its own tests).

Going forward, releases will strip out all tests, tidy up the go.mod and then push this stripped down version to a new master-lite branch. These stripped-down versions will receive the vx.y.z git tag and will be picked up by the go toolchain.

Please open an issue if this new release process causes unexpected changes for your projects.

v1.39.1

Compare Source

1.39.1

Update all dependencies. This auto-updated the required version of Go to 1.24, consistent with the fact that Go 1.23 has been out of support for almost six months.

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

golang/go (go)

v1.26.5

v1.26.4

v1.26.3

v1.26.2

v1.26.1

v1.26.0

v1.25.12

v1.25.11

v1.25.10

v1.25.9

v1.25.8

v1.25.7

kubernetes/api (k8s.io/api)

v0.36.3

Compare Source

v0.36.2

Compare Source

v0.36.1

Compare Source

v0.36.0

Compare Source

v0.35.7

Compare Source

v0.35.6

Compare Source

v0.35.5

Compare Source

v0.35.4

Compare Source

v0.35.3

Compare Source

v0.35.2

Compare Source

v0.35.1

Compare Source

kubernetes/apimachinery (k8s.io/apimachinery)

v0.36.3

Compare Source

v0.36.2

Compare Source

v0.36.1

Compare Source

v0.36.0

Compare Source

v0.35.7

Compare Source

v0.35.6

Compare Source

v0.35.5

Compare Source

v0.35.4

Compare Source

v0.35.3

Compare Source

v0.35.2

Compare Source

v0.35.1

Compare Source

kubernetes/client-go (k8s.io/client-go)

v0.36.3

Compare Source

v0.36.2

Compare Source

v0.36.1

Compare Source

v0.36.0

[Compare Source](https://redirect.github.com/kubernetes/c

Note

PR body was truncated to here.


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 commented Mar 27, 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):

  • 29 additional dependencies were updated

Details:

Package Change
github.com/emicklei/go-restful/v3 v3.12.2 -> v3.13.0
github.com/fatih/color v1.18.0 -> v1.19.0
github.com/fsnotify/fsnotify v1.9.0 -> v1.10.0
github.com/fxamacker/cbor/v2 v2.9.0 -> v2.9.1
github.com/go-openapi/jsonpointer v0.21.0 -> v0.23.1
github.com/go-openapi/jsonreference v0.20.2 -> v0.21.5
github.com/go-openapi/swag v0.23.0 -> v0.26.0
github.com/google/gnostic-models v0.7.0 -> v0.7.1
github.com/google/pprof v0.0.0-20250820193118-f64d9cf942d6 -> v0.0.0-20260402051712-545e8a4df936
github.com/mattn/go-colorable v0.1.13 -> v0.1.14
github.com/prometheus/common v0.66.1 -> v0.70.1
github.com/prometheus/procfs v0.16.1 -> v0.21.1
go.uber.org/zap v1.27.0 -> v1.27.1
go.yaml.in/yaml/v2 v2.4.3 -> v2.4.4
golang.org/x/mod v0.31.0 -> v0.37.0
golang.org/x/net v0.48.0 -> v0.57.0
golang.org/x/oauth2 v0.30.0 -> v0.36.0
golang.org/x/sync v0.19.0 -> v0.22.0
golang.org/x/sys v0.39.0 -> v0.47.0
golang.org/x/term v0.38.0 -> v0.45.0
golang.org/x/text v0.32.0 -> v0.40.0
golang.org/x/time v0.9.0 -> v0.15.0
golang.org/x/tools v0.40.0 -> v0.47.0
google.golang.org/protobuf v1.36.8 -> v1.36.12-0.20260120151049-f2248ac996af
k8s.io/apiextensions-apiserver v0.35.0 -> v0.36.0
k8s.io/klog/v2 v2.130.1 -> v2.140.0
k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912 -> v0.0.0-20260427204847-8949caaa1199
k8s.io/utils v0.0.0-20251002143259-bc988d571ff4 -> v0.0.0-20260319190234-28399d86e0b5
sigs.k8s.io/structured-merge-diff/v6 v6.3.0 -> v6.4.0

renovate-approve[bot]
renovate-approve Bot previously approved these changes Mar 27, 2026
@renovate
renovate Bot force-pushed the renovate/minor-deps-golang branch from 9912151 to 749646d Compare April 7, 2026 07:10
@renovate
renovate Bot force-pushed the renovate/minor-deps-golang branch from 749646d to d800012 Compare April 7, 2026 21:14
renovate-approve[bot]
renovate-approve Bot previously approved these changes Apr 7, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Apr 22, 2026
@renovate
renovate Bot force-pushed the renovate/minor-deps-golang branch from b5fa74b to d30ba9c Compare April 25, 2026 20:56
@renovate
renovate Bot force-pushed the renovate/minor-deps-golang branch from d30ba9c to 42234f9 Compare April 27, 2026 04:56
renovate-approve[bot]
renovate-approve Bot previously approved these changes Apr 27, 2026
@renovate
renovate Bot force-pushed the renovate/minor-deps-golang branch from f896db2 to f87983f Compare April 27, 2026 11:00
@renovate
renovate Bot force-pushed the renovate/minor-deps-golang branch from f87983f to 0994260 Compare April 29, 2026 00:30
renovate-approve[bot]
renovate-approve Bot previously approved these changes Apr 29, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Apr 30, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes May 6, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes May 7, 2026
@renovate
renovate Bot force-pushed the renovate/minor-deps-golang branch from fe9a61e to 11b8a11 Compare June 11, 2026 20:59
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jun 11, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jun 12, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jun 12, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jun 14, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jun 16, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jun 17, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jun 18, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jun 19, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jun 20, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jun 20, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jun 22, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jun 23, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jun 24, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jun 24, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jul 7, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jul 9, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jul 10, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jul 14, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jul 15, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jul 17, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jul 17, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jul 20, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jul 23, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jul 24, 2026
renovate-approve[bot]
renovate-approve Bot previously approved these changes Jul 28, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants