diff options
| author | Cherry Mui <cherryyz@google.com> | 2025-02-04 11:05:17 -0500 |
|---|---|---|
| committer | Cherry Mui <cherryyz@google.com> | 2025-02-04 08:41:24 -0800 |
| commit | 546b4546a9d87ae1b4586a8c4b25f2352ce368ed (patch) | |
| tree | 99ef1faaf80a5dcb6ee61daf43eea0998346af8c | |
| parent | 9a107242109f6b426d14a89128de5f9d0878d85a (diff) | |
| download | go-x-website-546b4546a9d87ae1b4586a8c4b25f2352ce368ed.tar.xz | |
internal/history: document Go 1.23.6 and 1.22.12 releases
Change-Id: I01ba22b76dcecca6894674f99fdb1559ac26d83e
Reviewed-on: https://go-review.googlesource.com/c/website/+/646236
Reviewed-by: Carlos Amedee <carlos@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
| -rw-r--r-- | internal/history/release.go | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/internal/history/release.go b/internal/history/release.go index fb68fc79..a8712d8b 100644 --- a/internal/history/release.go +++ b/internal/history/release.go @@ -14,6 +14,24 @@ import "html/template" // The table is sorted by date, breaking ties with newer versions first. var Releases = []*Release{ { + Date: Date{2025, 2, 4}, Version: Version{1, 23, 6}, + Security: &FixSummary{ + Packages: []string{"crypto/elliptic"}, + }, + Bug: &FixSummary{ + Components: []template.HTML{"the compiler", "the <code>go</code> command"}, + }, + }, + { + Date: Date{2025, 2, 4}, Version: Version{1, 22, 12}, + Security: &FixSummary{ + Packages: []string{"crypto/elliptic"}, + }, + Bug: &FixSummary{ + Components: []template.HTML{"the compiler", "the <code>go</code> command"}, + }, + }, + { Date: Date{2025, 1, 16}, Version: Version{1, 23, 5}, Security: &FixSummary{ Packages: []string{"crypto/x509", "net/http"}, |
