Browse code

update containerd binary to v1.7.12

- full diff: https://github.com/containerd/containerd/compare/v1.7.11...v1.7.12
- release notes: https://github.com/containerd/containerd/releases/tag/v1.7.12

Welcome to the v1.7.12 release of containerd!

The twelfth patch release for containerd 1.7 contains various fixes and updates.

Notable Updates

- Fix on dialer function for Windows
- Improve `/etc/group` handling when appending groups
- Update shim pidfile permissions to 0644
- Update runc binary to v1.1.11
- Allow import and export to reference missing content
- Remove runc import
- Update Go version to 1.20.13

Deprecation Warnings

- Emit deprecation warning for `containerd.io/restart.logpath` label usage

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>

Sebastiaan van Stijn authored on 2024/01/13 01:56:37
Showing 3 changed files
... ...
@@ -198,7 +198,7 @@ RUN git init . && git remote add origin "https://github.com/containerd/container
198 198
 # When updating the binary version you may also need to update the vendor
199 199
 # version to pick up bug fixes or new APIs, however, usually the Go packages
200 200
 # are built from a commit from the master branch.
201
-ARG CONTAINERD_VERSION=v1.7.11
201
+ARG CONTAINERD_VERSION=v1.7.12
202 202
 RUN git fetch -q --depth 1 origin "${CONTAINERD_VERSION}" +refs/tags/*:refs/tags/* && git checkout -q FETCH_HEAD
203 203
 
204 204
 FROM base AS containerd-build
... ...
@@ -164,7 +164,7 @@ SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPref
164 164
 ARG GO_VERSION=1.21.6
165 165
 ARG GOTESTSUM_VERSION=v1.8.2
166 166
 ARG GOWINRES_VERSION=v0.3.1
167
-ARG CONTAINERD_VERSION=v1.7.11
167
+ARG CONTAINERD_VERSION=v1.7.12
168 168
 
169 169
 # Environment variable notes:
170 170
 #  - GO_VERSION must be consistent with 'Dockerfile' used by Linux.
... ...
@@ -15,7 +15,7 @@ set -e
15 15
 # the binary version you may also need to update the vendor version to pick up
16 16
 # bug fixes or new APIs, however, usually the Go packages are built from a
17 17
 # commit from the master branch.
18
-: "${CONTAINERD_VERSION:=v1.7.11}"
18
+: "${CONTAINERD_VERSION:=v1.7.12}"
19 19
 
20 20
 install_containerd() (
21 21
 	echo "Install containerd version $CONTAINERD_VERSION"