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: v27.4.0
Choose a base ref
...
head repository: docker/cli
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v27.4.1
Choose a head ref
  • 14 commits
  • 15 files changed
  • 4 contributors

Commits on Dec 5, 2024

  1. Configuration menu
    Copy the full SHA
    dc8511c View commit details
    Browse the repository at this point in the history
  2. Merge pull request #5670 from thaJeztah/27.x_vendor_docker_27.4.0-rc.4

    [27.x] vendor: github.com/docker/docker v27.4.0-rc.4
    thaJeztah authored Dec 5, 2024
    Configuration menu
    Copy the full SHA
    0a1f8e4 View commit details
    Browse the repository at this point in the history

Commits on Dec 9, 2024

  1. vendor: github.com/docker/docker v27.4.0

    no diff, as it's the same commit
    
    full diff: moby/moby@v27.4.0-rc.4...v27.4.0
    
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    thaJeztah committed Dec 9, 2024
    Configuration menu
    Copy the full SHA
    6377f54 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #5681 from thaJeztah/27.x_update_docker

    [27.x] vendor: github.com/docker/docker v27.4.0
    vvoland authored Dec 9, 2024
    Configuration menu
    Copy the full SHA
    27cf4d7 View commit details
    Browse the repository at this point in the history

Commits on Dec 12, 2024

  1. update xx to v1.6.1 for compatibility with alpine 3.21

    This fixes compatibility with alpine 3.21
    
    - Fix additional possible `xx-cc`/`xx-cargo` compatibility issue with Alpine 3.21
    - Support for Alpine 3.21
    - Fix `xx-verify` with `file` 5.46+
    - Fix possible error taking lock in `xx-apk` in latest Alpine without `coreutils`
    
    full diff: tonistiigi/xx@v1.5.0...v1.6.1
    
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    (cherry picked from commit 1e51ae7)
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    thaJeztah committed Dec 12, 2024
    Configuration menu
    Copy the full SHA
    f9783ec View commit details
    Browse the repository at this point in the history

Commits on Dec 13, 2024

  1. update go-md2man to v2.0.5

    full diff: cpuguy83/go-md2man@v2.0.4...v2.0.5
    
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    (cherry picked from commit eaa8b57)
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    thaJeztah committed Dec 13, 2024
    Configuration menu
    Copy the full SHA
    12d98b0 View commit details
    Browse the repository at this point in the history
  2. cli/command/system: remove netfilter warnings from tests

    These warnings will no longer be returned by the daemon, so remove
    them from the tests as well to make them more representative of
    reality.
    
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    (cherry picked from commit 55e404e)
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    thaJeztah committed Dec 13, 2024
    Configuration menu
    Copy the full SHA
    70815c1 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #5692 from thaJeztah/27.x_backport_remove_netfilte…

    …r_warnings
    
    [27.x backport] cli/command/system: remove netfilter warnings from tests
    thaJeztah authored Dec 13, 2024
    Configuration menu
    Copy the full SHA
    fce7c04 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #5690 from thaJeztah/27.x_backport_bump_gomd2man

    [27.x backport] update go-md2man to v2.0.5
    thaJeztah authored Dec 13, 2024
    Configuration menu
    Copy the full SHA
    3fa9480 View commit details
    Browse the repository at this point in the history
  5. Merge pull request #5685 from thaJeztah/27.x_backport_bump_xx

    [27.x backport] update xx to v1.6.1 for compatibility with alpine 3.21
    thaJeztah authored Dec 13, 2024
    Configuration menu
    Copy the full SHA
    ac40240 View commit details
    Browse the repository at this point in the history

Commits on Dec 16, 2024

  1. cli/command/container: use local copy of pkg/system.IsAbs

    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    (cherry picked from commit 1eda498)
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    thaJeztah committed Dec 16, 2024
    Configuration menu
    Copy the full SHA
    d3b59fb View commit details
    Browse the repository at this point in the history
  2. Merge pull request #5699 from thaJeztah/27.x_backport_remove_system_i…

    …sabs
    
    [27.x backport] cli/command/container: use local copy of pkg/system.IsAbs
    thaJeztah authored Dec 16, 2024
    Configuration menu
    Copy the full SHA
    4870b3d View commit details
    Browse the repository at this point in the history
  3. cli/command/system: remove BridgeNfIptables, BridgeNfIp6tables in tests

    This is a follow-up to 55e404e, which
    removed some warnings related to these fields.
    
    These fields in the /info response were used to warn users if netfiltering
    was not enabled on the host when the daemon started.  Starting with
    [moby@db25b0d], detecting whether netfiltering  is enabled now
    [happens when needed][1], making the state that's detected at startup
    irrelevant.
    
    These fields will therefore be deprecated in future, but we can start
    removing their use in tests.
    
    [moby@db25b0d]: moby/moby@db25b0d
    [1]: https://github.com/moby/moby/blob/944e40350259f040950d871d402d848ff2a799bc/libnetwork/drivers/bridge/setup_bridgenetfiltering.go#L16-L77
    
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    (cherry picked from commit ffe0354)
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    thaJeztah committed Dec 16, 2024
    Configuration menu
    Copy the full SHA
    a08a120 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #5700 from thaJeztah/27.x_backport_remove_use_of_n…

    …etfilter_fields
    
    [27.x backport] cli/command/system: remove BridgeNfIptables, BridgeNfIp6tables in tests
    akerouanton authored Dec 16, 2024
    Configuration menu
    Copy the full SHA
    b9d17ea View commit details
    Browse the repository at this point in the history
Loading