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: moby/moby
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v28.5.0-rc.1
Choose a base ref
...
head repository: moby/moby
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: cd048300a48700294339c9c91d2dcc691cb8f63b
Choose a head ref
  • 12 commits
  • 43 files changed
  • 7 contributors

Commits on Sep 26, 2025

  1. api/checkpoint: Don't return null if no checkpoints

    This fixes a bug where no checkpoints would produce a `null` response
    instead of an empty array:
    
    ```
    $ docker run -d --name foo nginx:alpine
    17fbeff7185733f101c38cb8208359dd0ef141116a1345da2d3c3f58c11f3e14
    
    $ curl --unix-socket /var/run/docker.sock http://local/containers/foo/checkpoints
    null
    ```
    
    With this patch, this becomes:
    ```
    $ curl --unix-socket /var/run/docker.sock http://local/containers/foo/checkpoints
    []
    ```
    
    Signed-off-by: Paweł Gronowski <[email protected]>
    (cherry picked from commit 646e068)
    Signed-off-by: Paweł Gronowski <[email protected]>
    vvoland committed Sep 26, 2025
    Configuration menu
    Copy the full SHA
    fd10938 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #51052 from vvoland/51051-28.x

    [28.x backport] api/checkpoint: Don't return null if no checkpoints
    thaJeztah authored Sep 26, 2025
    Configuration menu
    Copy the full SHA
    f984f72 View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2025

  1. api/docs: remove email field from example auth

    This field was no longer used since Docker 1.11 (API version 1.23)
    through [aee260d] and [engine-api@9a9e468] but kept and deprecated
    in [engine-api@167efc7], however the docs still used it in an example.
    
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    (cherry picked from commit 08d014c)
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    thaJeztah committed Sep 29, 2025
    Configuration menu
    Copy the full SHA
    2c15eb6 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #51061 from thaJeztah/28.x_backport_rm_email_example

    [28.x backport] api/docs: remove email field from example auth
    austinvazquez authored Sep 29, 2025
    Configuration menu
    Copy the full SHA
    252a1eb View commit details
    Browse the repository at this point in the history
  3. Eliminate warning about endpoint count store delete

    Commit 380ded6 restored a now-unused endpoint count to the
    store, so that when the daemon is downgraded it exists for
    the old code to find.
    
    But, on network deletion, the endpoint count was not loaded
    from the store - so the delete code saw the wrong "index",
    and logged a warning before deleting it anyway.
    
    Use DeleteObject instead of DeleteObjectAtomic, so the old
    index isn't checked.
    
    Signed-off-by: Rob Murray <[email protected]>
    (cherry picked from commit 94bcf89)
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    robmry authored and thaJeztah committed Sep 29, 2025
    Configuration menu
    Copy the full SHA
    fbf2fe8 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #51064 from thaJeztah/28.x_backport_fix_epcnt_warning

    [28.x backport] Eliminate warning about endpoint count store delete
    thaJeztah authored Sep 29, 2025
    Configuration menu
    Copy the full SHA
    423a7fd View commit details
    Browse the repository at this point in the history

Commits on Sep 30, 2025

  1. api: deprecate KernelMemoryTCP support

    Starting with kernel v6.12, kernel memory TCP accounting is deprecated for cgroups v1.
    Note: kernel memory TCP accounting is not supported by cgroups v2.
    
    See torvalds/linux@d046ff4
    
    Signed-off-by: Austin Vazquez <[email protected]>
    (cherry picked from commit fb2f811)
    Signed-off-by: Austin Vazquez <[email protected]>
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    austinvazquez authored and thaJeztah committed Sep 30, 2025
    Configuration menu
    Copy the full SHA
    deb4bbb View commit details
    Browse the repository at this point in the history
  2. Merge pull request #51067 from austinvazquez/cherry-pick-deprecate-ke…

    …rnel-memocy-tcp-to-28.x
    
    [28.x backport] api: deprecate `KernelMemoryTCP` support
    thaJeztah authored Sep 30, 2025
    Configuration menu
    Copy the full SHA
    79f310d View commit details
    Browse the repository at this point in the history
  3. api: swagger: remove VirtualSize fields for API > v1.43

    The `VirtualSize` field was deprecated in [1261fe6], and omitted / removed
    in API v1.44 in [913b0f5]. We should not document the field as part of
    those API versions as it no longer exists for those.
    
    [1261fe6]: 1261fe6
    [913b0f5]: 913b0f5
    
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    (cherry picked from commit 51cbd2e)
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    thaJeztah committed Sep 30, 2025
    Configuration menu
    Copy the full SHA
    4f35725 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #51069 from thaJeztah/28.x_backport_docs_rm_deprec…

    …ated_virtualsize
    
    [28.x backport] api: swagger: remove VirtualSize fields for API > v1.43
    thaJeztah authored Sep 30, 2025
    Configuration menu
    Copy the full SHA
    9b43690 View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2025

  1. vendor: github.com/moby/buildkit v0.25.0

    Signed-off-by: Paweł Gronowski <[email protected]>
    (cherry picked from commit 3f3bbe4)
    Signed-off-by: Paweł Gronowski <[email protected]>
    jsternberg authored and vvoland committed Oct 1, 2025
    Configuration menu
    Copy the full SHA
    e29d6be View commit details
    Browse the repository at this point in the history
  2. Merge pull request #51075 from vvoland/51074-28.x

    [28.x backport] vendor: github.com/moby/buildkit v0.25.0
    thaJeztah authored Oct 1, 2025
    Configuration menu
    Copy the full SHA
    cd04830 View commit details
    Browse the repository at this point in the history
Loading