-
Notifications
You must be signed in to change notification settings - Fork 193
Comparing changes
Open a pull request
base repository: docker/docker-credential-helpers
base: 84c3413
head repository: docker/docker-credential-helpers
compare: b871f76
- 18 commits
- 3 files changed
- 4 contributors
Commits on Oct 13, 2025
-
build(deps): bump softprops/action-gh-release from 2.3.3 to 2.4.1
Bumps [softprops/action-gh-release](https://github.com/softprops/action-gh-release) from 2.3.3 to 2.4.1. - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](softprops/action-gh-release@6cbd405...6da8fa9) --- updated-dependencies: - dependency-name: softprops/action-gh-release dependency-version: 2.4.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for bc131d7 - Browse repository at this point
Copy the full SHA bc131d7View 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: Sebastiaan van Stijn <[email protected]>Configuration menu - View commit details
-
Copy full SHA for 9d04e49 - Browse repository at this point
Copy the full SHA 9d04e49View commit details -
Merge pull request #391 from docker/dependabot/github_actions/softpro…
…ps/action-gh-release-2.4.1 build(deps): bump softprops/action-gh-release from 2.3.3 to 2.4.1
Configuration menu - View commit details
-
Copy full SHA for 62777f0 - Browse repository at this point
Copy the full SHA 62777f0View commit details -
Merge pull request #392 from thaJeztah/bump_go_1.25.2
update to go1.25.2
Configuration menu - View commit details
-
Copy full SHA for b7a754b - Browse repository at this point
Copy the full SHA b7a754bView commit details
Commits on Nov 21, 2025
-
build(deps): bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 057ed81 - Browse repository at this point
Copy the full SHA 057ed81View commit details
Commits on Dec 2, 2025
-
build(deps): bump softprops/action-gh-release from 2.4.1 to 2.5.0
Bumps [softprops/action-gh-release](https://github.com/softprops/action-gh-release) from 2.4.1 to 2.5.0. - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](softprops/action-gh-release@6da8fa9...a06a81a) --- updated-dependencies: - dependency-name: softprops/action-gh-release dependency-version: 2.5.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 9b0c242 - Browse repository at this point
Copy the full SHA 9b0c242View commit details
Commits on Dec 15, 2025
-
build(deps): bump actions/upload-artifact from 4 to 6
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 7830395 - Browse repository at this point
Copy the full SHA 7830395View commit details
Commits on Jan 8, 2026
-
Merge pull request #395 from docker/dependabot/github_actions/actions…
…/checkout-6 build(deps): bump actions/checkout from 5 to 6
Configuration menu - View commit details
-
Copy full SHA for 4741f33 - Browse repository at this point
Copy the full SHA 4741f33View commit details -
Merge pull request #397 from docker/dependabot/github_actions/softpro…
…ps/action-gh-release-2.5.0 build(deps): bump softprops/action-gh-release from 2.4.1 to 2.5.0
Configuration menu - View commit details
-
Copy full SHA for 8b5e6df - Browse repository at this point
Copy the full SHA 8b5e6dfView commit details -
Merge pull request #398 from docker/dependabot/github_actions/actions…
…/upload-artifact-6 build(deps): bump actions/upload-artifact from 4 to 6
Configuration menu - View commit details
-
Copy full SHA for 3f97cf3 - Browse repository at this point
Copy the full SHA 3f97cf3View commit details -
gha: update some actions to ubuntu 24.04
Signed-off-by: Sebastiaan van Stijn <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 81f7ebe - Browse repository at this point
Copy the full SHA 81f7ebeView commit details -
Dockerfile: update golangci-lint to v2.8
Signed-off-by: Sebastiaan van Stijn <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 7a15b77 - Browse repository at this point
Copy the full SHA 7a15b77View commit details -
Merge pull request #401 from thaJeztah/bump_ubuntu
gha: update some actions to ubuntu 24.04
Configuration menu - View commit details
-
Copy full SHA for 9df2c77 - Browse repository at this point
Copy the full SHA 9df2c77View commit details -
- Update Go version to v1.25.5 in build workflow - Update GO_VERSION to 1.25.5 in Dockerfile - Update GO_VERSION to 1.25.5 Signed-off-by: Ameya Keskar <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for b844409 - Browse repository at this point
Copy the full SHA b844409View commit details -
Merge pull request #399 from ameya-keskar/bump_go_1.25.5
update to go1.25.5
Configuration menu - View commit details
-
Copy full SHA for ecf6c1c - Browse repository at this point
Copy the full SHA ecf6c1cView commit details -
Merge pull request #402 from thaJeztah/bump_golangci_lint
Dockerfile: update golangci-lint to v2.8
Configuration menu - View commit details
-
Copy full SHA for aecf6e5 - Browse repository at this point
Copy the full SHA aecf6e5View commit details -
Dockerfile: remove redundant DEBIAN_FRONTEND=noninteractive
This should no longer be needed for current versions of Debian and Ubuntu. Signed-off-by: Sebastiaan van Stijn <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 50c1460 - Browse repository at this point
Copy the full SHA 50c1460View commit details -
Merge pull request #404 from thaJeztah/rm_noninteractive
Dockerfile: remove redundant DEBIAN_FRONTEND=noninteractive
Configuration menu - View commit details
-
Copy full SHA for b871f76 - Browse repository at this point
Copy the full SHA b871f76View 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 84c3413...b871f76