Skip to content

Commit ea18705

Browse files
mknyszekgopherbot
authored andcommitted
internal/history: document Go 1.22.1 and Go 1.21.8
Change-Id: I336ef9df817dc82bcf404bd72f859555d487fec0 Reviewed-on: https://go-review.googlesource.com/c/website/+/569295 Reviewed-by: Carlos Amedee <[email protected]> Auto-Submit: Michael Knyszek <[email protected]> LUCI-TryBot-Result: Go LUCI <[email protected]>
1 parent 2a843f5 commit ea18705

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

internal/history/release.go

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,25 @@ 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, 3, 5}, Version: Version{1, 22, 1},
19+
Security: &FixSummary{
20+
Packages: []string{"crypto/x509", "html/template", "net/http", "net/http/cookiejar", "net/mail"},
21+
},
22+
Bug: &FixSummary{
23+
Components: []template.HTML{"the compiler", "the <code>go</code> command", "the runtime", "the <code>trace</code> command"},
24+
Packages: []string{"go/types", "net/http"},
25+
},
26+
},
27+
{
28+
Date: Date{2024, 3, 5}, Version: Version{1, 21, 8},
29+
Security: &FixSummary{
30+
Packages: []string{"crypto/x509", "html/template", "net/http", "net/http/cookiejar", "net/mail"},
31+
},
32+
Bug: &FixSummary{
33+
Components: []template.HTML{"the <code>go</code> command", "the runtime"},
34+
},
35+
},
1736
{
1837
Date: Date{2024, 2, 6}, Version: Version{1, 22, 0},
1938
},

0 commit comments

Comments
 (0)