Skip to content

Commit ca54a2a

Browse files
committed
internal/history: document Go 1.25.2 and 1.24.8 releases
Change-Id: I6a6a636cd99d5c4b02b721af0b87249982a88b4f Reviewed-on: https://go-review.googlesource.com/c/website/+/709935 Reviewed-by: Carlos Amedee <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]>
1 parent 0ef0108 commit ca54a2a

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

internal/history/release.go

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,26 @@ import "html/template"
1313
//
1414
// The table is sorted by date, breaking ties with newer versions first.
1515
var Releases = []*Release{
16+
{
17+
Date: Date{2025, 10, 7}, Version: Version{1, 25, 2},
18+
Security: &FixSummary{
19+
Packages: []string{"archive/tar", "crypto/tls", "crypto/x509", "encoding/asn1", "encoding/pem", "net/http", "net/mail", "net/textproto", "net/url"},
20+
},
21+
Bug: &FixSummary{
22+
Packages: []string{"context", "debug/pe", "net/http", "os", "sync/atomic"},
23+
Components: []template.HTML{"the compiler", "the runtime"},
24+
},
25+
},
26+
{
27+
Date: Date{2025, 10, 7}, Version: Version{1, 24, 8},
28+
Security: &FixSummary{
29+
Packages: []string{"archive/tar", "crypto/tls", "crypto/x509", "encoding/asn1", "encoding/pem", "net/http", "net/mail", "net/textproto", "net/url"},
30+
},
31+
Bug: &FixSummary{
32+
Packages: []string{"debug/pe", "net/http", "os", "sync/atomic"},
33+
Components: []template.HTML{"the compiler", "the linker"},
34+
},
35+
},
1636
{
1737
Date: Date{2025, 9, 3}, Version: Version{1, 25, 1},
1838
Security: &FixSummary{

0 commit comments

Comments
 (0)