You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the latest release v1.9.1, even though the mentioned version in go.mod file is 1.16, the compilation fails in a go1.16 env.
Output:
$ go test ./...
# github.com/stretchr/testify/assert
../../go/pkg/mod/github.com/stretchr/[email protected]/assert/assertions.go:94:23: field.IsExported undefined (type reflect.StructField has no field or method IsExported)
note: module requires Go 1.20
FAIL github.com/gomodule/redigo/redis [build failed]
FAIL github.com/gomodule/redigo/redisx [build failed]
FAIL
$ go version
go version go1.16.15 linux/amd64
The text was updated successfully, but these errors were encountered:
Due to our test dependency requiring 1.17 minimum and the 1.16 being
well out of support, currently only 1.21 and 1.22 are support releases,
bump our required go version to 1.16.
Fixes#665
Due to our test dependency requiring 1.17 minimum and the 1.16 being
well out of support, currently only 1.21 and 1.22 are support releases,
bump our required go version to 1.16.
Fixes#665
In the latest release v1.9.1, even though the mentioned version in
go.mod
file is1.16,
the compilation fails in a go1.16 env.Output:
The text was updated successfully, but these errors were encountered: