aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitri Shuralyov <dmitshur@golang.org>2025-12-02 10:23:38 -0500
committerGopher Robot <gobot@golang.org>2025-12-02 08:09:03 -0800
commit52851a50127b85643572e04cecc0f14b03230376 (patch)
tree19488dd08e50a3a9256ec3e5e4f2e944d41bb905
parent5713397e2f6aae1a14d9b1e141292be78fc626eb (diff)
downloadgo-x-website-52851a50127b85643572e04cecc0f14b03230376.tar.xz
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 <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Mark Freeman <markfreeman@google.com>
-rw-r--r--internal/history/release.go20
1 files changed, 19 insertions, 1 deletions
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
@@ -14,9 +14,27 @@ 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"},
},
},