internal/history: document Go 1.21.1 and 1.20.8 releases

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>
diff --git a/internal/history/release.go b/internal/history/release.go
index e3a35ec..620d8d8 100644
--- a/internal/history/release.go
+++ b/internal/history/release.go
@@ -15,6 +15,22 @@
 // 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},
 	},
 	{