From a4fa69927538d336b6c537712b03ebb8e4194535 Mon Sep 17 00:00:00 2001 From: Milos Gajdos Date: Sun, 1 Oct 2023 16:23:59 +0100 Subject: [PATCH] Add v2.8.3 release notes Signed-off-by: Milos Gajdos --- .mailmap | 3 +++ releases/v2.8.3.toml | 41 +++++++++++++++++++++++++++++++++++++++++ version/version.go | 2 +- 3 files changed, 45 insertions(+), 1 deletion(-) create mode 100644 releases/v2.8.3.toml diff --git a/.mailmap b/.mailmap index d94c3936e0..d7b832d9ea 100644 --- a/.mailmap +++ b/.mailmap @@ -49,3 +49,6 @@ Hayley Swimelar Jose D. Gomez R Shengjing Zhu Silvin Lubecki <31478878+silvin-lubecki@users.noreply.github.com> +James Hewitt +Marcus Pettersen Irgens +Ben Manuel diff --git a/releases/v2.8.3.toml b/releases/v2.8.3.toml new file mode 100644 index 0000000000..4ec8efec4d --- /dev/null +++ b/releases/v2.8.3.toml @@ -0,0 +1,41 @@ +# commit to be tagged for new release +commit = "HEAD" + +project_name = "registry" +github_repo = "distribution/distribution" + +# previous release +previous = "v2.8.2" + +pre_release = false + +preface = """\ +Welcome to the 2.8.3 release of registry! + +The 2.8.3 registry release fixes a few bugs and makes a few dependency updates. +The Go runtime has been bumped to 1.20.8. + +See the changelog below for full list of changes. + +### Bugfixes + +* Do not close HTTP request body in HTTP handler ([#4068](https://github.com/distribution/distribution/pull/4068)) +* Set Content-Type header in registry client ReadFrom ([#4053](https://github.com/distribution/distribution/pull/4053)) +* Do not parse errors as JSON unless Content-Type is set to JSON ([#4054](https://github.com/distribution/distribution/pull/4054)) +* Enable Go build tags ([#4009](https://github.com/distribution/distribution/pull/4009)) + +### General updates + +* replace deprecated function SplitHostname ([#4032](https://github.com/distribution/distribution/pull/4032)) + +### Runtime + +* update to go1.20.8 ([#4056](https://github.com/distribution/distribution/pull/4056)) + +### Dependency Changes + +* deprecate digestset package in favor of go-digest/digestset ([#4064](https://github.com/distribution/distribution/pull/4064)) +* deprecate reference package, migrate to github.com/distribution/reference ([#4063](https://github.com/distribution/distribution/pull/4063)) + +Previous release can be found at [v2.8.2](https://github.com/distribution/distribution/releases/tag/v2.8.2) +""" diff --git a/version/version.go b/version/version.go index 567610d9d1..182b300e83 100644 --- a/version/version.go +++ b/version/version.go @@ -8,7 +8,7 @@ var Package = "github.com/docker/distribution" // the latest release tag by hand, always suffixed by "+unknown". During // build, it will be replaced by the actual version. The value here will be // used if the registry is run after a go get based install. -var Version = "v2.8.2+unknown" +var Version = "v2.8.3+unknown" // Revision is filled with the VCS (e.g. git) revision being used to build // the program at linking time.