Skip to content

Commit 7880925

Browse files
authored
Merge pull request #8871 from aepifanov/release_notes_1.7.3
[release/1.7] Prepare release notes for v1.7.3
2 parents 1b659e7 + 4cb2f15 commit 7880925

File tree

3 files changed

+45
-1
lines changed

3 files changed

+45
-1
lines changed

.mailmap

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

releases/v1.7.3.toml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
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.7.2"
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 third patch release for containerd 1.7 contains various fixes and updates.
26+
27+
### Notable Updates
28+
29+
* **RunC: Update runc binary to v1.1.8** ([#8843](https://github.com/containerd/containerd/pull/8843))
30+
* **CRI: Fix additionalGids: it should fallback to imageConfig.User when securityContext.RunAsUser,RunAsUsername are empty** ([#8824](https://github.com/containerd/containerd/pull/8824))
31+
* **CRI: write generated CNI config atomically** ([#8825](https://github.com/containerd/containerd/pull/8825))
32+
* **Port-Forward: Correctly handle known errors** ([#8806](https://github.com/containerd/containerd/pull/8806))
33+
* **Resolve docker.NewResolver race condition** ([#8799](https://github.com/containerd/containerd/pull/8799))
34+
* **Fix net.ipv4.ping_group_range with userns** ([#8786](https://github.com/containerd/containerd/pull/8786))
35+
* **Runtime/V2/RunC: handle early exits w/o big locks** ([#8712](https://github.com/containerd/containerd/pull/8712))
36+
* **SecComp: always allow name_to_handle_at** ([#8753](https://github.com/containerd/containerd/pull/8753))
37+
* **CRI: Windows Pod Stats: Add a check to skip stats for containers that are not running** ([#8654](https://github.com/containerd/containerd/pull/8654))
38+
* **Task: don't `close()` io before `cancel()`** ([#8658](https://github.com/containerd/containerd/pull/8658))
39+
* **Remove CNI conf_template deprecation** ([#8638](https://github.com/containerd/containerd/pull/8638))
40+
* **Fix issue for HPC pod metrics** ([#8634](https://github.com/containerd/containerd/pull/8634))
41+
42+
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.7.2+unknown"
26+
Version = "1.7.3+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)