aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Chase <drchase@google.com>2026-04-07 16:04:19 -0400
committerDavid Chase <drchase@google.com>2026-04-07 13:37:14 -0700
commit285c85c039cb6b303f490518a88560b826134fcf (patch)
treef2ebff90d1be83b0fc3b1f43c3e13d8d05432715
parentc961c3db0e2cfff3dc13d2d769116e73e1e0ab6c (diff)
downloadgo-x-website-285c85c039cb6b303f490518a88560b826134fcf.tar.xz
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 <drchase@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Junyang Shao <shaojunyang@google.com>
-rw-r--r--internal/history/release.go41
1 files changed, 41 insertions, 0 deletions
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
@@ -14,6 +14,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 <code>go</code> command",
+ "the compiler",
+ },
+ Packages: []string{"archive/tar", "crypto/tls",
+ "crypto/x509", "html/template", "os"},
+ },
+ Bug: &FixSummary{
+ Components: []template.HTML{
+ "the <code>go</code> command",
+ "the <code>go fix</code> 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 <code>go</code> command",
+ "the compiler",
+ },
+ Packages: []string{"archive/tar", "crypto/tls",
+ "crypto/x509", "html/template", "os"},
+ },
+ Bug: &FixSummary{
+ Components: []template.HTML{
+ "the <code>go</code> command",
+ "the compiler",
+ "the runtime",
+ },
+ Packages: []string{},
+ },
+ },
+
+ {
Date: Date{2026, 3, 5}, Version: Version{1, 26, 1},
Security: &FixSummary{
Packages: []string{"crypto/x509", "html/template", "net/url", "os"},