|
| 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.10" |
| 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 eleventh patch release for containerd 1.7 contains various fixes and updates including |
| 26 | +one security issue. |
| 27 | +
|
| 28 | +### Notable Updates |
| 29 | +
|
| 30 | +* **Fix Windows default path overwrite issue** ([#9440](https://github.com/containerd/containerd/pull/9440)) |
| 31 | +* **Update push to always inherit distribution sources from parent** ([#9452](https://github.com/containerd/containerd/pull/9452)) |
| 32 | +* **Update shim to use net dial for gRPC shim sockets** ([#9458](https://github.com/containerd/containerd/pull/9458)) |
| 33 | +* **Fix otel version incompatibility** ([#9483](https://github.com/containerd/containerd/pull/9483)) |
| 34 | +* **Fix Windows snapshotter blocking snapshot GC on remove failure** ([#9482](https://github.com/containerd/containerd/pull/9482)) |
| 35 | +* **Mask `/sys/devices/virtual/powercap` path in runtime spec and deny in default apparmor profile** ([GHSA-7ww5-4wqc-m92c](https://github.com/containerd/containerd/security/advisories/GHSA-7ww5-4wqc-m92c)) |
| 36 | +
|
| 37 | +### Deprecation Warnings |
| 38 | +
|
| 39 | +* **Emit deprecation warning for AUFS snapshotter** ([#9436](https://github.com/containerd/containerd/pull/9436)) |
| 40 | +* **Emit deprecation warning for v1 runtime** ([#9450](https://github.com/containerd/containerd/pull/9450)) |
| 41 | +* **Emit deprecation warning for deprecated CRI configs** ([#9469](https://github.com/containerd/containerd/pull/9469)) |
| 42 | +* **Emit deprecation warning for CRI v1alpha1 usage** ([#9479](https://github.com/containerd/containerd/pull/9479)) |
| 43 | +* **Emit deprecation warning for CRIU config in CRI** ([#9481](https://github.com/containerd/containerd/pull/9481)) |
| 44 | +
|
| 45 | +See the changelog for complete list of changes""" |
0 commit comments