Merged
Conversation
746d194 to
961388b
Compare
Upgrades: - golang.org/x/crypto: 0.38.0 -> 0.45.0 - golang.org/x/sync: 0.14.0 -> 0.18.0 - golang.org/x/sys: 0.33.0 -> 0.38.0 - golang.org/x/term: 0.32.0 -> 0.37.0 - golang.org/x/mod: 0.24.0 -> 0.29.0 - golang.org/x/net: 0.40.0 -> 0.47.0 - golang.org/x/text: 0.25.0 -> 0.31.0 - golang.org/x/tools: 0.33.0 -> 0.38.0 Replaces dependabot PR #2565.
Security update addressing: - GHSA-pwhc-rpq9-4c8w - GHSA-m6hq-p25p-ffr2 - GHSA-qw9x-cqr3-wc7r (runc) - GHSA-cgrx-mc8f-2prm (runc) - GHSA-9493-h29p-rfm2 (runc) Also pulls in golang.org/x/exp and golang.org/x/time updates. Replaces dependabot PR #2561.
Also upgrades related AWS SDK dependencies: - github.com/aws/aws-sdk-go-v2: 1.36.3 -> 1.39.4 - github.com/aws/smithy-go: 1.22.3 -> 1.23.1 Replaces dependabot PR #2556.
Updated test files to use DockerOCIImageConfig instead of container.Config for image.InspectResponse.Config field, matching the API change in docker/docker v28.4.0+.
- Replace client.IsErrNotFound with errdefs.IsNotFound (containerd/errdefs) - Remove deprecated auth.Email field (deprecated since docker 1.11) - Add nolint for NetworkSettingsBase (Ports field moving to NetworkSettings in docker v29)
94f3b36 to
70a9f31
Compare
tempusfrangit
approved these changes
Feb 9, 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.
Manually batching a few upgrades that were choking dependabot..........
Dependency Updates
golang.org/x/*
Replaces #2565.
containerd: 2.0.5 → 2.0.7
Security update addressing GHSA-pwhc-rpq9-4c8w, GHSA-m6hq-p25p-ffr2, GHSA-qw9x-cqr3-wc7r (runc), GHSA-cgrx-mc8f-2prm (runc), GHSA-9493-h29p-rfm2 (runc). Also pulls in golang.org/x/exp and golang.org/x/time updates.
Replaces #2561.
AWS SDK S3: 1.79.3 → 1.88.7
Replaces #2556.
docker/cli: 28.3.0 → 28.5.2, docker/docker: 28.1.1 → 28.5.2
Breaking change:
image.InspectResponse.Configtype changed from*container.Configto*dockerspec.DockerOCIImageConfigin docker v28.4.0+. Updated all usages (mock_command.go, model package tests).Additional fixes for deprecated APIs:
client.IsErrNotFoundwitherrdefs.IsNotFound(containerd/errdefs)auth.Emailfield (deprecated since docker 1.11)NetworkSettingsBase(Ports field moving to NetworkSettings in docker v29)Replaces #2551 and #2518.