From 6288559231a5c01aeeba316b5be2bfd0c02a3434 Mon Sep 17 00:00:00 2001 From: Derek McGowan Date: Mon, 3 Aug 2020 15:18:21 -0700 Subject: [PATCH] Prepare 1.4.0-rc.0 release Move beta release notes and update version Signed-off-by: Derek McGowan --- releases/{v1.4.0-beta.toml => v1.4.0-rc.toml} | 5 ++++- version/version.go | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) rename releases/{v1.4.0-beta.toml => v1.4.0-rc.toml} (94%) diff --git a/releases/v1.4.0-beta.toml b/releases/v1.4.0-rc.toml similarity index 94% rename from releases/v1.4.0-beta.toml rename to releases/v1.4.0-rc.toml index 9f1db3089..bd3e49724 100644 --- a/releases/v1.4.0-beta.toml +++ b/releases/v1.4.0-rc.toml @@ -27,6 +27,7 @@ while driving toward ever increasing stability. * **Support cgroups v2** [#3726](https://github.com/containerd/containerd/pull/3726) * **Improved SELinux support** * **Rework shim logger shutdown process** [#4162](https://github.com/containerd/containerd/pull/4162) +* **Deprecate `io.containerd.runtime.v1.*` and `io.containerd.runc.v1`** [#4384](https://github.com/containerd/containerd/pull/4384) ### Snapshots * **Support target snapshot option on prepare to allow skipping prepare when snapshot reports target already exists** [#3793](https://github.com/containerd/containerd/pull/3793) @@ -47,9 +48,10 @@ while driving toward ever increasing stability. * **Split UID and GID namespace mapping in spec generation** [#3881](https://github.com/containerd/containerd/pull/3881) * **Propagate snapshotter layer annotations on unpack** [#3911](https://github.com/containerd/containerd/pull/3911) * **Create image record after blob download to fix concurrent download issue** [#3972](https://github.com/containerd/containerd/pull/3972) +* **Use spec's mountLabel when mounting container rootfs** [#4051](https://github.com/containerd/containerd/pull/4051) * **Add Linux resources to spec options** [#4083](https://github.com/containerd/containerd/pull/4083) * **New registry configuration tooling for improved mirror and endpoint options** [#4138](https://github.com/containerd/containerd/pull/4138) -* **Use spec's mountLabel when mounting container rootfs** [#4051](https://github.com/containerd/containerd/pull/4051) +* **Add namespace query parameter when using a registry proxy** [#4413](https://github.com/containerd/containerd/pull/4413) ### API * **Add filters to snapshot list** [#3709](https://github.com/containerd/containerd/pull/3709) @@ -57,6 +59,7 @@ while driving toward ever increasing stability. ### Daemon * **Support NOTIFY_SOCKET for notifying the daemon's readiness to systemd** [#4088](https://github.com/containerd/containerd/pull/4088) +* **Remove libseccomp requirement, seccomp support is now always built-in** [#4439](https://github.com/containerd/containerd/pull/4439) ### Windows * **Disk usage support in snapshotter** [#3785](https://github.com/containerd/containerd/pull/3785) diff --git a/version/version.go b/version/version.go index 566ee1147..077ca2ffb 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.4.0-beta.2+unknown" + Version = "1.4.0-rc.0+unknown" // Revision is filled with the VCS (e.g. git) revision being used to build // the program at linking time.