From e260e8ab739081d43d35054bd587111a25efb3fc Mon Sep 17 00:00:00 2001 From: Derek McGowan Date: Wed, 14 Dec 2022 12:22:05 -0800 Subject: [PATCH] Prepare release notes for v1.6.13 Signed-off-by: Derek McGowan --- releases/v1.6.13.toml | 26 ++++++++++++++++++++++++++ version/version.go | 2 +- 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 releases/v1.6.13.toml diff --git a/releases/v1.6.13.toml b/releases/v1.6.13.toml new file mode 100644 index 000000000000..b32a38463779 --- /dev/null +++ b/releases/v1.6.13.toml @@ -0,0 +1,26 @@ +# 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.12" + +pre_release = false + +preface = """\ +The thirteenth patch release for containerd 1.6 contains various fixes and updates. + +### Notable Updates + +* **Update overlay snapshotter to check for tmpfs when evaluating usage of userxattr** ([#7788](https://github.com/containerd/containerd/pull/7788)) +* **Update hcsschim to v0.9.6 to fix resource leak on exec** ([#7808](https://github.com/containerd/containerd/pull/7808)) +* **Make swapping disabled with memory limit in CRI plugin** ([#7815](https://github.com/containerd/containerd/pull/7815)) +* **Allow clients to remove created tasks with PID 0** ([#7816](https://github.com/containerd/containerd/pull/7816)) +* **Fix concurrent map iteration and map write in CRI port forwarding** ([#7819](https://github.com/containerd/containerd/pull/7819)) +* **Check for nil `HugepageLimits` to avoid panic in CRI plugin** ([#7820](https://github.com/containerd/containerd/pull/7820)) + + +See the changelog for complete list of changes""" diff --git a/version/version.go b/version/version.go index 6e76097d2719..6938279ee6db 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.12+unknown" + Version = "1.6.13+unknown" // Revision is filled with the VCS (e.g. git) revision being used to build // the program at linking time.