Skip to content

Commit 8165fea

Browse files
authored
Merge pull request containerd#8863 from aepifanov/release_notest_1.6.22
[release/1.6] Prepare release notes for v1.6.22
2 parents c029d4d + 0770a46 commit 8165fea

File tree

3 files changed

+50
-1
lines changed

3 files changed

+50
-1
lines changed

.mailmap

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,3 +145,5 @@ Zhoulin Xie <zhoulin.xie@daocloud.io>
145145
Zhoulin Xie <zhoulin.xie@daocloud.io> <42261994+JoeWrightss@users.noreply.github.com>
146146
zounengren <zouyee1989@gmail.com> <zounengren@cmss.chinamobile.com>
147147
张潇 <xiaozhang0210@hotmail.com>
148+
Kazuyoshi Kato <kaz@fly.io> <katokazu@amazon.com>
149+
Andrey Epifanov <epifanov.andrey@gmail.com> <aepifanov@mirantis.com>

releases/v1.6.22.toml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# commit to be tagged for new release
2+
commit = "HEAD"
3+
4+
# project_name is used to refer to the project in the notes
5+
project_name = "containerd"
6+
7+
# github_repo is the github project, only github is currently supported
8+
github_repo = "containerd/containerd"
9+
10+
# match_deps is a pattern to determine which dependencies should be included
11+
# as part of this release. The changelog will also include changes for these
12+
# dependencies based on the change in the dependency's version.
13+
match_deps = "^github.com/(containerd/[a-zA-Z0-9-]+)$"
14+
15+
# previous release of this project for determining changes
16+
previous = "v1.6.21"
17+
18+
# pre_release is whether to include a disclaimer about being a pre-release
19+
pre_release = false
20+
21+
# preface is the description of the release which precedes the author list
22+
# and changelog. This description could include highlights as well as any
23+
# description of changes. Use markdown formatting.
24+
preface = """\
25+
The twenty-second patch release for containerd 1.6 contains various fixes and updates.
26+
27+
### Notable Updates
28+
29+
* **RunC: Update runc binary to v1.1.8** ([#8842](https://github.com/containerd/containerd/pull/8842))
30+
* **CRI: Fix additionalGids: it should fallback to imageConfig.User when securityContext.RunAsUser,RunAsUsername are empty** ([#8823](https://github.com/containerd/containerd/pull/8823))
31+
* **CRI: Write generated CNI config atomically** ([#8826](https://github.com/containerd/containerd/pull/8826))
32+
* **Fix concurrent writes for `UpdateContainerStats`** ([#8819](https://github.com/containerd/containerd/pull/8819))
33+
* **Make checkContainerTimestamps less strict on Windows** ([#8827](https://github.com/containerd/containerd/pull/8827))
34+
* **Port-Forward: Correctly handle known errors** ([#8805](https://github.com/containerd/containerd/pull/8805))
35+
* **Resolve docker.NewResolver race condition** ([#8800](https://github.com/containerd/containerd/pull/8800))
36+
* **SecComp: Always allow `name_to_handle_at`** ([#8754](https://github.com/containerd/containerd/pull/8754))
37+
* **Adding support to run hcsshim from local clone** ([#8713](https://github.com/containerd/containerd/pull/8713))
38+
* **Pinned image support** ([#8720](https://github.com/containerd/containerd/pull/8720))
39+
* **Runtime/V2/RunC: Handle early exits w/o big locks** ([#8695](https://github.com/containerd/containerd/pull/8695))
40+
* **CRITool: Move up to CRI-TOOLS v1.27.0** ([#7997](https://github.com/containerd/containerd/pull/7997))
41+
* **Fix cpu architecture detection issue on emulated ARM platform** ([#8533](https://github.com/containerd/containerd/pull/8533))
42+
* **Task: Don't `close()` io before `cancel()`** ([#8659](https://github.com/containerd/containerd/pull/8659))
43+
* **Fix panic when remote differ returns empty result** ([#8640](https://github.com/containerd/containerd/pull/8640))
44+
* **Plugins: Notify readiness when registered plugins are ready** ([#8583](https://github.com/containerd/containerd/pull/8583))
45+
* **Unwrap io errors in server connection receive error handling** ([ttrpc#143](https://github.com/containerd/ttrpc/pull/143))
46+
47+
See the changelog for complete list of changes"""

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ var (
2323
Package = "github.com/containerd/containerd"
2424

2525
// Version holds the complete version number. Filled in at linking time.
26-
Version = "1.6.21+unknown"
26+
Version = "1.6.22+unknown"
2727

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

0 commit comments

Comments
 (0)