Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: docker/cli
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v23.0.4
Choose a base ref
...
head repository: docker/cli
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v23.0.5
Choose a head ref
  • 18 commits
  • 32 files changed
  • 6 contributors

Commits on Apr 19, 2023

  1. 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>
    vvoland committed Apr 19, 2023
    Configuration menu
    Copy the full SHA
    c648e0b View commit details
    Browse the repository at this point in the history

Commits on Apr 20, 2023

  1. Merge pull request #4217 from vvoland/buildkit-empty-23

    [23.0 backport] Handle empty DOCKER_BUILDKIT like unset
    thaJeztah authored Apr 20, 2023
    Configuration menu
    Copy the full SHA
    ced769f View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2023

  1. 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>
    thaJeztah committed Apr 26, 2023
    Configuration menu
    Copy the full SHA
    ada4381 View commit details
    Browse the repository at this point in the history
  2. 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>
    thaJeztah committed Apr 26, 2023
    Configuration menu
    Copy the full SHA
    86e79b5 View commit details
    Browse the repository at this point in the history
  3. 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>
    thaJeztah committed Apr 26, 2023
    Configuration menu
    Copy the full SHA
    9912408 View commit details
    Browse the repository at this point in the history
  4. 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>
    thaJeztah committed Apr 26, 2023
    Configuration menu
    Copy the full SHA
    2c1fde2 View commit details
    Browse the repository at this point in the history
  5. 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>
    thaJeztah committed Apr 26, 2023
    Configuration menu
    Copy the full SHA
    9dfe5a2 View commit details
    Browse the repository at this point in the history
  6. 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>
    thaJeztah committed Apr 26, 2023
    Configuration menu
    Copy the full SHA
    f914316 View commit details
    Browse the repository at this point in the history
  7. 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>
    David Karlsson authored and thaJeztah committed Apr 26, 2023
    Configuration menu
    Copy the full SHA
    4a42917 View commit details
    Browse the repository at this point in the history
  8. 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>
    David Karlsson authored and thaJeztah committed Apr 26, 2023
    Configuration menu
    Copy the full SHA
    2cf6853 View commit details
    Browse the repository at this point in the history
  9. 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>
    dependabot[bot] authored and thaJeztah committed Apr 26, 2023
    Configuration menu
    Copy the full SHA
    17357a7 View commit details
    Browse the repository at this point in the history
  10. Merge pull request #4231 from thaJeztah/23.0_backport_test_fixes

    [23.0 backport] ci: add validation for generated docs, bump docker/bake-action
    thaJeztah authored Apr 26, 2023
    Configuration menu
    Copy the full SHA
    91b7318 View commit details
    Browse the repository at this point in the history
  11. 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
    thaJeztah authored Apr 26, 2023
    Configuration menu
    Copy the full SHA
    8e00eb4 View commit details
    Browse the repository at this point in the history
  12. Merge pull request #4229 from thaJeztah/23.0_backport_volumes_prune_all

    [23.0 backport] volumes: prune: add --all / -a option
    thaJeztah authored Apr 26, 2023
    Configuration menu
    Copy the full SHA
    776388c View commit details
    Browse the repository at this point in the history
  13. Docs freshness updates

    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>
    Chris Chinchilla authored and thaJeztah committed Apr 26, 2023
    Configuration menu
    Copy the full SHA
    6c0f902 View commit details
    Browse the repository at this point in the history
  14. [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>
    thaJeztah committed Apr 26, 2023
    Configuration menu
    Copy the full SHA
    3cda7c3 View commit details
    Browse the repository at this point in the history
  15. Merge pull request #4232 from thaJeztah/23.0_backport_docs_fixes

    [23.0 backport] Docs freshness updates
    thaJeztah authored Apr 26, 2023
    Configuration menu
    Copy the full SHA
    f332962 View commit details
    Browse the repository at this point in the history
  16. Merge pull request #4233 from thaJeztah/23.0_update_engine

    [23.0] vendor: github.com/docker/docker v23.0.4
    thaJeztah authored Apr 26, 2023
    Configuration menu
    Copy the full SHA
    bc4487a View commit details
    Browse the repository at this point in the history
Loading