internal/history: document Go 1.23.1 and 1.22.7 releases

Change-Id: I0ee4a16d8422be4d542f1e4ea2de0f456fca383d
Reviewed-on: https://go-review.googlesource.com/c/website/+/610802
Auto-Submit: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-by: Michael Pratt <mpratt@google.com>
LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
This commit is contained in:
Dmitri Shuralyov 2024-09-05 09:37:09 -04:00 коммит произвёл Gopher Robot
Родитель ac2f5a4e42
Коммит ee5e1f3cc4
1 изменённых файлов: 19 добавлений и 0 удалений

Просмотреть файл

@ -13,6 +13,25 @@ import "html/template"
//
// The table is sorted by date, breaking ties with newer versions first.
var Releases = []*Release{
{
Date: Date{2024, 9, 5}, Version: Version{1, 23, 1},
Security: &FixSummary{
Packages: []string{"encoding/gob", "go/build/constraint", "go/parser"},
},
Bug: &FixSummary{
Components: []template.HTML{"the compiler", "the <code>go</code> command", "the runtime"},
Packages: []string{"database/sql", "go/types", "os", "runtime/trace", "unique"},
},
},
{
Date: Date{2024, 9, 5}, Version: Version{1, 22, 7},
Security: &FixSummary{
Packages: []string{"encoding/gob", "go/build/constraint", "go/parser"},
},
Bug: &FixSummary{
Components: []template.HTML{"the <code>fix</code> command", "the runtime"},
},
},
{
Date: Date{2024, 8, 13}, Version: Version{1, 23, 0},
},