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