diff --git a/internal/history/release.go b/internal/history/release.go
index b50ed26733..1078ca461c 100644
--- a/internal/history/release.go
+++ b/internal/history/release.go
@@ -14,6 +14,16 @@ import "golang.org/x/website/internal/backport/html/template"
//
// The table is sorted by date, breaking ties with newer versions first.
var Releases = []*Release{
+ {
+ Date: Date{2022, 3, 3}, Version: Version{1, 17, 8},
+ CustomSummary: `includes a security fix to the regexp/syntax
package, as well as bug fixes to the compiler, runtime, the go
command, and the crypto/x509
, and net
packages.
+See the Go 1.17.8 milestone on our issue tracker for details.`,
+ },
+ {
+ Date: Date{2022, 3, 3}, Version: Version{1, 16, 15},
+ CustomSummary: `includes a security fix to the regexp/syntax
package, as well as bug fixes to the compiler, runtime, the go
command, and to the net
package.
+See the Go 1.16.15 milestone on our issue tracker for details.`,
+ },
{
Date: Date{2022, 2, 10}, Version: Version{1, 17, 7},
CustomSummary: `includes security fixes to the crypto/elliptic
, math/big
packages and to the go
command, as well as bug fixes to the compiler, linker, runtime, the go
command, and the debug/macho
, debug/pe
, and net/http/httptest
packages.