-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Comparing changes
Open a pull request
base repository: docker/cli
base: v28.5.0-rc.1
head repository: docker/cli
compare: v28.5.0
- 19 commits
- 24 files changed
- 4 contributors
Commits on Sep 25, 2025
-
vendor: github.com/docker/docker v28.5.0-rc.1
full diff: moby/moby@d21856f...v28.5.0-rc.1 Signed-off-by: Sebastiaan van Stijn <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f9d2820 - Browse repository at this point
Copy the full SHA f9d2820View commit details -
Merge pull request #6501 from thaJeztah/28.x_bump_docker_28.5
[28.x] vendor: github.com/docker/docker v28.5.0-rc.1
Configuration menu - View commit details
-
Copy full SHA for a69c591 - Browse repository at this point
Copy the full SHA a69c591View commit details
Commits on Sep 26, 2025
-
cli/command/image: runPush: minor cleanups and linting issues
- Remove redundant intermediate variables - Explicitly use an early return on error instead of combining with other checks. - Fix unhandled errors and combine defers - Remove outstanding TODO that unlikely will be addressed Signed-off-by: Sebastiaan van Stijn <[email protected]> (cherry picked from commit c36e67d) Signed-off-by: Sebastiaan van Stijn <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for ec00b85 - Browse repository at this point
Copy the full SHA ec00b85View commit details -
trust: print deprecation warning when using hub Notary server
Docker Hub's Notary service is being retired, and now produces failures in most cases. Add a warning when attempting to use it, pending full removal of trust; https://www.docker.com/blog/retiring-docker-content-trust/ With this PR: DOCKER_CONTENT_TRUST=1 docker pull -q hello-world WARNING: Docker is retiring DCT for Docker Official Images (DOI). For details, refer to https://docs.docker.com/go/dct-deprecation/ could not validate the path to a trusted root: unable to retrieve valid leaf certificates Signed-off-by: Sebastiaan van Stijn <[email protected]> (cherry picked from commit 43b03ef) Signed-off-by: Sebastiaan van Stijn <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 0351ece - Browse repository at this point
Copy the full SHA 0351eceView commit details -
cli/command/image: pushTrustedReference: internalize constructing ind…
…exInfo All information needed can be deducted from the image reference, which is used to create a indexInfo, repoInfo, and to resolve auth-config. In some situations this may result in resolving the auth-config twice after it already was resolved to an encoded auth-config. Signed-off-by: Sebastiaan van Stijn <[email protected]> (cherry picked from commit 9a6313e) Signed-off-by: Sebastiaan van Stijn <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for d5c181a - Browse repository at this point
Copy the full SHA d5c181aView commit details -
Merge pull request #6509 from thaJeztah/28.x_backport_dct_retiring
[28.x backport] trust: print deprecation warning when using hub Notary server
Configuration menu - View commit details
-
Copy full SHA for e5bce5c - Browse repository at this point
Copy the full SHA e5bce5cView commit details -
Merge pull request #6510 from thaJeztah/28.x_backport_auth
[28.x backport] cli/command/image: pushTrustedReference: internalize constructing indexInfo
Configuration menu - View commit details
-
Copy full SHA for 394991e - Browse repository at this point
Copy the full SHA 394991eView commit details -
cli/manifest/store: deprecate IsNotFound
Deprecate the IsNotFound utility in favor of errdefs. Signed-off-by: Sebastiaan van Stijn <[email protected]> (cherry picked from commit f3fb772) Signed-off-by: Sebastiaan van Stijn <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a4ae5f2 - Browse repository at this point
Copy the full SHA a4ae5f2View commit details
Commits on Sep 29, 2025
-
cli/config/memorystore: remove unused IsErrValueNotFound
This utility was added in 9b83d5b, but was never used. Remove the utility, and rewrite the error returned to implement the errdefs.NotFound interface, so that it can be detected using the errdefs.IsNotFound() utility if needed. Signed-off-by: Sebastiaan van Stijn <[email protected]> (cherry picked from commit 3c78ac2) Signed-off-by: Sebastiaan van Stijn <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a3ffb8a - Browse repository at this point
Copy the full SHA a3ffb8aView commit details -
cli/command: explicitly map AuthConfig fields instead of a direct cast
Commit [cli@27b2797] forked the AuthConfig type from the API, and changed existing code to do a direct cast / convert of the forked type to the API type. This can cause issues if the API types diverges, such as the removal of the Email field. This patch explicitly maps each field to the corresponding API type, but adds some TODOs, because various code-paths only included a subset of the fields, which may be intentional for fields that were meant to be handled on the daemon / registry-client only. We should evaluate these conversions to make sure these fields should be sent from the client or not (and possibly even removed from the API type). [cli@27b2797]: 27b2797 Signed-off-by: Sebastiaan van Stijn <[email protected]> (cherry picked from commit 9f02d96) Signed-off-by: Sebastiaan van Stijn <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e491078 - Browse repository at this point
Copy the full SHA e491078View commit details -
Merge pull request #6514 from thaJeztah/28.x_backport_manifeststore_n…
…otfound [28.x backport] cli/manifest/store: deprecate IsNotFound
Configuration menu - View commit details
-
Copy full SHA for 645c23b - Browse repository at this point
Copy the full SHA 645c23bView commit details -
Merge pull request #6518 from thaJeztah/28.x_backport_memstore_notfou…
…nderr [28.x backport] cli/config/memorystore: remove unused IsErrValueNotFound
Configuration menu - View commit details
-
Copy full SHA for 5e42f82 - Browse repository at this point
Copy the full SHA 5e42f82View commit details -
Merge pull request #6519 from thaJeztah/28.x_backport_authconfig_no_d…
…irect_cast [28.x backport] cli/command: explicitly map AuthConfig fields instead of a direct cast
Configuration menu - View commit details
-
Copy full SHA for a106161 - Browse repository at this point
Copy the full SHA a106161View commit details
Commits on Oct 1, 2025
-
cli/command: deprecate ResolveDefaultContext
The ResolveDefaultContext function was exported in [cli@f820766] to allow (unit) testing, but did not document that it was only exported for this purpose. The only external use of this function is in buildx, which uses it in a unit test that can be implemented without this function. This patch deprecates the function so that we can remove it. [cli@f820766]: f820766 Signed-off-by: Sebastiaan van Stijn <[email protected]> (cherry picked from commit 311a97a) Signed-off-by: Sebastiaan van Stijn <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for d4b7734 - Browse repository at this point
Copy the full SHA d4b7734View commit details -
gha: add macOS 15, remove macOS 13 (deprecated)
The macOS 13 runners are deprecated and will be removed on December 4th, with brownouts in November; https://github.blog/changelog/2025-09-19-github-actions-macos-13-runner-image-is-closing-down/ Signed-off-by: Sebastiaan van Stijn <[email protected]> (cherry picked from commit 91d8c0b) Signed-off-by: Sebastiaan van Stijn <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 9d9adf6 - Browse repository at this point
Copy the full SHA 9d9adf6View commit details -
Merge pull request #6529 from thaJeztah/28.x_backport_deprecate_Resol…
…veDefaultContext [28.x backport] cli/command: deprecate ResolveDefaultContext
Configuration menu - View commit details
-
Copy full SHA for d7afcf9 - Browse repository at this point
Copy the full SHA d7afcf9View commit details -
vendor: github.com/docker/docker cd048300a487 (v28.5.0-dev)
full diff: moby/moby@v28.5.0-rc.1...cd04830 Signed-off-by: Sebastiaan van Stijn <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f784471 - Browse repository at this point
Copy the full SHA f784471View commit details
Commits on Oct 2, 2025
-
Merge pull request #6531 from thaJeztah/28.x_backport_bump_macos
[28.x backport] gha: add macOS 15, remove macOS 13 (deprecated)
Configuration menu - View commit details
-
Copy full SHA for 9c6a0e0 - Browse repository at this point
Copy the full SHA 9c6a0e0View commit details -
Merge pull request #6522 from thaJeztah/28.x_bump_moby
[28.x] vendor: github.com/docker/docker cd048300a487 (v28.5.0-dev)
Configuration menu - View commit details
-
Copy full SHA for 887030f - Browse repository at this point
Copy the full SHA 887030fView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v28.5.0-rc.1...v28.5.0