Skip to content

🌱 Update Update Golang Dependencies group (minor) #228

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

cluster-stack-bot[bot]
Copy link
Contributor

@cluster-stack-bot cluster-stack-bot bot commented Feb 6, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
github.com/gophercloud/gophercloud/v2 v2.4.0 -> v2.7.0 age adoption passing confidence require minor
github.com/onsi/ginkgo/v2 v2.22.2 -> v2.23.4 age adoption passing confidence require minor
github.com/onsi/gomega v1.36.2 -> v1.37.0 age adoption passing confidence require minor
go (source) 1.23.5 -> 1.24.2 age adoption passing confidence toolchain minor
sigs.k8s.io/cluster-api-provider-openstack v0.11.4 -> v0.12.3 age adoption passing confidence require minor

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

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

v2.7.0

Compare Source

What's Changed

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

v2.6.0

Compare Source

What's Changed

Full Changelog: gophercloud/gophercloud@v2.5.0...v2.6.0

v2.5.0

Compare Source

What's Changed

Full Changelog: gophercloud/gophercloud@v2.4.0...v2.5.0

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

v2.23.4

Compare Source

2.23.4

Prior to this release Ginkgo would compute the incorrect number of available CPUs when running with -p in a linux container. Thanks to @​emirot for the fix!

Features
  • Add automaxprocs for using CPUQuota [2b9c428]
Fixes
  • clarify gotchas about -vet flag [1f59d07]
Maintenance

v2.23.3

Compare Source

2.23.3

Fixes
  • allow - as a standalone argument [cfcc1a5]
  • Bug Fix: Add GinkoTBWrapper.Chdir() and GinkoTBWrapper.Context() [feaf292]
  • ignore exit code for symbol test on linux [88e2282]

v2.23.2

Compare Source

2.23.2

🎉🎉🎉

At long last, some long-standing performance gaps between ginkgo and go test have been resolved!

Ginkgo operates by running go test -c to generate test binaries, and then running those binaries. It turns out that the compilation step of go test -c is slower than go test's compilation step because go test strips out debug symbols (ldflags=-w) whereas go test -c does not.

Ginkgo now passes the appropriate ldflags to go test -c when running specs to strip out symbols. This is only done when it is safe to do so and symbols are preferred when profiling is enabled and when ginkgo build is called explicitly.

This, coupled, with the instructions for disabling XProtect on MacOS yields a much better performance experience with Ginkgo.

v2.23.1

Compare Source

2.23.1

🚨 For users on MacOS 🚨

A long-standing Ginkgo performance issue on MacOS seems to be due to mac's antimalware XProtect. You can follow the instructions here to disable it in your terminal. Doing so sped up Ginkgo's own test suite from 1m8s to 47s.

Fixes

Ginkgo's CLI is now a bit clearer if you pass flags in incorrectly:

  • make it clearer that you need to pass a filename to the various profile flags, not an absolute directory [a0e52ff]
  • emit an error and exit if the ginkgo invocation includes flags after positional arguments [b799d8d]

This might cause existing CI builds to fail. If so then it's likely that your CI build was misconfigured and should be corrected. Open an issue if you need help.

v2.23.0

Compare Source

2.23.0

Ginkgo 2.23.0 adds a handful of methods to GinkgoT() to make it compatible with the testing.TB interface in Go 1.24. GinkgoT().Context(), in particular, is a useful shorthand for generating a new context that will clean itself up in a DeferCleanup(). This has subtle behavior differences from the golang implementation but should make sense in a Ginkgo... um... context.

Features
  • bump to go 1.24.0 - support new testing.TB methods and add a test to cover testing.TB regressions [37a511b]
Fixes
  • fix edge case where build -o is pointing at an explicit file, not a directory [7556a86]
  • Fix binary paths when precompiling multiple suites. [4df06c6]
Maintenance
onsi/gomega (github.com/onsi/gomega)

v1.37.0

Compare Source

1.37.0

Features
  • add To/ToNot/NotTo aliases for AsyncAssertion [5666f98]

v1.36.3

Compare Source

