Skip to content

Commit 4bde6d1

Browse files
committed
internal/history: document Go 1.22.3 and 1.21.10 releases
Change-Id: I2896372623027eceb1edfd9fea0cc8241295dff0 Reviewed-on: https://go-review.googlesource.com/c/website/+/583777 Reviewed-by: David Chase <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]>
1 parent 5a7bd31 commit 4bde6d1

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
@@ -14,6 +14,26 @@ import "html/template"
1414
//
1515
// The table is sorted by date, breaking ties with newer versions first.
1616
var Releases = []*Release{
17+
{
18+
Date: Date{2024, 5, 7}, Version: Version{1, 22, 3},
19+
Security: &FixSummary{
20+
Components: []template.HTML{"the <code>go</code> command"},
21+
Packages: []string{"net"},
22+
},
23+
Bug: &FixSummary{
24+
Components: []template.HTML{"the compiler", "the runtime"},
25+
Packages: []string{"net/http"},
26+
},
27+
},
28+
{
29+
Date: Date{2024, 5, 7}, Version: Version{1, 21, 10},
30+
Security: &FixSummary{
31+
Components: []template.HTML{"the <code>go</code> command"},
32+
},
33+
Bug: &FixSummary{
34+
Packages: []string{"net/http"},
35+
},
36+
},
1737
{
1838
Date: Date{2024, 4, 3}, Version: Version{1, 22, 2},
1939
Security: &FixSummary{Quantifier: "a", Packages: []string{"net/http"}},

0 commit comments

Comments
 (0)