Go 1.20.2 发布了~
共 923字,需浏览 2分钟
·
2023-03-11 02:43
今早,Go 官方发布了两个小版本:Go1.20.2 和 Go1.19.7,主要是因为有一个安全问题。不过同时进行了一些 Bugfix。
安全问题是 crypto/elliptic 包。
crypto/elliptic: incorrect P-256 ScalarMult and ScalarBaseMult results
The ScalarMult and ScalarBaseMult methods of the P256 Curve may return an incorrect result if called with some specific unreduced scalars (a scalar larger than the order of the curve).
This does not impact usages of crypto/ecdsa or crypto/ecdh.
详见 issue:https://go.dev/issue/58647。
此外,还进行了一些 Bug 的修复,Go1.20.2 版本 Close 的 issue 有 17 个 :https://github.com/golang/go/issues?q=milestone%3AGo1.20.2+label%3ACherryPickApproved,1.19.7 版本 Close 的 issue 有 7 个:https://github.com/golang/go/issues?q=milestone%3AGo1.19.7+label%3ACherryPickApproved。
跟之前一样,Go 语言中文网准备好了安装包:https://studygolang.com/dl。
你也可以使用你喜欢的方式升级试用,或用官方给出的方式试用:
推荐阅读