diff options
| author | Dmitri Shuralyov <dmitshur@golang.org> | 2025-12-02 10:23:38 -0500 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2025-12-02 08:09:03 -0800 |
| commit | 52851a50127b85643572e04cecc0f14b03230376 (patch) | |
| tree | 19488dd08e50a3a9256ec3e5e4f2e944d41bb905 /internal | |
| parent | 5713397e2f6aae1a14d9b1e141292be78fc626eb (diff) | |
| download | go-x-website-52851a50127b85643572e04cecc0f14b03230376.tar.xz | |
internal/history: document Go 1.25.5 and 1.24.11 releases
This describes the fix in internal/syscall/windows (CL 718000) as a fix
to package os, as that is the public package whose behavior is affected.
Change-Id: I181a3563bdf1366e6d9304d86ccbc3a209ac50bb
Reviewed-on: https://go-review.googlesource.com/c/website/+/725880
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-by: Mark Freeman <markfreeman@google.com>
Diffstat (limited to 'internal')
| -rw-r--r-- | internal/history/release.go | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/internal/history/release.go b/internal/history/release.go index 6c259e54..c3ca4d12 100644 --- a/internal/history/release.go +++ b/internal/history/release.go @@ -14,9 +14,27 @@ import "html/template" // The table is sorted by date, breaking ties with newer versions first. var Releases = []*Release{ { + Date: Date{2025, 12, 2}, Version: Version{1, 25, 5}, + Security: &FixSummary{ + Quantifier: "two", Packages: []string{"crypto/x509"}, + }, + Bug: &FixSummary{ + Packages: []string{"mime", "os"}, + }, + }, + { + Date: Date{2025, 12, 2}, Version: Version{1, 24, 11}, + Security: &FixSummary{ + Quantifier: "two", Packages: []string{"crypto/x509"}, + }, + Bug: &FixSummary{ + Components: []template.HTML{"the runtime"}, + }, + }, + { Date: Date{2025, 11, 5}, Version: Version{1, 25, 4}, Bug: &FixSummary{ - Packages: []string{"crypto/subtle", "encoding/pem", "net/url", "os"}, + Packages: []string{"crypto/subtle", "encoding/pem", "net/url", "os"}, Components: []template.HTML{"the compiler", "the runtime"}, }, }, |
