-
Notifications
You must be signed in to change notification settings - Fork 2k
Comparing changes
Open a pull request
base repository: docker/cli
base: v23.0.4
head repository: docker/cli
compare: v23.0.5
- 18 commits
- 32 files changed
- 6 contributors
Commits on Apr 19, 2023
-
Handle empty DOCKER_BUILDKIT like unset
This fixes the cli erroring out if the variable is set to an empty value. ``` $ export DOCKER_BUILDKIT= $ docker version DOCKER_BUILDKIT environment variable expects boolean value: strconv.ParseBool: parsing "": invalid syntax ``` Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com> (cherry picked from commit ff7f76a) Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
Configuration menu - View commit details
-
Copy full SHA for c648e0b - Browse repository at this point
Copy the full SHA c648e0bView commit details
Commits on Apr 20, 2023
-
Merge pull request #4217 from vvoland/buildkit-empty-23
[23.0 backport] Handle empty DOCKER_BUILDKIT like unset
Configuration menu - View commit details
-
Copy full SHA for ced769f - Browse repository at this point
Copy the full SHA ced769fView commit details
Commits on Apr 26, 2023
-
cli/command/volume: suppress err output in tests
These tests were deliberately producing errors as part of the test, but printing those errors could be confusing / make it more difficult to find actual test-failures. Before this patch: === RUN TestVolumeCreateErrors Error: conflicting options: either specify --name or provide positional arg, not both Error: "create" requires at most 1 argument. See 'create --help'. Usage: create [OPTIONS] [VOLUME] [flags] Create a volume Error: error creating volume --- PASS: TestVolumeCreateErrors (0.00s) PASS With this patch applied: === RUN TestVolumeCreateErrors --- PASS: TestVolumeCreateErrors (0.00s) PASS Signed-off-by: Sebastiaan van Stijn <github@gone.nl> (cherry picked from commit db827d5) Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Configuration menu - View commit details
-
Copy full SHA for ada4381 - Browse repository at this point
Copy the full SHA ada4381View commit details -
volumes: prune: add --all / -a option
Signed-off-by: Sebastiaan van Stijn <github@gone.nl> (cherry picked from commit 0dec5d2) Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Configuration menu - View commit details
-
Copy full SHA for 86e79b5 - Browse repository at this point
Copy the full SHA 86e79b5View commit details -
cli/command/formatter: export JSONFormat const
Signed-off-by: Sebastiaan van Stijn <github@gone.nl> (cherry picked from commit 1aaa179) Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Configuration menu - View commit details
-
Copy full SHA for 9912408 - Browse repository at this point
Copy the full SHA 9912408View commit details -
fix docker info --format=json not outputting json format
The --format=json option was added for all inspect commands, but was not implemented for "docker info". This patch implements the missing option. Before this patch: docker info --format=json json With this patch applied: docker info --format=json {"ID":"80c2f18a-2c88-4e4a-ba69-dca0eea59835","Containers":7,"ContainersRunning":"..."} Signed-off-by: Sebastiaan van Stijn <github@gone.nl> (cherry picked from commit 46234b8) Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Configuration menu - View commit details
-
Copy full SHA for 2c1fde2 - Browse repository at this point
Copy the full SHA 2c1fde2View commit details -
cli/command/system: make default version template a const
Signed-off-by: Sebastiaan van Stijn <github@gone.nl> (cherry picked from commit 80640bc) Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Configuration menu - View commit details
-
Copy full SHA for 9dfe5a2 - Browse repository at this point
Copy the full SHA 9dfe5a2View commit details -
fix docker version --format=json not outputting json format
The --format=json option was added for all inspect commands, but was not implemented for "docker version". This patch implements the missing option. Before this patch: docker version --format=json json With this patch: docker version --format=json {"Client":{"Platform":{"Name":""},"Version":"24.0.0-dev","ApiVersion":"..."}} Signed-off-by: Sebastiaan van Stijn <github@gone.nl> (cherry picked from commit 23bd746) Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Configuration menu - View commit details
-
Copy full SHA for f914316 - Browse repository at this point
Copy the full SHA f914316View commit details -
ci: add validation for generated markdown
Signed-off-by: David Karlsson <david.karlsson@docker.com> (cherry picked from commit 25ed784) Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Configuration menu - View commit details
-
Copy full SHA for 4a42917 - Browse repository at this point
Copy the full SHA 4a42917View commit details -
ci: remove fetch depth 0 for validate jobs
Signed-off-by: David Karlsson <david.karlsson@docker.com> (cherry picked from commit 341c843) Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Configuration menu - View commit details
-
Copy full SHA for 2cf6853 - Browse repository at this point
Copy the full SHA 2cf6853View commit details -
build(deps): bump docker/bake-action from 2 to 3
Bumps [docker/bake-action](https://github.com/docker/bake-action) from 2 to 3. - [Release notes](https://github.com/docker/bake-action/releases) - [Commits](docker/bake-action@v2...v3) --- updated-dependencies: - dependency-name: docker/bake-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> (cherry picked from commit 6c4c3c2) Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Configuration menu - View commit details
-
Copy full SHA for 17357a7 - Browse repository at this point
Copy the full SHA 17357a7View commit details -
Merge pull request #4231 from thaJeztah/23.0_backport_test_fixes
[23.0 backport] ci: add validation for generated docs, bump docker/bake-action
Configuration menu - View commit details
-
Copy full SHA for 91b7318 - Browse repository at this point
Copy the full SHA 91b7318View commit details -
Merge pull request #4230 from thaJeztah/23.0_backport_docker_info_json
[23.0 backport] fix docker info, docker version --format=json not outputting json format
Configuration menu - View commit details
-
Copy full SHA for 8e00eb4 - Browse repository at this point
Copy the full SHA 8e00eb4View commit details -
Merge pull request #4229 from thaJeztah/23.0_backport_volumes_prune_all
[23.0 backport] volumes: prune: add --all / -a option
Configuration menu - View commit details
-
Copy full SHA for 776388c - Browse repository at this point
Copy the full SHA 776388cView commit details -
Signed-off-by: Chris Chinchilla <chris.ward@docker.com> Signed-off-by: Sebastiaan van Stijn <github@gone.nl> (cherry picked from commit e693e7f) Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Configuration menu - View commit details
-
Copy full SHA for 6c0f902 - Browse repository at this point
Copy the full SHA 6c0f902View commit details -
[23.0] vendor: github.com/docker/docker v23.0.4
no changes in vendored files full diff: moby/moby@v23.0.3...v23.0.4 Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Configuration menu - View commit details
-
Copy full SHA for 3cda7c3 - Browse repository at this point
Copy the full SHA 3cda7c3View commit details -
Merge pull request #4232 from thaJeztah/23.0_backport_docs_fixes
[23.0 backport] Docs freshness updates
Configuration menu - View commit details
-
Copy full SHA for f332962 - Browse repository at this point
Copy the full SHA f332962View commit details -
Merge pull request #4233 from thaJeztah/23.0_update_engine
[23.0] vendor: github.com/docker/docker v23.0.4
Configuration menu - View commit details
-
Copy full SHA for bc4487a - Browse repository at this point
Copy the full SHA bc4487aView 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 v23.0.4...v23.0.5