From ac6c72b25fd258449f166acd3bc5961479c8072f Mon Sep 17 00:00:00 2001 From: Milos Gajdos Date: Tue, 9 May 2023 22:15:05 +0100 Subject: [PATCH] Add 2.8.2-beta.1 release notes Signed-off-by: Milos Gajdos --- .mailmap | 6 ++++-- releases/v2.8.2-beta.toml | 40 +++++++++++++++++++++++++++++++++++++++ version/version.go | 2 +- 3 files changed, 45 insertions(+), 3 deletions(-) create mode 100644 releases/v2.8.2-beta.toml diff --git a/.mailmap b/.mailmap index 8f3738f3d..d94c3936e 100644 --- a/.mailmap +++ b/.mailmap @@ -44,6 +44,8 @@ Thomas Berger Thomas Berger Samuel Karp Samuel Karp Justin Cormack sayboras -CrazyMax CrazyMax <1951866+crazy-max@users.noreply.github.com> -CrazyMax +Hayley Swimelar +Jose D. Gomez R +Shengjing Zhu +Silvin Lubecki <31478878+silvin-lubecki@users.noreply.github.com> diff --git a/releases/v2.8.2-beta.toml b/releases/v2.8.2-beta.toml new file mode 100644 index 000000000..8f6c2e711 --- /dev/null +++ b/releases/v2.8.2-beta.toml @@ -0,0 +1,40 @@ +# commit to be tagged for new release +commit = "HEAD" + +project_name = "registry" +github_repo = "distribution/distribution" + +# previous release +previous = "v2.8.1" + +pre_release = false + +preface = """\ +Welcome to the 2.8.2-beta.1 release of registry! + +The 2.8.2-beta.1 registry release fixes several security vulnerabilities. +The Go runtime has been bumped to 1.19. + +See the changelog below for full list of changes. + +### Bugfixes + +* Fix panic in inmemory driver ([#3815](https://github.com/distribution/distribution/pull/3815)) +* Add code to handle pagination of parts. Fixes max layer size of 10GB bug ([#3893](https://github.com/distribution/distribution/pull/3893)) + +### Runtime + +* Update to go1.19.9 ([#3908](https://github.com/distribution/distribution/pull/3908)) +* Dockerfile: update xx to v1.2.1 ([#3907](https://github.com/distribution/distribution/pull/3907)) + +### Security + +* Fix CVE-2022-28391 by bumping alpine from 3.14 to 3.16 ([#3650](https://github.com/distribution/distribution/pull/3650)) +* Fix runaway allocation on /v2/_catalog [`521ea3d9`](https://github.com/distribution/distribution/commit/521ea3d973cb0c7089ebbcdd4ccadc34be941f54) + +### Dependency Changes + +This release has no dependency changes + +Previous release can be found at [v2.8.1](https://github.com/distribution/distribution/releases/tag/v2.8.1) +""" diff --git a/version/version.go b/version/version.go index a55f53144..dec503de4 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.1+unknown" +var Version = "v2.8.2-beta.1+unknown" // Revision is filled with the VCS (e.g. git) revision being used to build // the program at linking time.