Skip to content

Renovate: Update External dependencies#19

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/external-dependencies
Open

Renovate: Update External dependencies#19
renovate[bot] wants to merge 1 commit intomainfrom
renovate/external-dependencies

Conversation

@renovate
Copy link

@renovate renovate bot commented Sep 19, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/go-openapi/runtime v0.28.0v0.29.3 age adoption passing confidence
github.com/go-openapi/strfmt v0.23.0v0.26.0 age adoption passing confidence
github.com/onsi/ginkgo/v2 v2.23.4v2.28.1 age adoption passing confidence
github.com/onsi/gomega v1.38.0v1.39.1 age adoption passing confidence
k8s.io/api v0.33.3v0.33.9 age adoption passing confidence
k8s.io/apimachinery v0.33.3v0.33.9 age adoption passing confidence
k8s.io/client-go v0.33.3v0.33.9 age adoption passing confidence
sigs.k8s.io/cluster-api v1.10.4v1.12.3 age adoption passing confidence
sigs.k8s.io/controller-runtime v0.21.0v0.23.3 age adoption passing confidence

Release Notes

go-openapi/runtime (github.com/go-openapi/runtime)

v0.29.3

Compare Source

0.29.3 - 2026-03-08

Full Changelog: go-openapi/runtime@v0.29.2...v0.29.3

27 commits in this release.


Fixed bugs
Documentation
Code quality
Miscellaneous tasks
Updates

People who contributed to this release

New Contributors

runtime license terms

License

Per-module changes


client-middleware/opentracing (0.29.3)

Documentation
Code quality
Miscellaneous tasks

v0.29.2

Compare Source

v0.29.1

Compare Source

v0.29.0

Compare Source

go-openapi/strfmt (github.com/go-openapi/strfmt)

v0.26.0

Compare Source

0.26.0 - 2026-03-07

Dropped mongodb dependency - Kept backward-compatibility

Full Changelog: go-openapi/strfmt@v0.25.0...v0.26.0

43 commits in this release.


Documentation
Code quality
Testing
Miscellaneous tasks
Updates
Other

People who contributed to this release

New Contributors

strfmt license terms

License

Per-module changes


enable/mongodb (0.26.0)

Miscellaneous tasks

internal/testintegration (0.26.0)

Code quality
Testing
Miscellaneous tasks
Updates
Other
  • Add MongoDB integration tests for all strfmt BSON types by @​Copilot in #​215 ...
  • Upgrade integration tests to mongo-driver v2 and go mod tidy by @​Copilot ...
  • Add MongoDB integration tests with testintegration build tag and CI workflow by @​Copilot ...

v0.25.0

Compare Source

v0.24.0

Compare Source

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

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!

v2.27.5

Compare Source

2.27.5

Fixes

Don't make a new formatter for each GinkgoT(); that's just silly and uses precious memory

v2.27.4

Compare Source

2.27.4

Fixes
  • CurrentTreeConstructionNodeReport: fix for nested container nodes [59bc751]

v2.27.3

Compare Source

2.27.3

Fixes

report exit result in case of failure [1c9f356]
fix data race [ece19c8]

v2.27.2

Compare Source

2.27.2

Fixes
  • inline automaxprocs to simplify dependencies; this will be removed when Go 1.26 comes out [a69113a]
Maintenance
  • Fix syntax errors and typo [a99c6e0]
  • Fix paragraph position error [f993df5]

v2.27.1

Compare Source

2.27.1

Fixes
  • Fix Ginkgo Reporter slice-bounds panic [606c1cb]
  • Bug Fix: Add GinkoTBWrapper.Attr() and GinkoTBWrapper.Output() [a6463b3]

v2.27.0

Compare Source

2.27.0

Features
Transforming Nodes during Tree Construction

This release adds support for NodeArgsTransformers that can be registered with AddTreeConstructionNodeArgsTransformer.

These are called during the tree construction phase as nodes are constructed and can modify the node strings and decorators. This enables frameworks built on top of Ginkgo to modify Ginkgo nodes and enforce conventions.

Learn more here.

Spec Prioritization

A new SpecPriority(int) decorator has been added. Ginkgo will honor priority when ordering specs, ensuring that higher priority specs start running before lower priority specs

Learn more here.

Maintenance

v2.26.0

Compare Source

2.26.0

Features

Ginkgo can now generate json-formatted reports that are compatible with the go test json format. Use ginkgo --gojson-report=report.go.json. This is not intended to be a replacement for Ginkgo's native json format which is more information rich and better models Ginkgo's test structure semantics.

v2.25.3

Compare Source

2.25.3

Fixes
  • emit --github-output group only for progress report itself [f01aed1]

v2.25.2

Compare Source

2.25.2

Fixes

Add github output group for progress report content

Maintenance

Bump Gomega

v2.25.1

Compare Source

2.25.1

Fixes
  • fix(types): ignore nameless nodes on FullText() [10866d3]
  • chore: fix some CodeQL warnings [2e42cff]

v2.25.0

Compare Source

2.25.0

AroundNode

This release introduces a new decorator to support more complex spec setup usecases.

AroundNode registers a function that runs before each individual node. This is considered a more advanced decorator.

Please read the docs for more information and some examples.

Allowed signatures:

  • AroundNode(func()) - func will be called before the node is run.
  • AroundNode(func(ctx context.Context) context.Context) - func can wrap the passed in context and return a new one which will be passed on to the node.
  • AroundNode(func(ctx context.Context, body func(ctx context.Context))) - ctx is the context for the node and body is a function that must be called to run the node. This gives you complete control over what runs before and after the node.

Multiple AroundNode decorators can be applied to a single node and they will run in the order they are applied.

Unlike setup nodes like BeforeEach and DeferCleanup, AroundNode is guaranteed to run in the same goroutine as the decorated node. This is necessary when working with lower-level libraries that must run on a single thread (you can call runtime.LockOSThread() in the AroundNode to ensure that the node runs on a single thread).

Since AroundNode allows you to modify the context you can also use AroundNode to implement shared setup that attaches values to the context.

If applied to a container, AroundNode will run before every node in the container. Including setup nodes like BeforeEach and DeferCleanup.

AroundNode can also be applied to RunSpecs to run before every node in the suite. This opens up new mechanisms for instrumenting individual nodes across an entire suite.

v2.24.0

Compare Source

2.24.0

Features

Specs can now be decorated with (e.g.) SemVerConstraint("2.1.0") and ginkgo --sem-ver-filter="2.1.1" will only run constrained specs that match the requested version. Learn more in the docs here! Thanks to @​Icarus9913 for the PR.

Fixes
Maintenance

Numerous dependency bumps and documentation fixes

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

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.

v1.39.0

Compare Source

1.39.0

Features

Add MatchErrorStrictly which only passes if errors.Is(actual, expected) returns true. MatchError, by contrast, will fallback to string comparison.

v1.38.3

Compare Source

1.38.3

Fixes

make string formatitng more consistent for users who use format.Object directly

v1.38.2

Compare Source

1.38.2

v1.38.1

Compare Source

1.38.1

Fixes

Numerous minor fixes and dependency bumps

kubernetes/api (k8s.io/api)

v0.33.9

Compare Source

v0.33.8

Compare Source

v0.33.7

Compare Source

v0.33.6

Compare Source

v0.33.5

Compare Source

v0.33.4

Compare Source

kubernetes/apimachinery (k8s.io/apimachinery)

v0.33.9

Compare Source

v0.33.8

Compare Source

v0.33.7

Compare Source

v0.33.6

Compare Source

v0.33.5

Compare Source

v0.33.4

Compare Source

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

v0.33.9

Compare Source

v0.33.8

Compare Source

v0.33.7

Compare Source

v0.33.6

Compare Source

v0.33.5

Compare Source

v0.33.4

Compare Source

kubernetes-sigs/cluster-api (sigs.k8s.io/cluster-api)

v1.12.3

Compare Source

👌 Kubernetes version support

  • Management Cluster: v1.31.x -> v1.35.x
  • Workload Cluster: v1.29.x -> v1.35.x

More information about version support can be found here

Changes since v1.12.2

📈 Overview

  • 7 new commits merged
  • 1 feature addition ✨
  • 2 bugs fixed 🐛

