Skip to content

Commit d6ad5f4

Browse files
committed
internal/history: document Go 1.20.7 and 1.19.12 releases
For both minor releases, backported CLs were: crypto/tls: restrict RSA keys in certificates to <= 8192 bits cmd/asm, cmd/internal/obj: generate proper atomic ops for riscv64 net: tolerate permission errors in interface tests cmd/compile: on PPC64, fix sign/zero extension when masking Change-Id: I0f13a6a6251b50f8576ca522c7714ddf3975afc7 Reviewed-on: https://go-review.googlesource.com/c/website/+/514996 TryBot-Result: Gopher Robot <[email protected]> Run-TryBot: David Chase <[email protected]> Reviewed-by: Matthew Dempsky <[email protected]>
1 parent 496c979 commit d6ad5f4

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

internal/history/release.go

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,22 @@ 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{2023, 8, 1}, Version: Version{1, 20, 7},
19+
Security: &FixSummary{Quantifier: "a", Packages: []string{"crypto/tls"}},
20+
Bug: &FixSummary{
21+
Components: []template.HTML{"the assembler", "the compiler"},
22+
Packages: []string{},
23+
},
24+
},
25+
{
26+
Date: Date{2023, 8, 1}, Version: Version{1, 19, 12},
27+
Security: &FixSummary{Quantifier: "a", Packages: []string{"crypto/tls"}},
28+
Bug: &FixSummary{
29+
Components: []template.HTML{"the assembler", "the compiler"},
30+
Packages: []string{},
31+
},
32+
},
1733
{
1834
Date: Date{2023, 7, 11}, Version: Version{1, 20, 6},
1935
Security: &FixSummary{Quantifier: "a", Packages: []string{"net/http"}},

0 commit comments

Comments
 (0)