internal/history: document Go 1.19.2 and 1.18.7 releases

Change-Id: I16189d677f83d3508aa3a6b4841b0e30b47312ca
Reviewed-on: https://go-review.googlesource.com/c/website/+/438180
Run-TryBot: Carlos Amedee <carlos@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@golang.org>
Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
Reviewed-by: Carlos Amedee <carlos@golang.org>
diff --git a/internal/history/release.go b/internal/history/release.go
index 383ba72..0bb5ea5 100644
--- a/internal/history/release.go
+++ b/internal/history/release.go
@@ -15,6 +15,26 @@
 // The table is sorted by date, breaking ties with newer versions first.
 var Releases = []*Release{
 	{
+		Date: Date{2022, 10, 4}, Version: Version{1, 19, 2},
+		Security: &FixSummary{
+			Packages: []string{"archive/tar", "net/http/httputil", "regexp"},
+		},
+		Bug: &FixSummary{
+			Components: []template.HTML{"the compiler", "the linker", "the runtime"},
+			Packages:   []string{"go/types"},
+		},
+	},
+	{
+		Date: Date{2022, 10, 4}, Version: Version{1, 18, 7},
+		Security: &FixSummary{
+			Packages: []string{"archive/tar", "net/http/httputil", "regexp"},
+		},
+		Bug: &FixSummary{
+			Components: []template.HTML{"the compiler", "the linker"},
+			Packages:   []string{"go/types"},
+		},
+	},
+	{
 		Date: Date{2022, 9, 6}, Version: Version{1, 19, 1},
 		Security: &FixSummary{
 			Packages: []string{"net/http", "net/url"},