aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Pratt <mpratt@google.com>2026-02-03 17:03:36 -0500
committerMichael Pratt <mpratt@google.com>2026-02-04 07:55:44 -0800
commit8da90911c4e8af45e44e6a2925743940b2005af8 (patch)
tree3252f76b46c28fd9ca8dadecb475783a22a1c35d
parentfd82e1351b3c513e750e028ae21710366483b184 (diff)
downloadgo-x-website-8da90911c4e8af45e44e6a2925743940b2005af8.tar.xz
internal/history: document Go 1.25.7 and 1.24.13
Change-Id: I6a6a636cc7cc834f12edb334407dedcbb8524ae0 Reviewed-on: https://go-review.googlesource.com/c/website/+/741781 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
-rw-r--r--internal/history/release.go21
1 files changed, 21 insertions, 0 deletions
diff --git a/internal/history/release.go b/internal/history/release.go
index afcc977f..7d03d9b7 100644
--- a/internal/history/release.go
+++ b/internal/history/release.go
@@ -14,6 +14,27 @@ import "html/template"
// The table is sorted by date, breaking ties with newer versions first.
var Releases = []*Release{
{
+ Date: Date{2026, 2, 4}, Version: Version{1, 25, 7},
+ Security: &FixSummary{
+ Components: []template.HTML{"the <code>go</code> command"},
+ Packages: []string{"crypto/tls"},
+ },
+ Bug: &FixSummary{
+ Components: []template.HTML{"the compiler"},
+ Packages: []string{"crypto/x509"},
+ },
+ },
+ {
+ Date: Date{2026, 2, 4}, Version: Version{1, 24, 13},
+ Security: &FixSummary{
+ Components: []template.HTML{"the <code>go</code> command"},
+ Packages: []string{"crypto/tls"},
+ },
+ Bug: &FixSummary{
+ Packages: []string{"crypto/x509"},
+ },
+ },
+ {
Date: Date{2026, 1, 15}, Version: Version{1, 25, 6},
Security: &FixSummary{
Components: []template.HTML{"the <code>go</code> command"},