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
Choose a base ref
...
head repository: moby/moby
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v28.5.1
Choose a head ref
  • 20 commits
  • 36 files changed
  • 8 contributors

Commits on Oct 2, 2025

  1. Add back vendor.sum

    Signed-off-by: Austin Vazquez <[email protected]>
    austinvazquez committed Oct 2, 2025
    Configuration menu
    Copy the full SHA
    e468481 View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2025

  1. Merge pull request #51091 from austinvazquez/add-vendor-sum-to-28.x

    [28.x] Add back vendor.sum
    austinvazquez authored Oct 3, 2025
    Configuration menu
    Copy the full SHA
    5c2c3c2 View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2025

  1. api/types/image: InspectResponse: deprecate Parent, DockerVersion

    The image inspect response has various fields that were deprecated as
    part of the legacy builder, or Dockerfile syntax;
    
    - The `Parent` field is only used for the legacy builder, and only set for
      images that are built locally (i.e., not persisted when pulling an image).
    - The `DockerVersion` field is only set when building images with the legacy
      builder, and empty in most cases.
    
    This patch deprecates the fields in the `InspectResponse` go struct, as
    these fields will no longer be set in future once the legacy builder is
    removed (`Parent`, `DockerVersion`). The legacy builder's deprecation in
    [cli@4d8e457] / [cli@fd22746] (docker 23.0, API v1.42), however the related
    API fields were kept so that information of legacy images would not be
    discarded.
    
    The API continues to return these fields if set, allowing the client to
    print the fields for informational purposes when printing the raw response,
    but these fields should be considered "transitional", and not be depended
    on; deprecating the fields helps raise awareness.
    
    [cli@4d8e457]: docker/cli@4d8e457
    [cli@fd22746]: docker/cli@fd22746
    
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    (cherry picked from commit bd8a99b)
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    thaJeztah committed Oct 5, 2025
    Configuration menu
    Copy the full SHA
    3388108 View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2025

  1. Merge pull request #51105 from thaJeztah/28.x_backport_deprecate_lega…

    …cy_inspect_fields
    
    [28.x backport] api/types/image: InspectResponse: deprecate Parent, DockerVersion
    thaJeztah authored Oct 6, 2025
    Configuration menu
    Copy the full SHA
    b67c30f View commit details
    Browse the repository at this point in the history
  2. api/types/plugin: deprecate Config.DockerVersion field

    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    (cherry picked from commit c4fda95)
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    thaJeztah committed Oct 6, 2025
    Configuration menu
    Copy the full SHA
    1dcce68 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #51110 from thaJeztah/28.x_backport_deprecate_plug…

    …in_dockerversion
    
    [28.x backport] api/types/plugin: deprecate Config.DockerVersion field
    austinvazquez authored Oct 6, 2025
    Configuration menu
    Copy the full SHA
    7841b1c View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2025

  1. Add existence check for go.mod and go.sum files

    Signed-off-by: Austin Vazquez <[email protected]>
    (cherry picked from commit 0ad35e3)
    Signed-off-by: Austin Vazquez <[email protected]>
    austinvazquez committed Oct 7, 2025
    Configuration menu
    Copy the full SHA
    bab0464 View commit details
    Browse the repository at this point in the history
  2. Rework Go mod tidy/vendor checks

    This change reworks the Go mod tidy/vendor checks to run for all tracked Go modules by the project and fail for any uncommitted changes.
    
    Signed-off-by: Austin Vazquez <[email protected]>
    (cherry picked from commit f6e1bf2)
    Signed-off-by: Austin Vazquez <[email protected]>
    austinvazquez committed Oct 7, 2025
    Configuration menu
    Copy the full SHA
    adcea7b View commit details
    Browse the repository at this point in the history
  3. Merge pull request #51116 from austinvazquez/cherry-pick-fix-go-valid…

    …ation-to-28.x
    
    [28.x] Rework Go mod tidy/vendor checks
    vvoland authored Oct 7, 2025
    Configuration menu
    Copy the full SHA
    28d9ed5 View commit details
    Browse the repository at this point in the history
  4. ci: update gha cache attributes

    Signed-off-by: CrazyMax <[email protected]>
    crazy-max committed Oct 7, 2025
    Configuration menu
    Copy the full SHA
    e59129b View commit details
    Browse the repository at this point in the history
  5. Merge pull request #51121 from crazy-max/28.x_ci-caches-fixes

    [28.x] ci: update gha cache attributes
    vvoland authored Oct 7, 2025
    Configuration menu
    Copy the full SHA
    8fa4bd5 View commit details
    Browse the repository at this point in the history
  6. ci: fix cache for go modules

    Signed-off-by: CrazyMax <[email protected]>
    (cherry picked from commit dbcbe87)
    Signed-off-by: Paweł Gronowski <[email protected]>
    crazy-max authored and vvoland committed Oct 7, 2025
    Configuration menu
    Copy the full SHA
    5b1a039 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #51126 from vvoland/51124-28.x

    [28.x backport] ci: fix cache for go modules
    thaJeztah authored Oct 7, 2025
    Configuration menu
    Copy the full SHA
    0f040aa View commit details
    Browse the repository at this point in the history
  8. builder: use proper percentage calculations for default gc policy

    The default gc policy calculations based on percentage were calculated
    improperly. These were calculated correctly in buildkit, but the
    calculation method was not copied over correctly when updating the
    values.
    
    Signed-off-by: Jonathan A. Sternberg <[email protected]>
    (cherry picked from commit 1a7d7cc)
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    jsternberg authored and thaJeztah committed Oct 7, 2025
    Configuration menu
    Copy the full SHA
    dccf7c8 View commit details
    Browse the repository at this point in the history
  9. update to go1.24.8

    This minor release includes 10 security fixes following the security policy:
    
    - net/mail: excessive CPU consumption in ParseAddress
    
        The ParseAddress function constructed domain-literal address components through repeated string concatenation. When parsing large domain-literal components, this could cause excessive CPU consumption.
    
        Thanks to Philippe Antoine (Catena cyber) for reporting this issue.
    
        This is CVE-2025-61725 and Go issue https://go.dev/issue/75680.
    
    - crypto/x509: quadratic complexity when checking name constraints
    
        Due to the design of the name constraint checking algorithm, the processing time
        of some inputs scales non-linearly with respect to the size of the certificate.
    
        This affects programs which validate arbitrary certificate chains.
    
        Thanks to Jakub Ciolek for reporting this issue.
    
        This is CVE-2025-58187 and Go issue https://go.dev/issue/75681.
    
    - crypto/tls: ALPN negotiation errors can contain arbitrary text
    
        The crypto/tls conn.Handshake method returns an error on the server-side when
        ALPN negotation fails which can contain arbitrary attacker controlled
        information provided by the client-side of the connection which is not escaped.
    
        This affects programs which log these errors without any additional form of
        sanitization, and may allow injection of attacker controlled information into
        logs.
    
        Thanks to National Cyber Security Centre Finland for reporting this issue.
    
        This is CVE-2025-58189 and Go issue https://go.dev/issue/75652.
    
    - encoding/pem: quadratic complexity when parsing some invalid inputs
    
        Due to the design of the PEM parsing function, the processing time for some
        inputs scales non-linearly with respect to the size of the input.
    
        This affects programs which parse untrusted PEM inputs.
    
        Thanks to Jakub Ciolek for reporting this issue.
    
        This is CVE-2025-61723 and Go issue https://go.dev/issue/75676.
    
    - net/url: insufficient validation of bracketed IPv6 hostnames
    
        The Parse function permitted values other than IPv6 addresses to be included in square brackets within the host component of a URL. RFC 3986 permits IPv6 addresses to be included within the host component, enclosed within square brackets. For example: "http://[::1]/". IPv4 addresses and hostnames must not appear within square brackets. Parse did not enforce this requirement.
    
        Thanks to Enze Wang, Jingcheng Yang and Zehui Miao of Tsinghua University for reporting this issue.
    
        This is CVE-2025-47912 and Go issue https://go.dev/issue/75678.
    
    - encoding/asn1: pre-allocating memory when parsing DER payload can cause memory exhaustion
    
        When parsing DER payloads, memories were being allocated prior to fully validating the payloads.
        This permits an attacker to craft a big empty DER payload to cause memory exhaustion in functions such as asn1.Unmarshal, x509.ParseCertificateRequest, and ocsp.ParseResponse.
    
        Thanks to Jakub Ciolek for reporting this issue.
    
        This is CVE-2025-58185 and Go issue https://go.dev/issue/75671.
    
    - net/http: lack of limit when parsing cookies can cause memory exhaustion
    
        Despite HTTP headers having a default limit of 1 MB, the number of cookies that can be parsed did not have a limit.
        By sending a lot of very small cookies such as "a=;", an attacker can make an HTTP server allocate a large amount of structs, causing large memory consumption.
    
        net/http now limits the number of cookies accepted to 3000, which can be adjusted using the httpcookiemaxnum GODEBUG option.
    
        Thanks to jub0bs for reporting this issue.
    
        This is CVE-2025-58186 and Go issue https://go.dev/issue/75672.
    
    - crypto/x509: panic when validating certificates with DSA public keys
    
        Validating certificate chains which contain DSA public keys can cause programs
        to panic, due to a interface cast that assumes they implement the Equal method.
    
        This affects programs which validate arbitrary certificate chains.
    
        Thanks to Jakub Ciolek for reporting this issue.
    
        This is CVE-2025-58188 and Go issue https://go.dev/issue/75675.
    
    - archive/tar: unbounded allocation when parsing GNU sparse map
    
        tar.Reader did not set a maximum size on the number of sparse region data blocks in GNU tar pax 1.0 sparse files. A maliciously-crafted archive containing a large number of sparse regions could cause a Reader to read an unbounded amount of data from the archive into memory. When reading from a compressed source, a small compressed input could result in large allocations.
    
        Thanks to Harshit Gupta (Mr HAX) - https://www.linkedin.com/in/iam-harshit-gupta/ for reporting this issue.
    
        This is CVE-2025-58183 and Go issue https://go.dev/issue/75677.
    
    - net/textproto: excessive CPU consumption in Reader.ReadResponse
    
        The Reader.ReadResponse function constructed a response string through
        repeated string concatenation of lines. When the number of lines in a response is large,
        this could cause excessive CPU consumption.
    
        Thanks to Jakub Ciolek for reporting this issue.
    
        This is CVE-2025-61724 and Go issue https://go.dev/issue/75716.
    
    Signed-off-by: Paweł Gronowski <[email protected]>
    (cherry picked from commit d7b4bb2)
    Signed-off-by: Paweł Gronowski <[email protected]>
    vvoland committed Oct 7, 2025
    Configuration menu
    Copy the full SHA
    f7c40ea View commit details
    Browse the repository at this point in the history
  10. Merge pull request #51128 from thaJeztah/28.x_backport_gcpolicy-inval…

    …id-calculations
    
    [28.x backport] builder: use proper percentage calculations for default gc policy
    austinvazquez authored Oct 7, 2025
    Configuration menu
    Copy the full SHA
    17db0cd View commit details
    Browse the repository at this point in the history
  11. Merge pull request #51133 from vvoland/51132-28.x

    [28.x backport] update to go1.24.8
    austinvazquez authored Oct 7, 2025
    Configuration menu
    Copy the full SHA
    90506c1 View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2025

  1. vendor: update buildkit to v0.25.1

    Signed-off-by: Tonis Tiigi <[email protected]>
    (cherry picked from commit 3c418be)
    Signed-off-by: Austin Vazquez <[email protected]>
    tonistiigi authored and austinvazquez committed Oct 8, 2025
    Configuration menu
    Copy the full SHA
    5d1c311 View commit details
    Browse the repository at this point in the history
  2. hack: add patch to buildkit tests

    Signed-off-by: Tonis Tiigi <[email protected]>
    (cherry picked from commit 1b1608f)
    Signed-off-by: Austin Vazquez <[email protected]>
    tonistiigi authored and austinvazquez committed Oct 8, 2025
    Configuration menu
    Copy the full SHA
    40a856a View commit details
    Browse the repository at this point in the history
  3. Merge pull request #51137 from austinvazquez/cherry-pick-vendor-build…

    …kit-0.25.1-to-28.x
    
    [28.x] vendor: update buildkit to v0.25.1
    austinvazquez authored Oct 8, 2025
    Configuration menu
    Copy the full SHA
    f8215cc View commit details
    Browse the repository at this point in the history
Loading