Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add v2.8.2 release notes #3915

Merged
merged 1 commit into from May 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 4 additions & 2 deletions releases/v2.8.2-beta.toml → releases/v2.8.2.toml
Expand Up @@ -10,9 +10,9 @@ previous = "v2.8.1"
pre_release = false

preface = """\
Welcome to the 2.8.2-beta.2 release of registry!
Welcome to the 2.8.2 release of registry!

The 2.8.2-beta.2 registry release fixes several security vulnerabilities.
The 2.8.2 registry release fixes several security vulnerabilities.
The Go runtime has been bumped to 1.19.

See the changelog below for full list of changes.
Expand All @@ -25,6 +25,8 @@ See the changelog below for full list of changes.

* 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))
* Parse http forbidden as denied ([#3914](https://github.com/distribution/distribution/pull/3914))
* Revert "registry/client: set Accept: identity header when getting layers ([#3783](https://github.com/distribution/distribution/pull/3783))

### Runtime

Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Expand Up @@ -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-beta.2+unknown"
var Version = "v2.8.2+unknown"

// Revision is filled with the VCS (e.g. git) revision being used to build
// the program at linking time.
Expand Down