build: upgrade to go 1.19 (#25726)

This changes the CI / release builds to use the latest Go version. It also
upgrades golangci-lint to a newer version compatible with Go 1.19.

In Go 1.19, godoc has gained official support for links and lists. The
syntax for code blocks in doc comments has changed and now requires a
leading tab character. gofmt adapts comments to the new syntax
automatically, so there are a lot of comment re-formatting changes in this
PR. We need to apply the new format in order to pass the CI lint stage with
Go 1.19.

With the linter upgrade, I have decided to disable 'gosec' - it produces
too many false-positive warnings. The 'deadcode' and 'varcheck' linters
have also been removed because golangci-lint warns about them being
unmaintained. 'unused' provides similar coverage and we already have it
enabled, so we don't lose much with this change.
This commit is contained in:
Felix Lange
2022-09-10 13:25:40 +02:00
committed by GitHub
parent 389021a5af
commit b628d72766
107 changed files with 997 additions and 973 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ import (
"golang.org/x/crypto/sha3"
)
//SignatureLength indicates the byte length required to carry a signature with recovery id.
// SignatureLength indicates the byte length required to carry a signature with recovery id.
const SignatureLength = 64 + 1 // 64 bytes ECDSA signature + 1 byte recovery id
// RecoveryIDOffset points to the byte offset within the signature that contains the recovery id.
-1
View File
@@ -105,7 +105,6 @@ func (BitCurve *BitCurve) IsOnCurve(x, y *big.Int) bool {
return x3.Cmp(y2) == 0
}
//TODO: double check if the function is okay
// affineFromJacobian reverses the Jacobian transform. See the comment at the
// top of the file.
func (BitCurve *BitCurve) affineFromJacobian(x, y, z *big.Int) (xOut, yOut *big.Int) {
@@ -1,3 +1,4 @@
//go:build dummy
// +build dummy
// Package c contains only a C file.
+1
View File
@@ -1,3 +1,4 @@
//go:build dummy
// +build dummy
// Package c contains only a C file.
@@ -1,3 +1,4 @@
//go:build dummy
// +build dummy
// Package c contains only a C file.
@@ -1,3 +1,4 @@
//go:build dummy
// +build dummy
// Package c contains only a C file.
@@ -1,3 +1,4 @@
//go:build dummy
// +build dummy
// Package c contains only a C file.
@@ -1,3 +1,4 @@
//go:build dummy
// +build dummy
// Package c contains only a C file.
@@ -1,3 +1,4 @@
//go:build dummy
// +build dummy
// Package c contains only a C file.