1.36.3

Maintenance
kubernetes-sigs/cluster-api-provider-openstack (sigs.k8s.io/cluster-api-provider-openstack)

v0.12.3

Compare Source

Changes since v0.12.2

🐛 Bug Fixes

  • fix openstackserver controller concurrency (#​2503)

🌱 Others

  • Bump net to v0.38.0 (#​2527)
  • (deps): Bump the all-go-mod-patch-and-minor group across 2 directories with 9 updates (#​2525)
  • (deps): bump softprops/action-gh-release from 2.2.1 to 2.2.2 in the all-github-actions group (#​2522)
  • (deps): Bump the all-go-mod-patch-and-minor group across 2 directories with 2 updates (#​2515)
  • (deps): Bump the all-go-mod-patch-and-minor group across 2 directories with 5 updates (#​2510)
  • (deps): Bump the all-go-mod-patch-and-minor group across 2 directories with 4 updates (#​2496)
  • (deps): Bump the all-github-actions group with 2 updates (#​2494)

Thanks to all our contributors! 😊

v0.12.2

Compare Source

Changes since v0.12.1

🐛 Bug Fixes

  • Do not delete bastion floating ip if set in spec (#​2484)
  • OpenStackServer controller: minor log message fix (#​2483)
  • Dereference the instance state in machine state reconcile calls (#​2467)
  • Don't set OSMachine Ready until all config is complete (#​2480)
  • Fix panic when OpenStack server is deleted by an external agent (#​2477)
  • Allow modification of all ManagedSecurityGroups (#​2465)

🌱 Others

  • Bumps to newer versions of go modules.
  • Bump golangci-lint to support go1.24 (#​2449)

Thanks to all our contributors! 😊

v0.12.1

Compare Source

Changes since v0.12.0

Requiring Go 1.23.4 was too aggressive, some projects which have CAPO in their go.mod weren't ready. A best practice is to use 1.23.0 which we did.

🌱 Changes

  • go.mod: stick to 1.23.0 (#​2425)
  • data: use latest Flatcar stable from image-builder (#​2420)

Thanks to all our contributors! 😊

v0.12.0

Compare Source

Changes since v0.11

⚠️ Breaking Changes

✨ New Features

🐛 Bug Fixes

  • Stop printing InstanceState for OpenStackMachine (#​2406)
  • Ensure that existing ports also have correct tags and trunks (#​2394)
  • fix: create lbaas in specified subnet (#​2339)
  • New IPAddressClaim.ObjectMeta.Labels nil map assign panic (#​2352)
  • ci/devstack: host tuning (#​2307)
  • Better checks before creating Floating IPs (#​2261)
  • Requeue when waiting for a server to be deleted (#​2254)
  • Drop caBundle from CRDs to support Kubernetes 1.31 (#​2238)
  • Fix support for OpenStackMachine.Spec.SecurityGroups (#​2237)
  • Fix conversion of v1alpha6 PortOpts (#​2207)
  • port/cleanup: support old bastion port name (#​2409)

🌱 Others

  • k8s deps to v1.31.x
  • CAPI to v1.9.x
  • controller-runtime to 0.19.x
  • golang 1.23.4
  • E2E: Collect console log from machines (#​2368)
  • Conformance: Fix warnings (#​2357)
  • E2E: Use CAPI production images and skip cert-manager pre-pull (#​2295)
  • Add libvirt resource type for create_devstack.sh (#​2262)

📖 Additionally, there have been 3 contributions to our documentation and book. (#​2376, #​2296, #​2268)

Thanks to all our contributors! 😊

v0.11.6

Compare Source

Changes since v0.11.5

🐛 Bug Fixes

  • fix openstackserver controller concurrency (#​2504)

🌱 Others

  • (deps): bump softprops/action-gh-release from 2.2.1 to 2.2.2 in the all-github-actions group (#​2521)
  • (deps): Bump the all-go-mod-patch-and-minor group across 3 directories with 2 updates (#​2513)
  • (deps): Bump the all-go-mod-patch-and-minor group across 2 directories with 1 update (#​2509)
  • (deps): Bump the all-go-mod-patch-and-minor group across 2 directories with 2 updates (#​2499)
  • (deps): Bump the all-github-actions group with 2 updates (#​2492)

Thanks to all our contributors! 😊

v0.11.5

Compare Source

Changes since v0.11.4

🐛 Bug Fixes

  • fix: dereference the instance state in machine state reconcile calls (#​2466)
  • Ensure that existing ports also have correct tags and trunks (#​2396)
  • port/cleanup: support old bastion port name (#​2410)

🌱 Others

  • Bumps to newer versions of go modules.
  • Bump golangci-lint to support go1.24 (#​2451)

Thanks to all our contributors! 😊


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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

@cluster-stack-bot
Copy link
Contributor Author

cluster-stack-bot bot commented Feb 6, 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):

  • 21 additional dependencies were updated

Details:

Package Change
k8s.io/api v0.30.9 -> v0.31.8
k8s.io/apimachinery v0.30.9 -> v0.31.8
k8s.io/client-go v0.30.9 -> v0.31.8
sigs.k8s.io/cluster-api v1.8.8 -> v1.9.7
sigs.k8s.io/controller-runtime v0.18.7 -> v0.19.7
github.com/google/go-cmp v0.6.0 -> v0.7.0
github.com/google/pprof v0.0.0-20241210010833-40e02aabc2ad -> v0.0.0-20250403155104-27863c87afa6
github.com/prometheus/client_golang v1.20.5 -> v1.22.0
github.com/prometheus/common v0.55.0 -> v0.62.0
github.com/spf13/pflag v1.0.5 -> v1.0.6
golang.org/x/crypto v0.32.0 -> v0.37.0
golang.org/x/mod v0.22.0 -> v0.24.0
golang.org/x/net v0.33.0 -> v0.38.0
golang.org/x/sync v0.10.0 -> v0.13.0
golang.org/x/sys v0.29.0 -> v0.32.0
golang.org/x/term v0.28.0 -> v0.31.0
golang.org/x/text v0.21.0 -> v0.24.0
golang.org/x/tools v0.28.0 -> v0.31.0
google.golang.org/protobuf v1.36.1 -> v1.36.5
k8s.io/apiextensions-apiserver v0.30.9 -> v0.31.8
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 -> v4.5.0

@cluster-stack-bot cluster-stack-bot bot changed the title 🌱 Update Golang Dependencies group to v0.12.0 🌱 Update Update Golang Dependencies group (minor) Feb 12, 2025
@cluster-stack-bot cluster-stack-bot bot added the size/XXL Denotes a PR that changes 2000+ lines, ignoring generated files. label Feb 12, 2025
@cluster-stack-bot cluster-stack-bot bot force-pushed the renovate/golang-deps branch 3 times, most recently from c784ddb to 68ea2bc Compare March 6, 2025 11:15
@cluster-stack-bot cluster-stack-bot bot force-pushed the renovate/golang-deps branch 4 times, most recently from d2984ae to 002d33d Compare March 22, 2025 11:15
@cluster-stack-bot cluster-stack-bot bot force-pushed the renovate/golang-deps branch 4 times, most recently from 81529d0 to 896645d Compare April 7, 2025 11:16
| datasource     | package                                    | from    | to      |
| -------------- | ------------------------------------------ | ------- | ------- |
| go             | github.com/gophercloud/gophercloud/v2      | v2.4.0  | v2.7.0  |
| go             | github.com/onsi/ginkgo/v2                  | v2.22.2 | v2.23.4 |
| go             | github.com/onsi/gomega                     | v1.36.2 | v1.37.0 |
| golang-version | go                                         | 1.23.5  | 1.24.2  |
| go             | sigs.k8s.io/cluster-api-provider-openstack | v0.11.4 | v0.12.3 |
@cluster-stack-bot cluster-stack-bot bot force-pushed the renovate/golang-deps branch from 896645d to ec4c959 Compare April 30, 2025 11:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
size/XXL Denotes a PR that changes 2000+ lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant