Skip to content

Commit

Permalink
internal/history: document Go 1.21.1 and 1.20.8 releases
Browse files Browse the repository at this point in the history
Change-Id: Ie19057da92a098ee0e501488f0f5c9a117a0d287
Reviewed-on: https://go-review.googlesource.com/c/website/+/526155
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
  • Loading branch information
cherrymui committed Sep 6, 2023
1 parent bf1f8eb commit a41789e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions internal/history/release.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,22 @@ import "html/template"
//
// The table is sorted by date, breaking ties with newer versions first.
var Releases = []*Release{
{
Date: Date{2023, 9, 6}, Version: Version{1, 21, 1},
Security: &FixSummary{Quantifier: "four", Packages: []string{"cmd/go", "crypto/tls", "html/template"}},
Bug: &FixSummary{
Components: []template.HTML{"the compiler", "the <code>go</code> command", "the linker", "the runtime"},
Packages: []string{"context", "crypto/tls", "encoding/gob", "encoding/xml", "go/types", "net/http", "os", "path/filepath"},
},
},
{
Date: Date{2023, 9, 6}, Version: Version{1, 20, 8},
Security: &FixSummary{Quantifier: "two", Packages: []string{"html/template"}},
Bug: &FixSummary{
Components: []template.HTML{"the compiler", "the <code>go</code> command", "the runtime"},
Packages: []string{"crypto/tls", "go/types", "net/http", "path/filepath"},
},
},
{
Date: Date{2023, 8, 8}, Version: Version{1, 21, 0},
},
Expand Down

0 comments on commit a41789e

Please sign in to comment.