From 285c85c039cb6b303f490518a88560b826134fcf Mon Sep 17 00:00:00 2001 From: David Chase Date: Tue, 7 Apr 2026 16:04:19 -0400 Subject: internal/history: document Go 1.26.2 and 1.25.9 releases Change-Id: I898004e877532f108ea69b43cb4a012fed248c7e Reviewed-on: https://go-review.googlesource.com/c/website/+/763721 Auto-Submit: David Chase LUCI-TryBot-Result: Go LUCI Reviewed-by: Junyang Shao --- internal/history/release.go | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/internal/history/release.go b/internal/history/release.go index fec89dab..f8636482 100644 --- a/internal/history/release.go +++ b/internal/history/release.go @@ -13,6 +13,47 @@ import "html/template" // // The table is sorted by date, breaking ties with newer versions first. var Releases = []*Release{ + { + Date: Date{2026, 4, 7}, Version: Version{1, 26, 2}, + Security: &FixSummary{ + Components: []template.HTML{ + "the go command", + "the compiler", + }, + Packages: []string{"archive/tar", "crypto/tls", + "crypto/x509", "html/template", "os"}, + }, + Bug: &FixSummary{ + Components: []template.HTML{ + "the go command", + "the go fix command", + "the compiler", + "the linker", + "the runtime", + }, + Packages: []string{"net", "net/http", "net/url"}, + }, + }, + { + Date: Date{2026, 4, 7}, Version: Version{1, 25, 9}, + Security: &FixSummary{ + Components: []template.HTML{ + "the go command", + "the compiler", + }, + Packages: []string{"archive/tar", "crypto/tls", + "crypto/x509", "html/template", "os"}, + }, + Bug: &FixSummary{ + Components: []template.HTML{ + "the go command", + "the compiler", + "the runtime", + }, + Packages: []string{}, + }, + }, + { Date: Date{2026, 3, 5}, Version: Version{1, 26, 1}, Security: &FixSummary{ -- cgit v1.3