From 3450d37756de206e1ae064aa16c318a845d79fa9 Mon Sep 17 00:00:00 2001 From: Cherry Mui Date: Wed, 9 Feb 2022 09:49:48 -0500 Subject: [PATCH] internal/history: document Go 1.17.7 and Go 1.16.14 Change-Id: I649cecf14658343425094b123ef3c300638d08a9 Reviewed-on: https://go-review.googlesource.com/c/website/+/384435 Trust: Cherry Mui Reviewed-by: Alex Rakoczy Run-TryBot: Cherry Mui TryBot-Result: Gopher Robot --- internal/history/release.go | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/internal/history/release.go b/internal/history/release.go index e1e6fecd..b50ed267 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, 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. +See the Go 1.17.7 milestone on our issue tracker for details.`, + }, + { + Date: Date{2022, 2, 10}, Version: Version{1, 16, 14}, + 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, net/http/httptest, and testing packages. +See the Go 1.16.14 milestone on our issue tracker for details.`, + }, { Date: Date{2022, 1, 6}, Version: Version{1, 17, 6}, Components: []template.HTML{"the compiler", "linker", "runtime"},