chore(deps): bump docker stack + azblob to latest compatible - #2150
Merged
Conversation
Coordinated bump to land four superseded Dependabot PRs (#2147 docker/cli, #2144 buildkit, #1984 containerd, #1812 buildx) together with matching docker/docker, docker/compose/v2, and Azure azblob versions, since each PR alone fails to build against the unbumped siblings. Code changes: - pkg/azure/azure.go: rewrite for azblob v1.x (blockblob subpackage). - airflow/container.go: DockerComposeAPI now embeds api.Compose (was api.Service, renamed upstream). DockerRegistryAPI embeds client.APIClient (was deprecated CommonAPIClient). - airflow/docker.go: drop deprecated execConfig.Detach; compare semver error via errors.Is(err, semver.ErrInvalidSemVer) instead of string match (Masterminds/semver v3.4.0 lowercased the message). - airflow/docker_test.go: docker_types.IDResponse -> container.ExecCreateResponse. - software/deployment/deployment_test.go: update expected semver error case. - Regenerated airflow/mocks/* for the new interface signatures.
Coverage Report for CI Build 0Coverage decreased (-0.1%) to 39.651%Details
Uncovered Changes
Coverage RegressionsNo coverage regressions found. Coverage Stats
💛 - Coveralls |
jeremybeard
marked this pull request as ready for review
May 19, 2026 17:13
jlaneve
approved these changes
May 19, 2026
karankhanchandani
approved these changes
May 22, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
docker/cli,docker/docker,docker/buildx,moby/buildkit,containerd(→ /v2),docker/compose/v2, andAzure/azure-sdk-for-go/sdk/storage/azblobjointly. Each of these has open Dependabot PRs that fail to build alone because the libs share APIs that drifted in sync; landing the matching set together. Closes chore(deps): bump github.com/docker/cli from 27.4.0+incompatible to 29.2.0+incompatible #2147, chore(deps): bump github.com/moby/buildkit from 0.18.1 to 0.28.1 #2144, Bump github.com/containerd/containerd from 1.7.27 to 1.7.29 #1984, Bump github.com/docker/buildx from 0.19.2 to 0.21.3 #1812.pkg/azure/azure.gofor the new azblob v1.x API (blockblob.NewClientWithNoCredential).DockerComposeAPItoapi.ComposeandDockerRegistryAPItoclient.APIClient(upstream renames).err.Error() == "Invalid Semantic Version"witherrors.Is(err, semver.ErrInvalidSemVer)— Masterminds/semver v3.4.0 lowercased the message.execConfig.Detach; updatesdocker_types.IDResponsetocontainer.ExecCreateResponse.Test plan