aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Anthony Knyszek <mknyszek@google.com>2025-01-16 18:06:05 +0000
committerMichael Knyszek <mknyszek@google.com>2025-01-16 12:29:41 -0800
commita9d101ec2273e6c264f4991762db26eed637ca4c (patch)
treec3b7a9cec7022af14cb588acd13b7b7c44eac586
parent2946a7c0309d5949021a5fd5c7131a279f348a0a (diff)
downloadgo-x-website-a9d101ec2273e6c264f4991762db26eed637ca4c.tar.xz
internal/history: document Go 1.23.5 and 1.22.11 releases
Change-Id: I294b7fc746e6752eb92b70e8f80d7b4c74de3ba0 Reviewed-on: https://go-review.googlesource.com/c/website/+/643195 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Michael Pratt <mpratt@google.com>
-rw-r--r--internal/history/release.go19
1 files changed, 19 insertions, 0 deletions
diff --git a/internal/history/release.go b/internal/history/release.go
index 1c171d6b..fb68fc79 100644
--- a/internal/history/release.go
+++ b/internal/history/release.go
@@ -14,6 +14,25 @@ import "html/template"
// The table is sorted by date, breaking ties with newer versions first.
var Releases = []*Release{
{
+ Date: Date{2025, 1, 16}, Version: Version{1, 23, 5},
+ Security: &FixSummary{
+ Packages: []string{"crypto/x509", "net/http"},
+ },
+ Bug: &FixSummary{
+ Components: []template.HTML{"the compiler", "the runtime"},
+ Packages: []string{"net"},
+ },
+ },
+ {
+ Date: Date{2025, 1, 16}, Version: Version{1, 22, 11},
+ Security: &FixSummary{
+ Packages: []string{"crypto/x509", "net/http"},
+ },
+ Bug: &FixSummary{
+ Components: []template.HTML{"the runtime"},
+ },
+ },
+ {
Date: Date{2024, 12, 3}, Version: Version{1, 23, 4},
Bug: &FixSummary{
Components: []template.HTML{"the compiler", "the runtime", "the <code>trace</code> command"},