diff options
| author | Cherry Mui <cherryyz@google.com> | 2026-03-05 10:20:58 -0500 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2026-03-05 16:42:21 -0800 |
| commit | ad084207b3eb0a8b7705c4d58c67be0c48251bfa (patch) | |
| tree | 7f71118831e791a97e3469b15a708ae029c2fbf7 | |
| parent | 2fe8435f08306e8eb19ca91cc4b03ab9f9655cef (diff) | |
| download | go-x-website-ad084207b3eb0a8b7705c4d58c67be0c48251bfa.tar.xz | |
internal/history: document Go 1.26.1 and 1.25.8 releases
Change-Id: I0306e36ffccabf562406cb46b96117117eddc994
Reviewed-on: https://go-review.googlesource.com/c/website/+/752060
Auto-Submit: Cherry Mui <cherryyz@google.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
| -rw-r--r-- | internal/history/release.go | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/internal/history/release.go b/internal/history/release.go index 7d4cdc7a..fec89dab 100644 --- a/internal/history/release.go +++ b/internal/history/release.go @@ -14,6 +14,30 @@ import "html/template" // The table is sorted by date, breaking ties with newer versions first. var Releases = []*Release{ { + Date: Date{2026, 3, 5}, Version: Version{1, 26, 1}, + Security: &FixSummary{ + Packages: []string{"crypto/x509", "html/template", "net/url", "os"}, + }, + Bug: &FixSummary{ + Components: []template.HTML{ + "the <code>go</code> command", + "the <code>go fix</code> command", + "the compiler", + }, + Packages: []string{"os", "reflect"}, + }, + }, + { + Date: Date{2026, 3, 5}, Version: Version{1, 25, 8}, + Security: &FixSummary{ + Packages: []string{"html/template", "net/url", "os"}, + }, + Bug: &FixSummary{ + Components: []template.HTML{"the <code>go</code> command", "the compiler"}, + Packages: []string{"os"}, + }, + }, + { Date: Date{2026, 2, 10}, Version: Version{1, 26, 0}, }, { |
