|
| 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.6" |
| 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 seventh patch release for containerd 1.7 contains various fixes and updates. |
| 26 | +
|
| 27 | +### Notable Updates |
| 28 | +
|
| 29 | +* **Require plugins to succeed after registering readiness** ([#9165](https://github.com/containerd/containerd/pull/9165)) |
| 30 | +* **Handle unexpected shim kill events** ([#9132](https://github.com/containerd/containerd/pull/9132)) |
| 31 | +* **Build binaries with Go 1.21.1** ([#9167](https://github.com/containerd/containerd/pull/9167)) |
| 32 | +* **cri: Stop recommending disable_cgroup** ([#9168](https://github.com/containerd/containerd/pull/9168)) |
| 33 | +* **remotes/docker: Fix MountedFrom prefixed with target repository** ([#9193](https://github.com/containerd/containerd/pull/9193)) |
| 34 | +* **remotes: always try to establish tls connection when tls configured** ([#9188](https://github.com/containerd/containerd/pull/9188)) |
| 35 | +* **NRI: Add support for rlimits** ([#48](https://github.com/containerd/nri/pull/48)) |
| 36 | +
|
| 37 | +See the changelog for complete list of changes""" |
0 commit comments