diff options
| author | Michael Pratt <mpratt@google.com> | 2026-01-15 10:56:52 -0500 |
|---|---|---|
| committer | Michael Pratt <mpratt@google.com> | 2026-01-15 10:49:12 -0800 |
| commit | fe285e54236547214a826ec8bd517d43b35c2e2d (patch) | |
| tree | 1cc1366ab1c5003a5d380998bbb681d75111d991 | |
| parent | a8644d85664c16c6e2a079951e93256457ecc6dc (diff) | |
| download | go-x-website-fe285e54236547214a826ec8bd517d43b35c2e2d.tar.xz | |
internal/history: document Go 1.25.6 and 1.24.12 releases
Change-Id: I6a6a636c74d142eeb924698709f2c2012f076caf
Reviewed-on: https://go-review.googlesource.com/c/website/+/736714
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Junyang Shao <shaojunyang@google.com>
| -rw-r--r-- | internal/history/release.go | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/internal/history/release.go b/internal/history/release.go index c3ca4d12..afcc977f 100644 --- a/internal/history/release.go +++ b/internal/history/release.go @@ -14,6 +14,28 @@ import "html/template" // The table is sorted by date, breaking ties with newer versions first. var Releases = []*Release{ { + Date: Date{2026, 1, 15}, Version: Version{1, 25, 6}, + Security: &FixSummary{ + Components: []template.HTML{"the <code>go</code> command"}, + Packages: []string{"archive/zip", "crypto/tls", "net/url"}, + }, + Bug: &FixSummary{ + Components: []template.HTML{"the compiler", "the runtime"}, + Packages: []string{"crypto/tls", "errors", "os"}, + }, + }, + { + Date: Date{2026, 1, 15}, Version: Version{1, 24, 12}, + Security: &FixSummary{ + Components: []template.HTML{"the <code>go</code> command"}, + Packages: []string{"archive/zip", "crypto/tls", "net/url"}, + }, + Bug: &FixSummary{ + Components: []template.HTML{"the compiler", "the runtime"}, + Packages: []string{"crypto/tls", "os"}, + }, + }, + { Date: Date{2025, 12, 2}, Version: Version{1, 25, 5}, Security: &FixSummary{ Quantifier: "two", Packages: []string{"crypto/x509"}, |
