-
Notifications
You must be signed in to change notification settings - Fork 18.9k
Comparing changes
Open a pull request
base repository: moby/moby
base: v28.5.0
head repository: moby/moby
compare: v28.5.1
- 20 commits
- 36 files changed
- 8 contributors
Commits on Oct 2, 2025
-
Signed-off-by: Austin Vazquez <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e468481 - Browse repository at this point
Copy the full SHA e468481View commit details
Commits on Oct 3, 2025
-
Merge pull request #51091 from austinvazquez/add-vendor-sum-to-28.x
[28.x] Add back vendor.sum
Configuration menu - View commit details
-
Copy full SHA for 5c2c3c2 - Browse repository at this point
Copy the full SHA 5c2c3c2View commit details
Commits on Oct 5, 2025
-
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]>
Configuration menu - View commit details
-
Copy full SHA for 3388108 - Browse repository at this point
Copy the full SHA 3388108View commit details
Commits on Oct 6, 2025
-
Merge pull request #51105 from thaJeztah/28.x_backport_deprecate_lega…
…cy_inspect_fields [28.x backport] api/types/image: InspectResponse: deprecate Parent, DockerVersion
Configuration menu - View commit details
-
Copy full SHA for b67c30f - Browse repository at this point
Copy the full SHA b67c30fView commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 1dcce68 - Browse repository at this point
Copy the full SHA 1dcce68View commit details -
Merge pull request #51110 from thaJeztah/28.x_backport_deprecate_plug…
…in_dockerversion [28.x backport] api/types/plugin: deprecate Config.DockerVersion field
Configuration menu - View commit details
-
Copy full SHA for 7841b1c - Browse repository at this point
Copy the full SHA 7841b1cView commit details
Commits on Oct 7, 2025
-
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]>
Configuration menu - View commit details
-
Copy full SHA for bab0464 - Browse repository at this point
Copy the full SHA bab0464View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for adcea7b - Browse repository at this point
Copy the full SHA adcea7bView commit details -
Merge pull request #51116 from austinvazquez/cherry-pick-fix-go-valid…
…ation-to-28.x [28.x] Rework Go mod tidy/vendor checks
Configuration menu - View commit details
-
Copy full SHA for 28d9ed5 - Browse repository at this point
Copy the full SHA 28d9ed5View commit details -
ci: update gha cache attributes
Signed-off-by: CrazyMax <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e59129b - Browse repository at this point
Copy the full SHA e59129bView commit details -
Merge pull request #51121 from crazy-max/28.x_ci-caches-fixes
[28.x] ci: update gha cache attributes
Configuration menu - View commit details
-
Copy full SHA for 8fa4bd5 - Browse repository at this point
Copy the full SHA 8fa4bd5View commit details -
Signed-off-by: CrazyMax <[email protected]> (cherry picked from commit dbcbe87) Signed-off-by: Paweł Gronowski <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 5b1a039 - Browse repository at this point
Copy the full SHA 5b1a039View commit details -
Merge pull request #51126 from vvoland/51124-28.x
[28.x backport] ci: fix cache for go modules
Configuration menu - View commit details
-
Copy full SHA for 0f040aa - Browse repository at this point
Copy the full SHA 0f040aaView commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for dccf7c8 - Browse repository at this point
Copy the full SHA dccf7c8View commit details -
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]>Configuration menu - View commit details
-
Copy full SHA for f7c40ea - Browse repository at this point
Copy the full SHA f7c40eaView commit details -
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
Configuration menu - View commit details
-
Copy full SHA for 17db0cd - Browse repository at this point
Copy the full SHA 17db0cdView commit details -
Merge pull request #51133 from vvoland/51132-28.x
[28.x backport] update to go1.24.8
Configuration menu - View commit details
-
Copy full SHA for 90506c1 - Browse repository at this point
Copy the full SHA 90506c1View commit details
Commits on Oct 8, 2025
-
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]>
Configuration menu - View commit details
-
Copy full SHA for 5d1c311 - Browse repository at this point
Copy the full SHA 5d1c311View commit details -
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]>
Configuration menu - View commit details
-
Copy full SHA for 40a856a - Browse repository at this point
Copy the full SHA 40a856aView commit details -
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
Configuration menu - View commit details
-
Copy full SHA for f8215cc - Browse repository at this point
Copy the full SHA f8215ccView 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 v28.5.0...v28.5.1