From 44e61d7641f71f44353263306a4967276933173b Mon Sep 17 00:00:00 2001 From: Derek McGowan Date: Tue, 14 Feb 2023 21:24:56 -0800 Subject: [PATCH] Add release notes for v1.6.18 Signed-off-by: Derek McGowan --- releases/v1.6.18.toml | 24 ++++++++++++++++++++++++ version/version.go | 2 +- 2 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 releases/v1.6.18.toml diff --git a/releases/v1.6.18.toml b/releases/v1.6.18.toml new file mode 100644 index 000000000000..f19353af2f19 --- /dev/null +++ b/releases/v1.6.18.toml @@ -0,0 +1,24 @@ +# commit to be tagged for new release +commit = "HEAD" + +project_name = "containerd" +github_repo = "containerd/containerd" +match_deps = "^github.com/(containerd/[a-zA-Z0-9-]+)$" + +# previous release +previous = "v1.6.17" + +pre_release = false + +preface = """\ +The eighteenth patch release for containerd 1.6 includes fixes for CVE-2023-25153 and CVE-2023-25173 +along with a security update for Go. + +### Notable Updates + +* **Fix OCI image importer memory exhaustion** ([GHSA-259w-8hf6-59c2](https://github.com/containerd/containerd/security/advisories/GHSA-259w-8hf6-59c2)) +* **Fix supplementary groups not being set up properly** ([GHSA-hmfx-3pcx-653p](https://github.com/containerd/containerd/security/advisories/GHSA-hmfx-3pcx-653p)) +* **Revert removal of `/sbin/apparmor_parser` check** ([#8087](https://github.com/containerd/containerd/pull/8087)) +* **Update Go to 1.19.6** ([#8111](https://github.com/containerd/containerd/pull/8111)) + +See the changelog for complete list of changes""" diff --git a/version/version.go b/version/version.go index 1bb43c1d17c9..ca1b6773abcb 100644 --- a/version/version.go +++ b/version/version.go @@ -23,7 +23,7 @@ var ( Package = "github.com/containerd/containerd" // Version holds the complete version number. Filled in at linking time. - Version = "1.6.17+unknown" + Version = "1.6.18+unknown" // Revision is filled with the VCS (e.g. git) revision being used to build // the program at linking time.