diff options
| author | Carlos Amedee <carlos@golang.org> | 2025-04-01 11:23:04 -0400 |
|---|---|---|
| committer | Carlos Amedee <carlos@golang.org> | 2025-04-01 09:22:52 -0700 |
| commit | bfcecfd092ee7310ad1b4f1d1925ec2085a72e6a (patch) | |
| tree | a4e76a58e0e20314fadcfd1b55e79fa339d3097c /internal | |
| parent | bfa567365531696df5ad39d66bba75c459afe62c (diff) | |
| download | go-x-website-bfcecfd092ee7310ad1b4f1d1925ec2085a72e6a.tar.xz | |
internal/history: document Go 1.24.2 and 1.23.8 releases
Change-Id: I339cbf7a83c8ef2b91559ad4169302f50a20966b
Reviewed-on: https://go-review.googlesource.com/c/website/+/662035
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Diffstat (limited to 'internal')
| -rw-r--r-- | internal/history/release.go | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/internal/history/release.go b/internal/history/release.go index 9c4fec7e..069fa1b1 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, 4, 1}, Version: Version{1, 24, 2}, + Security: &FixSummary{ + Packages: []string{"net/http"}, + }, + Bug: &FixSummary{ + Packages: []string{"crypto/tls", "go/types", "net/http", "testing"}, + Components: []template.HTML{"the compiler", "the runtime", "the <code>go</code> command"}, + }, + }, + { + Date: Date{2025, 4, 1}, Version: Version{1, 23, 8}, + Security: &FixSummary{ + Packages: []string{"net/http"}, + }, + Bug: &FixSummary{ + Components: []template.HTML{"the runtime", "the <code>go</code> command"}, + }, + }, + { Date: Date{2025, 3, 4}, Version: Version{1, 24, 1}, Security: &FixSummary{ Packages: []string{"net/http"}, |
