Update to Cadence v1.10.6 - #2360
Merged
Merged
Conversation
turbolent
requested review from
Kay-Zee,
bjartek,
chasefleming,
janezpodhostnik,
jribbink,
mfbz and
nvdtf
as code owners
August 25, 2026 16:48
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.OpenSSF ScorecardScorecard details
Scanned Files
|
Cadence v1.10.6 added an `interpreter.InvocationContext` parameter to `stdlib.StandardLibraryHandler.CreateAccount`. onflow/crypto v0.27.2 reimplemented ECDSA P-256 public key decoding on top of `crypto/ecdsa.ParseUncompressedPublicKey`, which changed the error message for a key of the wrong length.
Codecov Report❌ Patch coverage is
📢 Thoughts on this report? Let us know! |
onflow/crypto v0.27.2 removed `no_cgo.go`, the pure-Go stub that allowed a build with cgo disabled, so the BLS and secp256k1 symbols now only exist in the cgo files and `CGO_ENABLED=0 go build -tags=no_cgo` no longer links. Enable cgo, like every other build of this project does, and resolve modules from the module cache instead of `vendor/`, because `go mod vendor` does not copy the C headers that blst needs.
SupunS
approved these changes
Aug 25, 2026
vishalchangrani
approved these changes
Aug 25, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Automatically update to:
Also updates the toolchain to Go 1.26, which
go.modalready requires transitively through the dependency updates above:GO_VERSIONin CI,GOLANG_CROSS_VERSIONfor the release image, and the golangci-lint pin tov2.13.1for Go 1.26 support.Compatibility fixes
interpreter.InvocationContextparameter tostdlib.StandardLibraryHandler.CreateAccount.crypto/ecdsa.ParseUncompressedPublicKey, which changed the error message for a key of the wrong length.