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/docker-credential-helpers
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.9.4
Choose a base ref
...
head repository: docker/docker-credential-helpers
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.9.5
Choose a head ref
  • 18 commits
  • 3 files changed
  • 4 contributors

Commits on Oct 13, 2025

  1. 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]>
    dependabot[bot] authored Oct 13, 2025
    Configuration menu
    Copy the full SHA
    bc131d7 View commit details
    Browse the repository at this point in the history
  2. update to go1.25.2

    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]>
    thaJeztah committed Oct 13, 2025
    Configuration menu
    Copy the full SHA
    9d04e49 View commit details
    Browse the repository at this point in the history
  3. 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
    thaJeztah authored Oct 13, 2025
    Configuration menu
    Copy the full SHA
    62777f0 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #392 from thaJeztah/bump_go_1.25.2

    update to go1.25.2
    thaJeztah authored Oct 13, 2025
    Configuration menu
    Copy the full SHA
    b7a754b View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2025

  1. 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]>
    dependabot[bot] authored Nov 21, 2025
    Configuration menu
    Copy the full SHA
    057ed81 View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2025

  1. 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]>
    dependabot[bot] authored Dec 2, 2025
    Configuration menu
    Copy the full SHA
    9b0c242 View commit details
    Browse the repository at this point in the history

Commits on Dec 15, 2025

  1. 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]>
    dependabot[bot] authored Dec 15, 2025
    Configuration menu
    Copy the full SHA
    7830395 View commit details
    Browse the repository at this point in the history

Commits on Jan 8, 2026

  1. Merge pull request #395 from docker/dependabot/github_actions/actions…

    …/checkout-6
    
    build(deps): bump actions/checkout from 5 to 6
    thaJeztah authored Jan 8, 2026
    Configuration menu
    Copy the full SHA
    4741f33 View commit details
    Browse the repository at this point in the history
  2. 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
    thaJeztah authored Jan 8, 2026
    Configuration menu
    Copy the full SHA
    8b5e6df View commit details
    Browse the repository at this point in the history
  3. Merge pull request #398 from docker/dependabot/github_actions/actions…

    …/upload-artifact-6
    
    build(deps): bump actions/upload-artifact from 4 to 6
    thaJeztah authored Jan 8, 2026
    Configuration menu
    Copy the full SHA
    3f97cf3 View commit details
    Browse the repository at this point in the history
  4. gha: update some actions to ubuntu 24.04

    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    thaJeztah committed Jan 8, 2026
    Configuration menu
    Copy the full SHA
    81f7ebe View commit details
    Browse the repository at this point in the history
  5. Dockerfile: update golangci-lint to v2.8

    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    thaJeztah committed Jan 8, 2026
    Configuration menu
    Copy the full SHA
    7a15b77 View commit details
    Browse the repository at this point in the history
  6. Merge pull request #401 from thaJeztah/bump_ubuntu

    gha: update some actions to ubuntu 24.04
    thaJeztah authored Jan 8, 2026
    Configuration menu
    Copy the full SHA
    9df2c77 View commit details
    Browse the repository at this point in the history
  7. update to go1.25.5

    - 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]>
    ameya-keskar authored and thaJeztah committed Jan 8, 2026
    Configuration menu
    Copy the full SHA
    b844409 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #399 from ameya-keskar/bump_go_1.25.5

    update to go1.25.5
    thaJeztah authored Jan 8, 2026
    Configuration menu
    Copy the full SHA
    ecf6c1c View commit details
    Browse the repository at this point in the history
  9. Merge pull request #402 from thaJeztah/bump_golangci_lint

    Dockerfile: update golangci-lint to v2.8
    thaJeztah authored Jan 8, 2026
    Configuration menu
    Copy the full SHA
    aecf6e5 View commit details
    Browse the repository at this point in the history
  10. 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]>
    thaJeztah committed Jan 8, 2026
    Configuration menu
    Copy the full SHA
    50c1460 View commit details
    Browse the repository at this point in the history
  11. Merge pull request #404 from thaJeztah/rm_noninteractive

    Dockerfile: remove redundant DEBIAN_FRONTEND=noninteractive
    thaJeztah authored Jan 8, 2026
    Configuration menu
    Copy the full SHA
    b871f76 View commit details
    Browse the repository at this point in the history
Loading