From 52851a50127b85643572e04cecc0f14b03230376 Mon Sep 17 00:00:00 2001 From: Dmitri Shuralyov Date: Tue, 2 Dec 2025 10:23:38 -0500 Subject: internal/history: document Go 1.25.5 and 1.24.11 releases This describes the fix in internal/syscall/windows (CL 718000) as a fix to package os, as that is the public package whose behavior is affected. Change-Id: I181a3563bdf1366e6d9304d86ccbc3a209ac50bb Reviewed-on: https://go-review.googlesource.com/c/website/+/725880 LUCI-TryBot-Result: Go LUCI Auto-Submit: Dmitri Shuralyov Reviewed-by: Dmitri Shuralyov Reviewed-by: Mark Freeman --- internal/history/release.go | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/internal/history/release.go b/internal/history/release.go index 6c259e54..c3ca4d12 100644 --- a/internal/history/release.go +++ b/internal/history/release.go @@ -13,10 +13,28 @@ import "html/template" // // The table is sorted by date, breaking ties with newer versions first. var Releases = []*Release{ + { + Date: Date{2025, 12, 2}, Version: Version{1, 25, 5}, + Security: &FixSummary{ + Quantifier: "two", Packages: []string{"crypto/x509"}, + }, + Bug: &FixSummary{ + Packages: []string{"mime", "os"}, + }, + }, + { + Date: Date{2025, 12, 2}, Version: Version{1, 24, 11}, + Security: &FixSummary{ + Quantifier: "two", Packages: []string{"crypto/x509"}, + }, + Bug: &FixSummary{ + Components: []template.HTML{"the runtime"}, + }, + }, { Date: Date{2025, 11, 5}, Version: Version{1, 25, 4}, Bug: &FixSummary{ - Packages: []string{"crypto/subtle", "encoding/pem", "net/url", "os"}, + Packages: []string{"crypto/subtle", "encoding/pem", "net/url", "os"}, Components: []template.HTML{"the compiler", "the runtime"}, }, }, -- cgit v1.3