From ee5e1f3cc4a335ae9a0763367131c04034be3065 Mon Sep 17 00:00:00 2001 From: Dmitri Shuralyov Date: Thu, 5 Sep 2024 09:37:09 -0400 Subject: [PATCH] internal/history: document Go 1.23.1 and 1.22.7 releases Change-Id: I0ee4a16d8422be4d542f1e4ea2de0f456fca383d Reviewed-on: https://go-review.googlesource.com/c/website/+/610802 Auto-Submit: Dmitri Shuralyov Reviewed-by: Michael Pratt LUCI-TryBot-Result: Go LUCI Reviewed-by: Dmitri Shuralyov --- internal/history/release.go | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/internal/history/release.go b/internal/history/release.go index 9e5fd84f..e9f7f1c2 100644 --- a/internal/history/release.go +++ b/internal/history/release.go @@ -13,6 +13,25 @@ import "html/template" // // The table is sorted by date, breaking ties with newer versions first. var Releases = []*Release{ + { + Date: Date{2024, 9, 5}, Version: Version{1, 23, 1}, + Security: &FixSummary{ + Packages: []string{"encoding/gob", "go/build/constraint", "go/parser"}, + }, + Bug: &FixSummary{ + Components: []template.HTML{"the compiler", "the go command", "the runtime"}, + Packages: []string{"database/sql", "go/types", "os", "runtime/trace", "unique"}, + }, + }, + { + Date: Date{2024, 9, 5}, Version: Version{1, 22, 7}, + Security: &FixSummary{ + Packages: []string{"encoding/gob", "go/build/constraint", "go/parser"}, + }, + Bug: &FixSummary{ + Components: []template.HTML{"the fix command", "the runtime"}, + }, + }, { Date: Date{2024, 8, 13}, Version: Version{1, 23, 0}, },