Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 29, 2025

Bumps the all-go-mod-patch-and-minor group with 2 updates in the / directory: github.com/gophercloud/gophercloud/v2 and github.com/onsi/ginkgo/v2.
Bumps the all-go-mod-patch-and-minor group with 2 updates in the /hack/tools directory: github.com/gophercloud/gophercloud/v2 and github.com/onsi/ginkgo/v2.

Updates github.com/gophercloud/gophercloud/v2 from 2.7.0 to 2.8.0

Release notes

Sourced from github.com/gophercloud/gophercloud/v2's releases.

v2.8.0

What's Changed

... (truncated)

Changelog

Sourced from github.com/gophercloud/gophercloud/v2's changelog.

v2.8.0 (2025-08-18)

  • GH-3348 [v2] [networking] add ExtractRoutersInto func helper to routers
  • GH-3354 [v2] Fix a small typo
  • GH-3358 [v2] tests: fix devstack master branch tests
  • GH-3361 [v2] octavia: fix http_version type to float
  • GH-3362 [v2] tests: fix containerinfra template creation
  • GH-3367 [v2] Use Makefile for CI jobs
  • GH-3375 [v2] core: add missing Builder interfaces
  • GH-3378 [v2] tests: fix failing rabbitmq service
  • GH-3379 [v2] CI: Remove Bobcat
  • GH-3384 [v2] Move master CI jobs to Ubuntu 24.04
  • GH-3386 [v2] tests: Fix TestBGPAgentCRUD
  • GH-3387 [v2] Update the doc of openstack.AuthOptionsFromEnv function
  • GH-3389 [v2] networking: add constants for statuses
  • GH-3391 [v2] CI: Add Epoxy
  • GH-3393 [v2] dns: implement shared zones list
  • GH-3394 [v2] acceptance: Prevent 409 when bulk-creating secgroup rules
  • GH-3396 [v2] identity: add support for string boolean in users' enabled member
  • GH-3397 [v2] Adjust List func to accept a Builder in tenants, routers and security groups packages
  • GH-3399 [v2] blockstorage: add manage-existing and unmanage api call
  • GH-3401 [v2] Added address groups to Networking extensions, with tests.
  • GH-3407 [v2] neutron: add segment_id support to subnets
  • GH-3413 [v2] build(deps): bump joelanford/go-apidiff from 0.8.2 to 0.8.3
  • GH-3416 [v2] tests: bump devstack-action
  • GH-3422 [v2] Fix documentation for gateway_ip in subnet update
  • GH-3431 [v2] Use container-infra for OpenStack-API-Version
  • GH-3433 [v2] make: Use fixed version of gotestsum
  • GH-3434 [v2] Randomize test order for unit tests
  • GH-3435 [v2] Add versioned endpoint discovery
  • GH-3438 [v2] dns: add support for /v2/quotas
  • GH-3439 [v2] neutron: add segments extension package
  • GH-3446 nova: add support for hostname updates
  • GH-3452 [v2] neutron: allow omission of subnet_id for IP address
  • GH-3454 [v2] blockstorage: add isPublic query option for volume types
  • GH-3458 [v2] Fix pagination for messaging client
  • GH-3465 [v2] tests: Fix TestVLANTransparentCRUD test
  • GH-3466 [v2] tests: fix tests for recent PR backports
  • GH-3469 [v2] tests: shorten GH-A job names
  • GH-3473 [v2] core: clone service type aliases instead of referencing global slice
  • GH-3475 [v2] Implement update & delete traits on resource provider
  • GH-3476 [v2] tests: fix volumetypes unit tests
  • GH-3477 [v2] script: Improve getenvvar helper
  • GH-3481 [v2] Implement hypervisors.GetExt: Get with Query parameter
  • GH-3487 [v2] Add networking taas tapmirror suite
  • GH-3489 [v2] Fix incorrect ICMP field description in PortRangeMax comment
  • GH-3494 [v2] Networking v2: Support two time formats for subnet, router, SG rule (#3492)
  • GH-3495 [v2] build(deps): bump actions/checkout from 4 to 5
Commits
  • 0f5d6e5 Merge pull request #3419 from shiftstack/prepare_v2.8.0
  • 45ade0d Prepare v2.8.0
  • 6332fe9 Merge pull request #3487 from gophercloud/bp-v2-38c1bca-bc9ccfa-2c6c60b
  • 60e11d4 Merge pull request #3435 from shiftstack/endpoint-discovery-v2
  • 5c06870 Use expected signature for NextPageURL
  • 41d5eaf Merge pull request #3495 from gophercloud/bp-v2-eecd1a9
  • 3a27e4f Merge pull request #3494 from gophercloud/bp-v2-e852df2
  • 21c9bf4 build(deps): bump actions/checkout from 4 to 5
  • 03e6262 Networking v2: Support two time formats for subnet, router, SG rules (#3492)
  • 425325d Merge pull request #3489 from gophercloud/bp-v2-440ef87
  • Additional commits viewable in compare view

Updates github.com/onsi/ginkgo/v2 from 2.24.0 to 2.25.2

Release notes

Sourced from github.com/onsi/ginkgo/v2's releases.

v2.25.2

2.25.2

Fixes

Add github output group for progress report content

Maintenance

Bump Gomega

v2.25.1

2.25.1

Fixes

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

v2.25.0

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.

Changelog

Sourced from github.com/onsi/ginkgo/v2's changelog.

2.25.2

Fixes

Add github output group for progress report content

Maintenance

Bump Gomega

2.25.1

Fixes

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

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.

Commits

Updates github.com/onsi/gomega from 1.38.0 to 1.38.2

Release notes

Sourced from github.com/onsi/gomega's releases.

v1.38.2

1.38.2

  • roll back to go 1.23.0 [c404969]

v1.38.1

1.38.1

Fixes

Numerous minor fixes and dependency bumps

Changelog

Sourced from github.com/onsi/gomega's changelog.

1.38.2

  • roll back to go 1.23.0 [c404969]

1.38.1

Fixes

Numerous minor fixes and dependency bumps

Commits

Updates github.com/gophercloud/gophercloud/v2 from 2.7.0 to 2.8.0

Release notes

Sourced from github.com/gophercloud/gophercloud/v2's releases.

v2.8.0

What's Changed

... (truncated)

Changelog

Sourced from github.com/gophercloud/gophercloud/v2's changelog.

v2.8.0 (2025-08-18)

  • GH-3348 [v2] [networking] add ExtractRoutersInto func helper to routers
  • GH-3354 [v2] Fix a small typo
  • GH-3358 [v2] tests: fix devstack master branch tests
  • GH-3361 [v2] octavia: fix http_version type to float
  • GH-3362 [v2] tests: fix containerinfra template creation
  • GH-3367 [v2] Use Makefile for CI jobs
  • GH-3375 [v2] core: add missing Builder interfaces
  • GH-3378 [v2] tests: fix failing rabbitmq service
  • GH-3379 [v2] CI: Remove Bobcat
  • GH-3384 [v2] Move master CI jobs to Ubuntu 24.04
  • GH-3386 [v2] tests: Fix TestBGPAgentCRUD
  • GH-3387 [v2] Update the doc of openstack.AuthOptionsFromEnv function
  • GH-3389 [v2] networking: add constants for statuses
  • GH-3391 [v2] CI: Add Epoxy
  • GH-3393 [v2] dns: implement shared zones list
  • GH-3394 [v2] acceptance: Prevent 409 when bulk-creating secgroup rules
  • GH-3396 [v2] identity: add support for string boolean in users' enabled member
  • GH-3397 [v2] Adjust List func to accept a Builder in tenants, routers and security groups packages
  • GH-3399 [v2] blockstorage: add manage-existing and unmanage api call
  • GH-3401 [v2] Added address groups to Networking extensions, with tests.
  • GH-3407 [v2] neutron: add segment_id support to subnets
  • GH-3413 [v2] build(deps): bump joelanford/go-apidiff from 0.8.2 to 0.8.3
  • GH-3416 [v2] tests: bump devstack-action
  • GH-3422 [v2] Fix documentation for gateway_ip in subnet update
  • GH-3431 [v2] Use container-infra for OpenStack-API-Version
  • GH-3433 [v2] make: Use fixed version of gotestsum
  • GH-3434 [v2] Randomize test order for unit tests
  • GH-3435 [v2] Add versioned endpoint discovery
  • GH-3438 [v2] dns: add support for /v2/quotas
  • GH-3439 [v2] neutron: add segments extension package
  • GH-3446 nova: add support for hostname updates
  • GH-3452 [v2] neutron: allow omission of subnet_id for IP address
  • GH-3454 [v2] blockstorage: add isPublic query option for volume types
  • GH-3458 [v2] Fix pagination for messaging client
  • GH-3465 [v2] tests: Fix TestVLANTransparentCRUD test
  • GH-3466 [v2] tests: fix tests for recent PR backports
  • GH-3469 [v2] tests: shorten GH-A job names
  • GH-3473 [v2] core: clone service type aliases instead of referencing global slice
  • GH-3475 [v2] Implement update & delete traits on resource provider
  • GH-3476 [v2] tests: fix volumetypes unit tests
  • GH-3477 [v2] script: Improve getenvvar helper
  • GH-3481 [v2] Implement hypervisors.GetExt: Get with Query parameter
  • GH-3487 [v2] Add networking taas tapmirror suite
  • GH-3489 [v2] Fix incorrect ICMP field description in PortRangeMax comment
  • GH-3494 [v2] Networking v2: Support two time formats for subnet, router, SG rule (#3492)
  • GH-3495 [v2] build(deps): bump actions/checkout from 4 to 5
Commits
  • 0f5d6e5 Merge pull request #3419 from shiftstack/prepare_v2.8.0
  • 45ade0d Prepare v2.8.0
  • 6332fe9 Merge pull request #3487 from gophercloud/bp-v2-38c1bca-bc9ccfa-2c6c60b
  • 60e11d4 Merge pull request #3435 from shiftstack/endpoint-discovery-v2
  • 5c06870 Use expected signature for NextPageURL
  • 41d5eaf Merge pull request #3495 from gophercloud/bp-v2-eecd1a9
  • 3a27e4f Merge pull request #3494 from gophercloud/bp-v2-e852df2
  • 21c9bf4 build(deps): bump actions/checkout from 4 to 5
  • 03e6262 Networking v2: Support two time formats for subnet, router, SG rules (#3492)
  • 425325d Merge pull request #3489 from gophercloud/bp-v2-440ef87
  • Additional commits viewable in compare view

Updates github.com/onsi/ginkgo/v2 from 2.24.0 to 2.25.2

Release notes

Sourced from github.com/onsi/ginkgo/v2's releases.

v2.25.2

2.25.2

Fixes

Add github output group for progress report content

Maintenance

Bump Gomega

v2.25.1

2.25.1

Fixes

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

v2.25.0

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.

Changelog

Sourced from github.com/onsi/ginkgo/v2's changelog.

2.25.2

Fixes

Add github output group for progress report content

Maintenance

Bump Gomega

2.25.1

Fixes

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

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.

Commits

Updates github.com/onsi/gomega from 1.38.0 to 1.38.2

Release notes

Sourced from github.com/onsi/gomega's releases.

v1.38.2

1.38.2

  • roll back to go 1.23.0 [c404969]

v1.38.1

1.38.1

Fixes

Numerous minor fixes and dependency bumps

Changelog

Sourced from github.com/onsi/gomega's changelog.

1.38.2

  • roll back to go 1.23.0 [c404969]

1.38.1

Fixes

Numerous minor fixes and dependency bumps

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • `@dependabot ignore <dependency name...

Description has been truncated

…es with 3 updates

Bumps the all-go-mod-patch-and-minor group with 2 updates in the / directory: [github.com/gophercloud/gophercloud/v2](https://github.com/gophercloud/gophercloud) and [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo).
Bumps the all-go-mod-patch-and-minor group with 2 updates in the /hack/tools directory: [github.com/gophercloud/gophercloud/v2](https://github.com/gophercloud/gophercloud) and [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo).


Updates `github.com/gophercloud/gophercloud/v2` from 2.7.0 to 2.8.0
- [Release notes](https://github.com/gophercloud/gophercloud/releases)
- [Changelog](https://github.com/gophercloud/gophercloud/blob/v2.8.0/CHANGELOG.md)
- [Commits](gophercloud/gophercloud@v2.7.0...v2.8.0)

Updates `github.com/onsi/ginkgo/v2` from 2.24.0 to 2.25.2
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](onsi/ginkgo@v2.24.0...v2.25.2)

Updates `github.com/onsi/gomega` from 1.38.0 to 1.38.2
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](onsi/gomega@v1.38.0...v1.38.2)

Updates `github.com/gophercloud/gophercloud/v2` from 2.7.0 to 2.8.0
- [Release notes](https://github.com/gophercloud/gophercloud/releases)
- [Changelog](https://github.com/gophercloud/gophercloud/blob/v2.8.0/CHANGELOG.md)
- [Commits](gophercloud/gophercloud@v2.7.0...v2.8.0)

Updates `github.com/onsi/ginkgo/v2` from 2.24.0 to 2.25.2
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](onsi/ginkgo@v2.24.0...v2.25.2)

Updates `github.com/onsi/gomega` from 1.38.0 to 1.38.2
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](onsi/gomega@v1.38.0...v1.38.2)

---
updated-dependencies:
- dependency-name: github.com/gophercloud/gophercloud/v2
  dependency-version: 2.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/onsi/ginkgo/v2
  dependency-version: 2.25.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/onsi/gomega
  dependency-version: 1.38.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/gophercloud/gophercloud/v2
  dependency-version: 2.8.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/onsi/ginkgo/v2
  dependency-version: 2.25.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go-mod-patch-and-minor
- dependency-name: github.com/onsi/gomega
  dependency-version: 1.38.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all-go-mod-patch-and-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added area/dependency Issues or PRs related to dependency changes ok-to-test Indicates a non-member PR verified by an org member that is safe to test. labels Aug 29, 2025
Copy link

netlify bot commented Aug 29, 2025

Deploy Preview for kubernetes-sigs-cluster-api-openstack ready!

Name Link
🔨 Latest commit 44ed8f3
🔍 Latest deploy log https://app.netlify.com/projects/kubernetes-sigs-cluster-api-openstack/deploys/68b1616a09f7b90008ac08dc
😎 Deploy Preview https://deploy-preview-2674--kubernetes-sigs-cluster-api-openstack.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@k8s-ci-robot k8s-ci-robot added the cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. label Aug 29, 2025
@k8s-ci-robot
Copy link
Contributor

Hi @dependabot[bot]. Thanks for your PR.

I'm waiting for a kubernetes-sigs member to verify that this patch is reasonable to test. If it is, they should reply with /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work. Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository.

@k8s-ci-robot k8s-ci-robot added the size/M Denotes a PR that changes 30-99 lines, ignoring generated files. label Aug 29, 2025
@lentzi90
Copy link
Contributor

This should fix #2584 since we get the new gophercloud version

Copy link
Contributor

@lentzi90 lentzi90 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

/approve
/lgtm

@k8s-ci-robot k8s-ci-robot added the lgtm "Looks good to me", indicates that a PR is ready to be merged. label Aug 29, 2025
@k8s-ci-robot
Copy link
Contributor

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: lentzi90

The full list of commands accepted by this bot can be found here.

The pull request process is described here

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@k8s-ci-robot k8s-ci-robot added the approved Indicates a PR has been approved by an approver from all required OWNERS files. label Aug 29, 2025
@lentzi90
Copy link
Contributor

/retitle 🌱(deps): Bump gophercloud to v2.8.0, ginkgo to 2.25.2, gomega to 1.38.2

@k8s-ci-robot k8s-ci-robot changed the title 🌱(deps): Bump the all-go-mod-patch-and-minor group across 2 directories with 3 updates 🌱(deps): Bump gophercloud to v2.8.0, ginkgo to 2.25.2, gomega to 1.38.2 Aug 29, 2025
@lentzi90
Copy link
Contributor

/test pull-cluster-api-provider-openstack-e2e-test

@k8s-ci-robot k8s-ci-robot merged commit d278b9b into main Aug 29, 2025
10 checks passed
@k8s-ci-robot k8s-ci-robot deleted the dependabot/go_modules/main/all-go-mod-patch-and-minor-87dd1b73da branch August 29, 2025 09:51
@github-project-automation github-project-automation bot moved this from Inbox to Done in CAPO Roadmap Aug 29, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

approved Indicates a PR has been approved by an approver from all required OWNERS files. area/dependency Issues or PRs related to dependency changes cncf-cla: yes Indicates the PR's author has signed the CNCF CLA. lgtm "Looks good to me", indicates that a PR is ready to be merged. ok-to-test Indicates a non-member PR verified by an org member that is safe to test. size/M Denotes a PR that changes 30-99 lines, ignoring generated files.

Projects

Status: Done

Development

Successfully merging this pull request may close these issues.

2 participants