diff options
| author | David Chase <drchase@google.com> | 2021-06-03 14:37:26 -0400 |
|---|---|---|
| committer | David Chase <drchase@google.com> | 2021-06-03 20:40:35 +0000 |
| commit | 9478f6c83f66c83f900ef31ec17254d1edbee5bd (patch) | |
| tree | 861c2446231df4e8e59987cb7cfb28f43f2e524f | |
| parent | 1d2c8e57cf34bc3b4cdb8c9ea58804f6136aa623 (diff) | |
| download | go-x-website-9478f6c83f66c83f900ef31ec17254d1edbee5bd.tar.xz | |
internal/history: document Go 1.16.5 and Go 1.15.13
Second security+dot release, another custom summary.
Change-Id: Ic36179259896f06cdbe7958f8d45628dc41f2ac3
Reviewed-on: https://go-review.googlesource.com/c/website/+/324772
Trust: David Chase <drchase@google.com>
Run-TryBot: David Chase <drchase@google.com>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Carlos Amedee <carlos@golang.org>
| -rw-r--r-- | internal/history/release.go | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/internal/history/release.go b/internal/history/release.go index 1459eeb4..a3deec2c 100644 --- a/internal/history/release.go +++ b/internal/history/release.go @@ -15,6 +15,26 @@ import "html/template" // The table is sorted by date, breaking ties with newer versions first. var Releases = []*Release{ { + Date: Date{2021, 6, 3}, Version: Version{1, 16, 5}, + CustomSummary: `includes security fixes to the +<code>archive/zip</code>, <code>math/big</code>, +<code>net</code>, and <code>net/http/httputil</code> packages, +as well as bug fixes to the linker, the <code>go</code> command, +and the <code>net/http</code> package. See the +<a href="https://github.com/golang/go/issues?q=milestone%3AGo1.16.5+label%3ACherryPickApproved">Go +1.16.5 milestone</a> on our issue tracker for details.`, + }, + { + Date: Date{2021, 6, 3}, Version: Version{1, 15, 13}, + CustomSummary: `includes security fixes to the +<code>archive/zip</code>, <code>math/big</code>, +<code>net</code>, and <code>net/http/httputil</code> packages, +as well as bug fixes to the linker, the <code>go</code> command, +and the <code>math/big</code> and <code>net/http</code> packages. See the +<a href="https://github.com/golang/go/issues?q=milestone%3AGo1.15.13+label%3ACherryPickApproved">Go +1.15.13 milestone</a> on our issue tracker for details.`, + }, + { Date: Date{2021, 5, 6}, Version: Version{1, 16, 4}, CustomSummary: `includes a security fix to the <code>net/http</code> package, as well as bug fixes to the runtime, @@ -29,8 +49,8 @@ and <code>syscall</code> packages. See the <code>net/http</code> package, as well as bug fixes to the runtime, the compiler, and the <code>archive/zip</code>, <code>time</code>, and <code>syscall</code> packages. See the -<a href="https://github.com/golang/go/issues?q=milestone%3AGo1.16.4+label%3ACherryPickApproved">Go -1.16.4 milestone</a> on our issue tracker for details.`, +<a href="https://github.com/golang/go/issues?q=milestone%3AGo1.15.12+label%3ACherryPickApproved">Go +1.15.12 milestone</a> on our issue tracker for details.`, }, { Date: Date{2021, 4, 1}, Version: Version{1, 16, 3}, |
