From 6133c79d18fd6c477dcdacb836d62b745430b3cf Mon Sep 17 00:00:00 2001 From: Milos Gajdos Date: Tue, 16 Mar 2021 19:53:39 +0000 Subject: [PATCH 1/3] Prepare for v2.7.2 release Signed-off-by: Milos Gajdos --- releases/v2.7.2.toml | 43 +++++++++++++++++++++++++++++++++++++++++++ version/version.go | 2 +- 2 files changed, 44 insertions(+), 1 deletion(-) create mode 100644 releases/v2.7.2.toml diff --git a/releases/v2.7.2.toml b/releases/v2.7.2.toml new file mode 100644 index 0000000000..9ae239192f --- /dev/null +++ b/releases/v2.7.2.toml @@ -0,0 +1,43 @@ +# commit to be tagged for new release +commit = "HEAD" + +project_name = "registry" +github_repo = "distribution/distribution" + +# previous release +previous = "v2.7.1" + +pre_release = false + +preface = """\ +The 2.7.2 registry release has been a long time overdue. +This is a patch release that improves docs, CI builds +and adds a few bug fixes. + +See changelog below for full list of changes + +### Bugfixes + +* Close the io.ReadCloser from storage driver [#3370](https://github.com/distribution/distribution/pull/3370) +* Remove empty Content-Type header [#3297](https://github.com/distribution/distribution/pull/3297) +* Make ipfilteredby not required [#3088](https://github.com/distribution/distribution/pull/3088) + +### CI build + +* First draft of actions based ci [#3347](https://github.com/distribution/distribution/pull/3347) +* Fix vndr and check [#3001](https://github.com/distribution/distribution/pull/3001) + +### Documentation + +* Add redirect for old URL [#3197](https://github.com/distribution/distribution/pull/3197) +* Fix broken table [#3073](https://github.com/distribution/distribution/pull/3073) +* Adding deprecated schema instructions [#2987](https://github.com/distribution/distribution/pull/2987) + +### Storage drivers + +* S3 Driver: add support for ceph radosgw [#3119](https://github.com/distribution/distribution/pull/3119) + +### Dependency Changes + +This release has no dependency changes +""" diff --git a/version/version.go b/version/version.go index 2519fd6dec..80e6ac6561 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.7.1+unknown" +var Version = "v2.7.2+unknown" // Revision is filled with the VCS (e.g. git) revision being used to build // the program at linking time. From ca23c1fc5e2e2814b807cc29cb79bf22e221dac6 Mon Sep 17 00:00:00 2001 From: Milos Gajdos Date: Tue, 23 Mar 2021 19:37:19 +0000 Subject: [PATCH 2/3] Updated list of release PRs Signed-off-by: Milos Gajdos --- releases/v2.7.2.toml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/releases/v2.7.2.toml b/releases/v2.7.2.toml index 9ae239192f..57c79dd2c7 100644 --- a/releases/v2.7.2.toml +++ b/releases/v2.7.2.toml @@ -26,17 +26,22 @@ See changelog below for full list of changes * First draft of actions based ci [#3347](https://github.com/distribution/distribution/pull/3347) * Fix vndr and check [#3001](https://github.com/distribution/distribution/pull/3001) +* Improve code quality by adding linter checks [#3385](https://github.com/distribution/distribution/pull/3385) ### Documentation * Add redirect for old URL [#3197](https://github.com/distribution/distribution/pull/3197) * Fix broken table [#3073](https://github.com/distribution/distribution/pull/3073) -* Adding deprecated schema instructions [#2987](https://github.com/distribution/distribution/pull/2987) +* Adding deprecated schema instructions [#2987](https://github.com/distribution/distribution/pull/2987) ### Storage drivers * S3 Driver: add support for ceph radosgw [#3119](https://github.com/distribution/distribution/pull/3119) +### Security + +* Added flag for user configurable cipher suites [#3384](https://github.com/distribution/distribution/pull/3384) + ### Dependency Changes This release has no dependency changes From d3cb904fe2867a64bf254f79d3f2c0da94a90a2e Mon Sep 17 00:00:00 2001 From: Milos Gajdos Date: Fri, 9 Apr 2021 16:26:20 +0100 Subject: [PATCH 3/3] Update .mailmap and release notes Signed-off-by: Milos Gajdos --- .mailmap | 11 +++++++++++ releases/v2.7.2.toml | 7 +++++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/.mailmap b/.mailmap index 0f48321d49..eb2ed49fbd 100644 --- a/.mailmap +++ b/.mailmap @@ -30,3 +30,14 @@ Helen Xie Helen-xie Mike Brown Mike Brown Manish Tomar Manish Tomar Sakeven Jiang sakeven +Milos Gajdos Milos Gajdos +Derek McGowan Derek McGowa +Adrian Plata Adrian Plata <@users.noreply.github.com> +Sebastiaan van Stijn Sebastiaan van Stijn +Vishesh Jindal Vishesh Jindal +Wang Yan Wang Yan +Chris Patterson Chris Patterson +Eohyung Lee Eohyung Lee +João Pereira <484633+joaodrp@users.noreply.github.com> +Smasherr Smasherr +Thomas Berger Thomas Berger diff --git a/releases/v2.7.2.toml b/releases/v2.7.2.toml index 57c79dd2c7..b3d4897571 100644 --- a/releases/v2.7.2.toml +++ b/releases/v2.7.2.toml @@ -20,7 +20,10 @@ See changelog below for full list of changes * Close the io.ReadCloser from storage driver [#3370](https://github.com/distribution/distribution/pull/3370) * Remove empty Content-Type header [#3297](https://github.com/distribution/distribution/pull/3297) -* Make ipfilteredby not required [#3088](https://github.com/distribution/distribution/pull/3088) +* Make ipfilteredby not required [#3088](https://github.com/distribution/distribution/pull/3088) + +### Features +* Add reference.ParseDockerRef utility function [#3002](https://github.com/distribution/distribution/pull/3002) ### CI build @@ -32,7 +35,7 @@ See changelog below for full list of changes * Add redirect for old URL [#3197](https://github.com/distribution/distribution/pull/3197) * Fix broken table [#3073](https://github.com/distribution/distribution/pull/3073) -* Adding deprecated schema instructions [#2987](https://github.com/distribution/distribution/pull/2987) +* Adding deprecated schema v1 instructions [#2987](https://github.com/distribution/distribution/pull/2987) ### Storage drivers