Skip to content

Bump github.com/cloudflare/circl from 1.3.7 to 1.6.1#77

Merged
NamelessOne91 merged 1 commit intomasterfrom
dependabot/go_modules/github.com/cloudflare/circl-1.6.1
Feb 17, 2026
Merged

Bump github.com/cloudflare/circl from 1.3.7 to 1.6.1#77
NamelessOne91 merged 1 commit intomasterfrom
dependabot/go_modules/github.com/cloudflare/circl-1.6.1

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 14, 2026

Bumps github.com/cloudflare/circl from 1.3.7 to 1.6.1.

Release notes

Sourced from github.com/cloudflare/circl's releases.

CIRCL v1.6.1

  • Fixes some point checks on the FourQ curve.
  • Hybrid KEM fails on low-order points.

What's Changed

Full Changelog: cloudflare/circl@v1.6.0...v1.6.1

CIRCL v1.6.0

New!

What's Changed

New Contributors

Full Changelog: cloudflare/circl@v1.5.0...v1.6.0

CIRCL v1.5.0

New: ML-DSA, Module-Lattice-based Digital Signature Algorithm.

What's Changed

New Contributors

Full Changelog: cloudflare/circl@v1.4.0...v1.5.0

... (truncated)

Commits
  • c6d33e3 Release v1.6.1
  • 0c3868e curve4q: Shared must fail with low order points.
  • 9fd570d curve4q: Test showing DH does not fails on identity point.
  • c988ceb fourq: Correctly unmarshalling point.
  • ef2611d fourq: Test showing point unmarshal fails.
  • 05eba44 fourq: Handle the case of Z=0 for IsOnCurve and IsEqual.
  • eef0878 fourq: Test showing isEqual and IsOnCurve fail.
  • 2298474 goldilocks; Handling points with z=0.
  • 5a940a1 goldilocks: Test for IsEqual must fail with Z=0
  • 48c3b6a ed25519: Fix isEqual to handle points with Z=0.
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps [github.com/cloudflare/circl](https://github.com/cloudflare/circl) from 1.3.7 to 1.6.1.
- [Release notes](https://github.com/cloudflare/circl/releases)
- [Commits](cloudflare/circl@v1.3.7...v1.6.1)

---
updated-dependencies:
- dependency-name: github.com/cloudflare/circl
  dependency-version: 1.6.1
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Jan 14, 2026
@nodeg nodeg requested a review from Copilot February 6, 2026 21:56
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Updates the vendored Go dependency github.com/cloudflare/circl to a newer release, bringing in upstream security/validation fixes and new transitive vendored packages required by the updated version.

Changes:

  • Bump github.com/cloudflare/circl from v1.3.7 to v1.6.1 (go.mod/go.sum + vendor metadata).
  • Vendor new golang.org/x/crypto/cryptobyte packages introduced as transitive dependencies.
  • Incorporate upstream circl changes affecting curve checks, build tags, and serialization helpers.

Reviewed changes

Copilot reviewed 1 out of 17 changed files in this pull request and generated no comments.

Show a summary per file
File Description
vendor/modules.txt Updates vendored module versions and adds cryptobyte packages to the vendor manifest.
vendor/golang.org/x/crypto/cryptobyte/string.go Adds vendored cryptobyte parsing helper type.
vendor/golang.org/x/crypto/cryptobyte/builder.go Adds vendored cryptobyte builder implementation.
vendor/golang.org/x/crypto/cryptobyte/asn1/asn1.go Adds ASN.1 tag/constants support for cryptobyte.
vendor/golang.org/x/crypto/cryptobyte/asn1.go Adds DER/ASN.1 parsing/building helpers for cryptobyte.
vendor/github.com/cloudflare/circl/sign/sign.go Adds a new exported error for too-long signature context strings.
vendor/github.com/cloudflare/circl/sign/ed448/ed448.go Adjusts panic formatting for invalid context length.
vendor/github.com/cloudflare/circl/sign/ed25519/point.go Tightens point equality behavior when Z=0.
vendor/github.com/cloudflare/circl/math/integer.go Adds integer utility helper NextPow2.
vendor/github.com/cloudflare/circl/math/fp448/fp_amd64.s Updates build tags to exclude purego.
vendor/github.com/cloudflare/circl/math/fp25519/fp_amd64.s Updates build tags to exclude purego.
vendor/github.com/cloudflare/circl/internal/conv/conv.go Adds (un)marshal helpers using cryptobyte.
vendor/github.com/cloudflare/circl/ecc/goldilocks/curve.go Adds explicit z != 0 check to on-curve validation.
vendor/github.com/cloudflare/circl/dh/x448/curve_amd64.s Updates build tags to exclude purego.
vendor/github.com/cloudflare/circl/dh/x25519/curve_amd64.s Updates build tags to exclude purego.
go.sum Updates checksums for the circl version bump.
go.mod Updates circl requirement to v1.6.1.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@NamelessOne91 NamelessOne91 merged commit f3eeb7f into master Feb 17, 2026
7 checks passed
@dependabot dependabot bot deleted the dependabot/go_modules/github.com/cloudflare/circl-1.6.1 branch February 17, 2026 09:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants