Skip to content

Bump github.com/docker/cli from 27.5.0+incompatible to 29.2.0+incompatible#8

Open
dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/go_modules/github.com/docker/cli-29.2.0incompatible
Open

Bump github.com/docker/cli from 27.5.0+incompatible to 29.2.0+incompatible#8
dependabot[bot] wants to merge 1 commit into
developfrom
dependabot/go_modules/github.com/docker/cli-29.2.0incompatible

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Mar 5, 2026

Copy link
Copy Markdown

Bumps github.com/docker/cli from 27.5.0+incompatible to 29.2.0+incompatible.

Commits
  • 0b9d198 Merge pull request #6764 from vvoland/update-docker
  • 9c9ec73 vendor: github.com/moby/moby/client v0.2.2
  • bab3e81 vendor: github.com/moby/moby/api v1.53.0
  • 2e64fc1 Merge pull request #6367 from thaJeztah/template_slicejoin
  • 1f2ba2a Merge pull request #6760 from thaJeztah/container_create_fix_error
  • e34a342 templates: make "join" work with non-string slices and map values
  • a86356d Merge pull request #6763 from thaJeztah/bump_mapstructure
  • 771660a vendor: github.com/go-viper/mapstructure/v2 v2.5.0
  • 9cff36b Merge pull request #6762 from thaJeztah/bump_x_deps
  • 08ed2bc cli/command/container: make injecting config.json failures a warning
  • Additional commits viewable in compare view

Dependabot compatibility score

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [github.com/docker/cli](https://github.com/docker/cli) from 27.5.0+incompatible to 29.2.0+incompatible.
- [Commits](docker/cli@v27.5.0...v29.2.0)

---
updated-dependencies:
- dependency-name: github.com/docker/cli
  dependency-version: 29.2.0+incompatible
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Mar 5, 2026
nobiit pushed a commit that referenced this pull request Mar 20, 2026
nobiit pushed a commit that referenced this pull request Jun 13, 2026
…o#12892)

* Added KubeVirt live migration test cases on KIND cluster

* Address review feedback for KubeVirt KIND e2e tests

- Rename wait* helpers to expect* and add GinkgoHelper() so failures
  attribute to the caller's line
- Replace self-skip with Fail and use Feature:KubeVirt-KIND tag
- Remove redundant logrus summary lines (By() already logs steps)
- Remove redundant migration phase re-check after expectMigrationSuccess
- Fix Expect messages to describe the check, not the cause
- Move IPAM owner promotion test to ip_persistence.go (common test)
- Remove unused requireOperatorManagedCluster helper
- Tag ip_persistence suite with both KubeVirt and KubeVirt-KIND features

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* Add Semaphore CI job for KubeVirt live migration e2e on KIND

Add the Semaphore block and e2e config to run KubeVirt-KIND tests in CI.
The job creates a KIND cluster, deploys MockVirt (KubeVirt simulation
mode), and runs e2e tests filtered by Feature:KubeVirt-KIND.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* Address PR projectcalico#12892 review feedback

- Replace Feature:KubeVirt-KIND with RequiresRealKubeVirt requirement label
  so KIND lane includes Feature:KubeVirt and excludes RequiresRealKubeVirt
  instead of double-tagging tests with two features (Casey #1).
- Add back isKINDCluster guards with explicit failure messages explaining
  why the test cannot run on KIND (Casey #2).
- Split live_migration_kind.go: move helpers (kindBIRDPeer, setupKindEBGPPeering,
  expectMigrationFailed) into utils.go, keep only test suite in the file (Casey #3).
- Use existing WithExternalNode() label instead of RequiresExternalNode()
  to avoid duplicate labels with same semantics (skoryk #7).
- Move WithSerial() from describe block to eBGP It only — other tests
  are namespace-scoped and parallel-safe (skoryk #8).
- Add nil guard for net.ParseIP().To4() in querySnapshot and
  queryTORSnapshot to prevent panic on malformed/IPv6 input (skoryk projectcalico#9).
- Remove duplicate NetworkPolicy test from live_migration.go — the KIND
  ICMP version provides equivalent coverage without requiring a real
  guest OS (skoryk projectcalico#10).
- Randomize BIRD container name with GenerateRandomName to prevent
  collisions on parallel runs (skoryk projectcalico#11).
- Change queryWorkerMetric to return (int, error) so failures surface
  the real cause instead of hiding it behind a -1 sentinel (skoryk projectcalico#13).
- Add non-go:/e2e/pkg/ to CHANGE_IN macro so test file changes trigger
  the KubeVirt KIND CI lane (skoryk projectcalico#14).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

* Decouple KubeVirt e2e tests from KIND: extract BGP utilities, rename to MockVirt

Extract shared BIRD/BGP peer utilities from kubevirt test utils into a
reusable e2e/pkg/utils/bgp package with a BIRDPeer interface implemented
by both ContainerBIRDPeer (local Docker) and SSHBIRDPeer (SSH external
node). Rename KIND-specific references to MockVirt where they refer to
simulated KubeVirt, replace isKINDCluster with isMockVirtDeployed using
the dynamic client to check the KubeVirt CR simulationMode field, and
decouple the BIRD container lifecycle from test code by reading the
container name from BIRD_BGPPEER_CONTAINER_NAME env var. Add BIRD
container setup to the Semaphore CI pipeline.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

---------

Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants