Skip to content

Renovate: Update External dependencies#46

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

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

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jun 20, 2025

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
github.com/go-logr/logr v1.4.2v1.4.3 age adoption passing confidence require patch
github.com/goccy/go-yaml v1.17.1v1.19.2 age adoption passing confidence require minor
github.com/gophercloud/gophercloud/v2 v2.7.0v2.10.0 age adoption passing confidence require minor
github.com/onsi/ginkgo/v2 v2.23.4v2.28.1 age adoption passing confidence require minor
github.com/onsi/gomega v1.37.0v1.39.1 age adoption passing confidence require minor
k8s.io/api v0.33.0v0.33.9 age adoption passing confidence require patch
k8s.io/apimachinery v0.33.1v0.33.9 age adoption passing confidence require patch
k8s.io/client-go v0.33.0v0.33.9 age adoption passing confidence require patch
kubernetes-sigs/controller-tools 0.18.00.20.1 age adoption passing confidence minor
kubernetes-sigs/kustomize 5.6.05.8.1 age adoption passing confidence minor
sigs.k8s.io/controller-runtime v0.20.4v0.23.1 age adoption passing confidence require minor

Release Notes

go-logr/logr (github.com/go-logr/logr)

v1.4.3

Compare Source

Minor release.

What's Changed

New Contributors

Full Changelog: go-logr/logr@v1.4.2...v1.4.3

goccy/go-yaml (github.com/goccy/go-yaml)

v1.19.2: 1.19.2

Compare Source

What's Changed

New Contributors

Full Changelog: goccy/go-yaml@v1.19.1...v1.19.2

v1.19.1: 1.19.1

Compare Source

What's Changed

Full Changelog: goccy/go-yaml@v1.19.0...v1.19.1

v1.19.0: 1.19.0

Compare Source

What's Changed

New Contributors

Full Changelog: goccy/go-yaml@v1.18.0...v1.19.0

v1.18.0: 1.18.0

Compare Source

What's Changed

New Contributors

Full Changelog: goccy/go-yaml@v1.17.1...v1.18.0

gophercloud/gophercloud (github.com/gophercloud/gophercloud/v2)

v2.10.0

Compare Source

What's Changed

Full Changelog: gophercloud/gophercloud@v2.9.0...v2.10.0

v2.9.0

Compare Source

What's Changed

Full Changelog: gophercloud/gophercloud@v2.8.0...v2.9.0

v2.8.0

Compare Source

What's Changed

Full Changelog: gophercloud/gophercloud@v2.7.0...v2.8.0

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

v1.38.0

Compare Source

1.38.0

Features
  • gstruct handles extra unexported fields [4ee7ed0]
Fixes
  • support [] in IgnoringTopFunction function signatures (#​851) [36bbf72]
Maintenance
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

v0.33.3

Compare Source

v0.33.2

Compare Source

v0.33.1

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

v0.33.3

Compare Source

v0.33.2

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

v0.33.3

Compare Source

v0.33.2

Compare Source

v0.33.1

Compare Source

kubernetes-sigs/controller-tools (kubernetes-sigs/controller-tools)

v0.20.1

Compare Source

What's Changed

Full Changelog: kubernetes-sigs/controller-tools@v0.20.0...v0.20.1

v0.20.0

Compare Source

What's Changed

Misc

envtest

Dependency bumps


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 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
Copy link
Contributor Author

renovate bot commented Jun 20, 2025

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

  • 16 additional dependencies were updated

Details:

Package Change
k8s.io/utils v0.0.0-20250502105355-0f33e8f1c979 -> v0.0.0-20250604170112-4c0f3b243397
github.com/emicklei/go-restful/v3 v3.12.1 -> v3.12.2
github.com/fsnotify/fsnotify v1.8.0 -> v1.9.0
github.com/fxamacker/cbor/v2 v2.7.0 -> v2.9.0
github.com/google/gnostic-models v0.6.9 -> v0.7.0
github.com/modern-go/reflect2 v1.0.2 -> v1.0.3-0.20250322232337-35a7c28c31ee
github.com/prometheus/client_golang v1.20.5 -> v1.22.0
golang.org/x/sync v0.12.0 -> v0.16.0
golang.org/x/sys v0.32.0 -> v0.35.0
golang.org/x/term v0.30.0 -> v0.34.0
golang.org/x/text v0.23.0 -> v0.28.0
golang.org/x/tools v0.31.0 -> v0.36.0
google.golang.org/protobuf v1.36.5 -> v1.36.7
k8s.io/apiextensions-apiserver v0.32.1 -> v0.34.1
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff -> v0.0.0-20250710124328-f3f2b991d03b
sigs.k8s.io/yaml v1.4.0 -> v1.6.0

@renovate renovate bot force-pushed the renovate/external-dependencies branch 2 times, most recently from d22b131 to 0d173b5 Compare July 3, 2025 19:07
@renovate renovate bot force-pushed the renovate/external-dependencies branch from 0d173b5 to 7e02fb2 Compare July 10, 2025 22:21
@renovate renovate bot force-pushed the renovate/external-dependencies branch 2 times, most recently from 448f6d9 to 984bf4c Compare July 17, 2025 19:05
@renovate renovate bot force-pushed the renovate/external-dependencies branch 2 times, most recently from 4b540eb to e9e28d9 Compare July 23, 2025 19:05
@renovate renovate bot force-pushed the renovate/external-dependencies branch 5 times, most recently from c0bb49a to 5b60e4c Compare August 13, 2025 04:32
@renovate renovate bot force-pushed the renovate/external-dependencies branch 5 times, most recently from 77c12d3 to 6a318f7 Compare August 21, 2025 19:02
@renovate renovate bot force-pushed the renovate/external-dependencies branch 5 times, most recently from 04fa918 to bbbf4c3 Compare August 28, 2025 19:04
@renovate renovate bot force-pushed the renovate/external-dependencies branch 4 times, most recently from 6858de2 to 0018c98 Compare December 4, 2025 19:03
@renovate renovate bot force-pushed the renovate/external-dependencies branch from 0018c98 to d8d7e82 Compare December 8, 2025 16:14
@renovate
Copy link
Contributor Author

renovate bot commented Dec 10, 2025

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

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

Details:

Package Change
go 1.24.0 -> 1.25.0
k8s.io/utils v0.0.0-20250502105355-0f33e8f1c979 -> v0.0.0-20251002143259-bc988d571ff4
github.com/emicklei/go-restful/v3 v3.12.1 -> v3.12.2
github.com/fsnotify/fsnotify v1.8.0 -> v1.9.0
github.com/fxamacker/cbor/v2 v2.7.0 -> v2.9.0
github.com/google/gnostic-models v0.6.9 -> v0.7.0
github.com/google/pprof v0.0.0-20250403155104-27863c87afa6 -> v0.0.0-20260115054156-294ebfa9ad83
github.com/modern-go/reflect2 v1.0.2 -> v1.0.3-0.20250322232337-35a7c28c31ee
github.com/prometheus/client_golang v1.20.5 -> v1.23.2
github.com/prometheus/client_model v0.6.1 -> v0.6.2
github.com/prometheus/common v0.62.0 -> v0.66.1
github.com/prometheus/procfs v0.15.1 -> v0.16.1
github.com/spf13/pflag v1.0.6 -> v1.0.9
golang.org/x/net v0.38.0 -> v0.49.0
golang.org/x/oauth2 v0.27.0 -> v0.30.0
golang.org/x/sync v0.12.0 -> v0.19.0
golang.org/x/tools v0.31.0 -> v0.41.0
google.golang.org/protobuf v1.36.5 -> v1.36.8
gopkg.in/evanphx/json-patch.v4 v4.12.0 -> v4.13.0
k8s.io/apiextensions-apiserver v0.32.1 -> v0.35.0
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff -> v0.0.0-20250910181357-589584f1c912
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 -> v0.0.0-20250730193827-2d320260d730
sigs.k8s.io/yaml v1.4.0 -> v1.6.0

@renovate renovate bot force-pushed the renovate/external-dependencies branch 3 times, most recently from 89b10d6 to 97e6077 Compare December 18, 2025 15:37
@renovate renovate bot force-pushed the renovate/external-dependencies branch from 97e6077 to 881c721 Compare December 18, 2025 19:06
@renovate renovate bot force-pushed the renovate/external-dependencies branch 4 times, most recently from 7177c01 to 4722312 Compare January 12, 2026 22:47
@renovate renovate bot force-pushed the renovate/external-dependencies branch 2 times, most recently from 8b55490 to 4949e4f Compare January 19, 2026 20:26
@renovate renovate bot force-pushed the renovate/external-dependencies branch 2 times, most recently from 68afae4 to 70b6b00 Compare January 30, 2026 06:47
@renovate renovate bot force-pushed the renovate/external-dependencies branch 4 times, most recently from 0224214 to 2042d82 Compare February 9, 2026 19:57
@renovate renovate bot force-pushed the renovate/external-dependencies branch 4 times, most recently from 97ff2f9 to 0a39c2f Compare February 19, 2026 23:07
@renovate renovate bot force-pushed the renovate/external-dependencies branch 2 times, most recently from 884738b to 6a507bb Compare February 28, 2026 10:03
@renovate renovate bot force-pushed the renovate/external-dependencies branch from 6a507bb to 100f3f9 Compare February 28, 2026 14:18
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.

3 participants