internal/history: document Go 1.23.2 and 1.22.8 releases
Change-Id: I9fe0e808ff2ad0a59b4e00f0cae223d9b49f36fe
Reviewed-on: https://go-review.googlesource.com/c/website/+/617075
Reviewed-by: David Chase <drchase@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
diff --git a/internal/history/release.go b/internal/history/release.go
index e9f7f1c..2102ddd 100644
--- a/internal/history/release.go
+++ b/internal/history/release.go
@@ -14,6 +14,20 @@
// The table is sorted by date, breaking ties with newer versions first.
var Releases = []*Release{
{
+ Date: Date{2024, 10, 1}, Version: Version{1, 23, 2},
+ Bug: &FixSummary{
+ Components: []template.HTML{"the compiler", "cgo", "the runtime"},
+ Packages: []string{"maps", "os", "os/exec", "time", "unique"},
+ },
+ },
+ {
+ Date: Date{2024, 10, 1}, Version: Version{1, 22, 8},
+ Bug: &FixSummary{
+ Components: []template.HTML{"cgo"},
+ Packages: []string{"maps", "syscall"},
+ },
+ },
+ {
Date: Date{2024, 9, 5}, Version: Version{1, 23, 1},
Security: &FixSummary{
Packages: []string{"encoding/gob", "go/build/constraint", "go/parser"},