✨ New Features

  • KCP: Bump coredns/corefile-migration to v1.0.30 (#​13294)

🐛 Bug Fixes

  • e2e: Add wait-resource-versions-{become,remain}-stable intervals to e2e config (#​13328)
  • Misc: Fix bug while setting status for deprecated fields (#​13344)

🌱 Others

  • clusterctl: Update cert-manager to v1.19.3 (#​13314)
  • clusterctl: Update to cert-manager v1.19.2 (#​13278)
  • Dependency: Go bump 1.24.13 (#​13324)

📖 Additionally, there has been 1 contribution to our documentation and book. (#​13261)

Dependencies

Added

Nothing has changed.

Changed
Removed

Nothing has changed.

Thanks to all our contributors! 😊

v1.12.2

Compare Source

👌 Kubernetes version support

  • Management Cluster: v1.31.x -> v1.35.x
  • Workload Cluster: v1.29.x -> v1.35.x

More information about version support can be found here

Changes since v1.12.1

📈 Overview

  • 14 new commits merged
  • 4 bugs fixed 🐛

🐛 Bug Fixes

  • API: Fix v1beta1 ControlPlane contract to handle .status.initialized correctly (#​13188)
  • ClusterClass: Allow adding spec via ClusterClass JSON patches (#​13226)
  • Runtime SDK: Improve client cert/key rotation of the RuntimeSDK client (#​13217)
  • Testing: Fix webhook envtest tests for Kubernetes < v1.35 (#​13172)

🌱 Others

  • CI: Use env test 1.35.0 (#​13169)
  • ClusterClass: Improve topology diff (#​13173)
  • Dependency: Bump Go to v1.24.12 (#​13241)
  • Dependency: Bump to controller-runtime v0.22.5 (#​13246)
  • KCP: Remove the ControlPlaneKubeletLocalMode for kubeadm 1.36 later (#​13211)
  • MachineHealthCheck: Decrease verbosity for MHC log entry (#​13203)

📖 Additionally, there have been 4 contributions to our documentation and book. (#​13197, #​13198, #​13208, #​13219)

Dependencies

Added

Nothing has changed.

Changed
  • k8s.io/api: v0.34.2 → v0.34.3
  • k8s.io/apiextensions-apiserver: v0.34.2 → v0.34.3
  • k8s.io/apimachinery: v0.34.2 → v0.34.3
  • k8s.io/apiserver: v0.34.2 → v0.34.3
  • k8s.io/client-go: v0.34.2 → v0.34.3
  • k8s.io/code-generator: v0.34.2 → v0.34.3
  • k8s.io/component-base: v0.34.2 → v0.34.3
  • k8s.io/kms: v0.34.2 → v0.34.3
  • sigs.k8s.io/controller-runtime: v0.22.4 → v0.22.5
Removed

Nothing has changed.

Thanks to all our contributors! 😊

v1.12.1

Compare Source

👌 Kubernetes version support

  • Management Cluster: v1.31.x -> v1.35.x
  • Workload Cluster: v1.29.x -> v1.35.x

More information about version support can be found here

Highlights

  • Support for Kubernetes v1.35

Changes since v1.12.0

📈 Overview

  • 8 new commits merged
  • 1 bug fixed 🐛

🐛 Bug Fixes

  • KCP/MachineSet: Preserve existing object names for backward compatibility with pre-v1.7 in-place updates (#​13147)

🌱 Others

  • CI: Bump Kubernetes version used for testing to v1.35.0-rc.1 (#​13139)
  • e2e: Bump kind to v0.31.0 (#​13163)
  • e2e: Bump Kubernetes version used for testing to v1.35.0 (#​13161)
  • e2e: Bump to etcd-v3.6.6-0 (#​13145)

📖 Additionally, there have been 3 contributions to our documentation and book. (#​13141, #​13154, #​13160)

Dependencies

Added

Nothing has changed.

Changed

Nothing has changed.

Removed

Nothing has changed.

Thanks to all our contributors! 😊

v1.12.0

Compare Source

👌 Kubernetes version support

  • Management Cluster: v1.31.x -> v1.34.x
  • Workload Cluster: v1.29.x -> v1.34.x

More information about version support can be found here

Highlights

  • Bumped to Go 1.24, controller-runtime v0.22, k8s.io/* v0.34, controller-gen v0.19
  • In-place updates
    • Cluster API introduces support for update extensions allowing users to execute changes on existing machines without deleting the machines and creating a new one.
    • Both KCP and Machine deployments support in-place updates based on the new update extension
    • Can be enabled with the new InPlaceUpdates feature gate
    • More details can be found in the [proposal]

Configuration

📅 Schedule: Branch creation - "before 8am on Friday" (UTC), 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
Copy link
Author

renovate bot commented Sep 19, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: go get -t ./...
go: downloading k8s.io/apimachinery v0.35.0
go: downloading k8s.io/client-go v0.35.0
go: downloading sigs.k8s.io/cluster-api v1.12.3
go: downloading sigs.k8s.io/controller-runtime v0.23.3
go: downloading k8s.io/api v0.35.0
go: downloading github.com/onsi/ginkgo/v2 v2.28.1
go: downloading github.com/onsi/gomega v1.39.1
go: downloading github.com/ghodss/yaml v1.0.0
go: downloading github.com/go-logr/logr v1.4.3
go: downloading github.com/go-openapi/runtime v0.29.3
go: downloading github.com/go-openapi/strfmt v0.26.0
go: downloading github.com/sapcc/kubernikus v1.0.1-0.20250731130919-ba31cf88de9b
go: downloading k8s.io/klog/v2 v2.130.1
go: downloading k8s.io/kube-openapi v0.0.0-20250910181357-589584f1c912
go: downloading sigs.k8s.io/structured-merge-diff/v6 v6.3.2-0.20260122202528-d9cc6641c482
go: downloading github.com/go-logr/zapr v1.3.0
go: downloading go.uber.org/zap v1.27.1
go: downloading github.com/prometheus/client_golang v1.23.2
go: downloading k8s.io/utils v0.0.0-20251002143259-bc988d571ff4
go: downloading sigs.k8s.io/randfill v1.0.0
go: downloading github.com/spf13/pflag v1.0.10
go: downloading golang.org/x/term v0.40.0
go: downloading github.com/blang/semver/v4 v4.0.0
go: downloading github.com/pkg/errors v0.9.1
go: downloading github.com/evanphx/json-patch/v5 v5.9.11
go: downloading github.com/google/go-cmp v0.7.0
go: downloading github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822
go: downloading golang.org/x/net v0.50.0
go: downloading k8s.io/apiextensions-apiserver v0.35.0
go: downloading sigs.k8s.io/yaml v1.6.0
go: downloading gopkg.in/yaml.v2 v2.4.0
go: downloading github.com/go-openapi/errors v0.22.7
go: downloading github.com/go-openapi/swag v0.23.1
go: downloading github.com/go-openapi/swag/fileutils v0.25.5
go: downloading github.com/go-openapi/swag/jsonutils v0.25.5
go: downloading github.com/go-openapi/swag/stringutils v0.25.5
go: downloading golang.org/x/sync v0.19.0
go: downloading github.com/go-viper/mapstructure/v2 v2.5.0
go: downloading github.com/google/uuid v1.6.0
go: downloading github.com/oklog/ulid v1.3.1
go: downloading github.com/oklog/ulid/v2 v2.1.1
go: downloading github.com/go-openapi/validate v0.25.2
go: downloading k8s.io/apiserver v0.35.0
go: downloading sigs.k8s.io/json v0.0.0-20250730193827-2d320260d730
go: downloading github.com/json-iterator/go v1.1.12
go: downloading go.yaml.in/yaml/v2 v2.4.3
go: downloading golang.org/x/oauth2 v0.33.0
go: downloading go.uber.org/multierr v1.11.0
go: downloading github.com/prometheus/client_model v0.6.2
go: downloading github.com/prometheus/common v0.66.1
go: downloading github.com/fsnotify/fsnotify v1.9.0
go: downloading gopkg.in/inf.v0 v0.9.1
go: downloading golang.org/x/sys v0.41.0
go: downloading k8s.io/cluster-bootstrap v0.34.2
go: downloading github.com/Masterminds/semver/v3 v3.4.0
go: downloading github.com/Masterminds/semver v1.5.0
go: downloading go.yaml.in/yaml/v3 v3.0.4
go: downloading github.com/fxamacker/cbor/v2 v2.9.0
go: downloading golang.org/x/time v0.11.0
go: downloading github.com/go-openapi/swag/typeutils v0.25.5
go: downloading golang.org/x/text v0.34.0
go: downloading go.opentelemetry.io/otel v1.41.0
go: downloading go.opentelemetry.io/otel/trace v1.41.0
go: downloading github.com/mailru/easyjson v0.9.0
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading github.com/go-openapi/analysis v0.24.3
go: downloading github.com/go-openapi/jsonpointer v0.22.5
go: downloading github.com/go-openapi/loads v0.23.3
go: downloading github.com/go-openapi/spec v0.22.4
go: downloading github.com/go-openapi/swag/conv v0.25.5
go: downloading k8s.io/component-base v0.35.0
go: downloading github.com/google/cel-go v0.26.0
go: downloading google.golang.org/genproto/googleapis/api v0.0.0-20250303144028-a0af3efb3deb
go: downloading github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: downloading github.com/modern-go/reflect2 v1.0.3-0.20250322232337-35a7c28c31ee
go: downloading gomodules.xyz/jsonpatch/v2 v2.5.0
go: downloading github.com/beorn7/perks v1.0.1
go: downloading github.com/cespare/xxhash/v2 v2.3.0
go: downloading github.com/prometheus/procfs v0.16.1
go: downloading google.golang.org/protobuf v1.36.8
go: downloading github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
go: downloading github.com/emicklei/go-restful/v3 v3.13.0
go: downloading github.com/go-openapi/jsonreference v0.21.5
go: downloading github.com/google/gnostic-models v0.7.0
go: downloading github.com/google/btree v1.1.3
go: downloading github.com/go-task/slim-sprig/v3 v3.0.0
go: downloading golang.org/x/tools v0.41.0
go: downloading github.com/x448/float16 v0.8.4
go: downloading go.opentelemetry.io/otel/metric v1.41.0
go: downloading github.com/josharian/intern v1.0.0
go: downloading github.com/go-openapi/swag/mangling v0.25.5
go: downloading github.com/go-openapi/swag/jsonname v0.25.5
go: downloading github.com/go-openapi/swag/loading v0.25.5
go: downloading github.com/go-openapi/swag/yamlutils v0.25.5
go: downloading cel.dev/expr v0.24.0
go: downloading google.golang.org/genproto/googleapis/rpc v0.0.0-20250528174236-200df99c418a
go: downloading github.com/google/pprof v0.0.0-20260115054156-294ebfa9ad83
go: downloading github.com/go-logr/stdr v1.2.2
go: downloading go.opentelemetry.io/auto/sdk v1.2.1
go: downloading github.com/stoewer/go-strcase v1.3.0
go: downloading github.com/antlr4-go/antlr/v4 v4.13.0
go: downloading github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2
go: downloading gopkg.in/evanphx/json-patch.v4 v4.13.0
go: downloading golang.org/x/mod v0.32.0
go: downloading golang.org/x/exp v0.0.0-20240719175910-8a7402abbf56
go: downloading github.com/spf13/cobra v1.10.1
go: downloading github.com/inconshreveable/mousetrap v1.1.0
go: github.com/sapcc/cluster-api-control-plane-provider-kubernikus imports
	sigs.k8s.io/cluster-api/api/v1beta1: cannot find module providing package sigs.k8s.io/cluster-api/api/v1beta1

@renovate renovate bot force-pushed the renovate/external-dependencies branch 2 times, most recently from 841c99a to b54f903 Compare October 3, 2025 14:48
@renovate renovate bot force-pushed the renovate/external-dependencies branch 3 times, most recently from 3bf9ceb to 1d30260 Compare October 10, 2025 23:53
@renovate renovate bot force-pushed the renovate/external-dependencies branch from 1d30260 to d222e45 Compare October 15, 2025 20:12
@renovate renovate bot force-pushed the renovate/external-dependencies branch from d222e45 to a2ffee1 Compare October 25, 2025 19:34
@renovate renovate bot force-pushed the renovate/external-dependencies branch 2 times, most recently from 82d021e to 21b6fb4 Compare November 8, 2025 23:46
@renovate renovate bot force-pushed the renovate/external-dependencies branch from 21b6fb4 to 0ae1630 Compare November 15, 2025 16:16
@renovate renovate bot force-pushed the renovate/external-dependencies branch 2 times, most recently from f071c93 to 7c1ede1 Compare December 10, 2025 08:00
@renovate renovate bot force-pushed the renovate/external-dependencies branch from 7c1ede1 to 616b3cd Compare December 18, 2025 16:13
@renovate renovate bot force-pushed the renovate/external-dependencies branch 2 times, most recently from a2bf05a to ebbf1c5 Compare January 14, 2026 08:10
@renovate renovate bot force-pushed the renovate/external-dependencies branch 3 times, most recently from a75f978 to babbd6b Compare January 20, 2026 19:48
@renovate renovate bot force-pushed the renovate/external-dependencies branch 2 times, most recently from 63aa42e to 27857f2 Compare January 30, 2026 12:17
@renovate renovate bot force-pushed the renovate/external-dependencies branch 2 times, most recently from cd2ee68 to d137dd6 Compare February 11, 2026 19:40
@renovate renovate bot force-pushed the renovate/external-dependencies branch 2 times, most recently from 68f8ad9 to 62f2532 Compare February 25, 2026 13:22
@renovate renovate bot force-pushed the renovate/external-dependencies branch from 62f2532 to 6449c03 Compare March 1, 2026 12:09
@renovate renovate bot force-pushed the renovate/external-dependencies branch from 6449c03 to 9d593dd Compare March 8, 2026 07:48
@renovate renovate bot force-pushed the renovate/external-dependencies branch from 9d593dd to ad553a4 Compare March 14, 2026 20:42
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.

4 participants