diff options
| -rw-r--r-- | internal/history/release.go | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/internal/history/release.go b/internal/history/release.go index 6c259e54..c3ca4d12 100644 --- a/internal/history/release.go +++ b/internal/history/release.go @@ -14,9 +14,27 @@ import "html/template" // The table is sorted by date, breaking ties with newer versions first. var Releases = []*Release{ { + Date: Date{2025, 12, 2}, Version: Version{1, 25, 5}, + Security: &FixSummary{ + Quantifier: "two", Packages: []string{"crypto/x509"}, + }, + Bug: &FixSummary{ + Packages: []string{"mime", "os"}, + }, + }, + { + Date: Date{2025, 12, 2}, Version: Version{1, 24, 11}, + Security: &FixSummary{ + Quantifier: "two", Packages: []string{"crypto/x509"}, + }, + Bug: &FixSummary{ + Components: []template.HTML{"the runtime"}, + }, + }, + { Date: Date{2025, 11, 5}, Version: Version{1, 25, 4}, Bug: &FixSummary{ - Packages: []string{"crypto/subtle", "encoding/pem", "net/url", "os"}, + Packages: []string{"crypto/subtle", "encoding/pem", "net/url", "os"}, Components: []template.HTML{"the compiler", "the runtime"}, }, }, |
