|
| 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] |
0 commit comments