aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Pratt <mpratt@google.com>2025-11-05 13:50:17 -0500
committerGopher Robot <gobot@golang.org>2025-11-05 11:10:43 -0800
commit26ca657ebd7eb52d55a7349035bad51960b77d79 (patch)
tree29c14d3ea6897231e336cd8b8857e5a73013f271
parent4e6db4a174674104d39a69481e2b6deb01f3df49 (diff)
downloadgo-x-website-26ca657ebd7eb52d55a7349035bad51960b77d79.tar.xz
internal/history: document Go 1.24.10 and 1.25.4 releases
This describes CL 709795 as a fix to crypto/subtle as that is the closest affected public package. Change-Id: I6a6a636c1d306f58b426d06da72446a6d60e3a21 Reviewed-on: https://go-review.googlesource.com/c/website/+/718140 Reviewed-by: Michael Knyszek <mknyszek@google.com> Auto-Submit: Michael Pratt <mpratt@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
-rw-r--r--internal/history/release.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/internal/history/release.go b/internal/history/release.go
index 0620542f..6c259e54 100644
--- a/internal/history/release.go
+++ b/internal/history/release.go
@@ -14,6 +14,19 @@ import "html/template"
// The table is sorted by date, breaking ties with newer versions first.
var Releases = []*Release{
{
+ Date: Date{2025, 11, 5}, Version: Version{1, 25, 4},
+ Bug: &FixSummary{
+ Packages: []string{"crypto/subtle", "encoding/pem", "net/url", "os"},
+ Components: []template.HTML{"the compiler", "the runtime"},
+ },
+ },
+ {
+ Date: Date{2025, 11, 5}, Version: Version{1, 24, 10},
+ Bug: &FixSummary{
+ Packages: []string{"encoding/pem", "net/url"},
+ },
+ },
+ {
Date: Date{2025, 10, 13}, Version: Version{1, 25, 3},
Bug: &FixSummary{
Packages: []string{"crypto/x509"},