Skip to content

Commit cfd0439

Browse files
authored
Merge pull request #2128 from dmcgowan/release-1.0.2-release-notes
release: prepare 1.0.2
2 parents b99bbe9 + a43eff6 commit cfd0439

2 files changed

Lines changed: 43 additions & 1 deletion

File tree

releases/v1.0.2.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 = "containerd"
5+
github_repo = "containerd/containerd"
6+
7+
# previous release
8+
previous = "v1.0.1"
9+
10+
pre_release = false
11+
12+
preface = """\
13+
This is the second patch release for `containerd` in the 1.0 series. There are
14+
several fixes to reduce memory usage and garbage collection pressure in the
15+
shim. The content store has a few fixes to address cases where download
16+
resumption wasn't working properly. The image store has fixes to be more
17+
efficient and to handle edge cases in the garbage collector. Less CPU will be
18+
used when collecting cgroup metrics.
19+
20+
The most critical fix addresses a hang in runc that can happen due to a race
21+
condition around FIFOs. Make sure to update your runc binary if you are
22+
affected. The fix is described in
23+
https://github.com/opencontainers/runc/pull/1698. Make sure to update to the
24+
runc version in
25+
https://github.com/containerd/containerd/blob/master/RUNC.md to ensure you are not affected.
26+
27+
In addition to the above, a few fixes for handling of layer files have been backported. https://github.com/containerd/containerd/pull/2063
28+
addresses an issue where duplicate directory entries can land in a layer diff
29+
if both the metadata and a child entry are changed.
30+
https://github.com/containerd/containerd/pull/2103 where whiteout files for
31+
parent directories may be missing and a related diff bug https://github.com/containerd/containerd/pull/2127.
32+
33+
The license of the dependency `BurntSushi/toml` has been updated to an MIT
34+
license.
35+
36+
We also now ensure that the vendor directory contents are as expected.
37+
"""
38+
39+
# notable prs to include in the release notes, 1234 is the pr number
40+
[notes]
41+
42+
[breaking]

version/version.go

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

77
// Version holds the complete version number. Filled in at linking time.
8-
Version = "1.0.2-rc.1+unknown"
8+
Version = "1.0.2+unknown"
99

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

0 commit comments

Comments
 (0)