Skip to content

Commit a9d101e

Browse files
committed
internal/history: document Go 1.23.5 and 1.22.11 releases
Change-Id: I294b7fc746e6752eb92b70e8f80d7b4c74de3ba0 Reviewed-on: https://go-review.googlesource.com/c/website/+/643195 LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Michael Pratt <[email protected]>
1 parent 2946a7c commit a9d101e

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

internal/history/release.go

+19
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,25 @@ 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, 1, 16}, Version: Version{1, 23, 5},
18+
Security: &FixSummary{
19+
Packages: []string{"crypto/x509", "net/http"},
20+
},
21+
Bug: &FixSummary{
22+
Components: []template.HTML{"the compiler", "the runtime"},
23+
Packages: []string{"net"},
24+
},
25+
},
26+
{
27+
Date: Date{2025, 1, 16}, Version: Version{1, 22, 11},
28+
Security: &FixSummary{
29+
Packages: []string{"crypto/x509", "net/http"},
30+
},
31+
Bug: &FixSummary{
32+
Components: []template.HTML{"the runtime"},
33+
},
34+
},
1635
{
1736
Date: Date{2024, 12, 3}, Version: Version{1, 23, 4},
1837
Bug: &FixSummary{

0 commit comments

Comments
 (0)