diff options
| author | Michael Pratt <mpratt@google.com> | 2025-09-03 11:03:19 -0400 |
|---|---|---|
| committer | Michael Pratt <mpratt@google.com> | 2025-09-03 10:52:51 -0700 |
| commit | fc5af33ca867e73ef53a27895feaa45b39879b7a (patch) | |
| tree | 494350d763309bd2d2efdd1f209da825ddb8645f | |
| parent | a395a2d0d2fa4bb60b5a12f17d6325840f440247 (diff) | |
| download | go-x-website-fc5af33ca867e73ef53a27895feaa45b39879b7a.tar.xz | |
internal/history: document Go 1.25.1 and 1.24.7 releases
Change-Id: I6a6a636c81f77a54018eeeb53116d9ada080666a
Reviewed-on: https://go-review.googlesource.com/c/website/+/700616
Reviewed-by: Cherry Mui <cherryyz@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
| -rw-r--r-- | internal/history/release.go | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/internal/history/release.go b/internal/history/release.go index 5b7f05a9..dbc06fbf 100644 --- a/internal/history/release.go +++ b/internal/history/release.go @@ -14,6 +14,23 @@ import "html/template" // The table is sorted by date, breaking ties with newer versions first. var Releases = []*Release{ { + Date: Date{2025, 9, 3}, Version: Version{1, 25, 1}, + Security: &FixSummary{ + Packages: []string{"net/http"}, + }, + Bug: &FixSummary{ + Packages: []string{"net", "os", "os/exec", "testing/synctest"}, + Components: []template.HTML{"the <code>go</code> command"}, + }, + }, + { + Date: Date{2025, 9, 3}, Version: Version{1, 24, 7}, + Bug: &FixSummary{ + Packages: []string{"net", "os/exec"}, + Components: []template.HTML{"the <code>go</code> command"}, + }, + }, + { Date: Date{2025, 8, 12}, Version: Version{1, 25, 0}, }, { |
