go.mod: bump github.com/docker/docker, docker/ci v28.5.0-dev #13093
+24
−4
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.
Testing the transitional "v28.5" release, which updates the v28.x
version to migrate to the new moby/api and moby/client modules.
testing;
in this variant, buildx has not been updated, and no local changes were made to either compose or buildx. Without this transitional package, compose fails to build if other dependencies (buildx in this case) have not transitioned to the new modules;
This variant aliases the old API package to the new module, so the API package only contains aliases (except for some things that should be pinned);
tree vendor/github.com/docker/docker/api vendor/github.com/docker/docker/api ├── README.md ├── common.go ├── swagger-gen.yaml ├── swagger.yaml └── types ├── aliases.go ├── auxprogress │ └── aliases.go ├── blkiodev │ └── aliases.go ├── build │ └── aliases.go ├── checkpoint │ └── aliases.go ├── common │ └── aliases.go ├── container │ └── aliases.go ├── events │ └── aliases.go ├── filters │ └── aliases.go ├── image │ └── aliases.go ├── mount │ └── aliases.go ├── network │ └── aliases.go ├── registry │ └── aliases.go ├── swarm │ └── aliases.go ├── system │ └── aliases.go ├── time │ └── aliases.go ├── types_deprecated.go ├── versions │ └── aliases.go └── volume └── aliases.go
Under the hood, it's already using the new module (
github.com/moby/moby/api
);tree -d vendor/github.com/moby/moby/api vendor/github.com/moby/moby/api ├── stdcopy └── types ├── auxprogress ├── blkiodev ├── build ├── checkpoint ├── common ├── container ├── events ├── filters ├── image ├── mount ├── network ├── registry ├── storage ├── strslice ├── swarm │ └── runtime ├── system ├── time ├── versions └── volume
(I'm using vendoring purely to show / illustrate what's used)
What I did
Related issue
(not mandatory) A picture of a cute animal, if possible in relation to what you did