Skip to content

Commit 9f2e07b

Browse files
authored
Merge pull request containerd#2675 from estesp/release-1.1.4-prep
[release/1.1] Prepare for v1.1.4 fix release
2 parents b9819f4 + 17d70e2 commit 9f2e07b

File tree

2 files changed

+52
-1
lines changed

2 files changed

+52
-1
lines changed

releases/v1.1.4.toml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# commit to be tagged for new release
2+
commit = "HEAD"
3+
4+
project_name = "containerd"
5+
github_repo = "containerd/containerd"
6+
match_deps = "^github.com/(containerd/[a-zA-Z0-9-]+)$"
7+
8+
# previous release
9+
previous = "v1.1.3"
10+
11+
pre_release = false
12+
13+
preface = """\
14+
This is the fourth patch release for the `containerd` 1.1 release. This
15+
release includes several fixes in both the CRI plugin and containerd
16+
behavior as more real-world testing is occurring on containerd-based
17+
Kubernetes clusters.
18+
19+
Containerd now handles a large number of layers using the overlayfs
20+
snapshotter properly. Also, supplemental GIDs found in `/etc/groups` for
21+
the running user are added to the OCI spec "additionalGids" array.
22+
23+
The additional GIDs change and also setting `HOSTNAME` in the environment
24+
of containers running in a pod are both fixed in this release, matching
25+
expected Docker engine behavior.
26+
27+
## Containerd
28+
Fix a potential content store bug, backported from 1.2
29+
30+
## CRI Plugin
31+
Add `HOSTNAME` to container default environment. Add additional GIDs for
32+
running container user to the OCI spec. Fixed an issue that a directory
33+
mount can override sub-directory mount. Fixed an issue that a container
34+
can't be stopped when container processes are accidentally moved out of
35+
container cgroups. Fix an issue that invalid SELinux format is not
36+
rejected.
37+
38+
## ctr
39+
Add a `--allow-new-privs` flag on `ctr run` to allow testing an OCI spec
40+
that does not set `NoNewPrivileges` on by default.
41+
42+
## Overlayfs Snapshotter
43+
Supports > 128 layers properly.
44+
45+
Please see the changelog for full details.
46+
"""
47+
48+
# notable prs to include in the release notes, 1234 is the pr number
49+
[notes]
50+
51+
[breaking]

version/version.go

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

2323
// Version holds the complete version number. Filled in at linking time.
24-
Version = "1.1.3+unknown"
24+
Version = "1.1.4+unknown"
2525

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

0 commit comments

Comments
 (0)