Skip to content

Commit

Permalink
internal/history: document Go 1.21.5 and 1.20.12 releases
Browse files Browse the repository at this point in the history
Change-Id: I63f25161b6a65be28c85faba67a0c8bf87f63dc8
Reviewed-on: https://go-review.googlesource.com/c/website/+/547535
Commit-Queue: Carlos Amedee <carlos@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
  • Loading branch information
cagedmantis committed Dec 5, 2023
1 parent 7d8d2df commit 0b9a73d
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions internal/history/release.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,26 @@ import "html/template"
//
// The table is sorted by date, breaking ties with newer versions first.
var Releases = []*Release{
{
Date: Date{2023, 12, 5}, Version: Version{1, 21, 5},
Security: &FixSummary{
Components: []template.HTML{"the <code>go</code> command"},
Packages: []string{"net/http", "path/filepath"},
},
Bug: &FixSummary{
Components: []template.HTML{"the compiler", "the <code>go</code> command", "the runtime"},
Packages: []string{"crypto/rand", "net", "os", "syscall"},
},
},
{
Date: Date{2023, 12, 5}, Version: Version{1, 20, 12},
Security: &FixSummary{
Components: []template.HTML{"the <code>go</code> command"},
Packages: []string{"net/http", "path/filepath"},
},
Bug: &FixSummary{
Components: []template.HTML{"the compiler", "the <code>go</code> command"}},
},
{
Date: Date{2023, 11, 7}, Version: Version{1, 21, 4},
Security: &FixSummary{Packages: []string{"path/filepath"}},
Expand Down

0 comments on commit 0b9a73d

Please sign in to comment.