File tree Expand file tree Collapse file tree 2 files changed +39
-1
lines changed Expand file tree Collapse file tree 2 files changed +39
-1
lines changed Original file line number Diff line number Diff line change 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.28"
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 twenty-ninth patch release for containerd 1.7 contains various fixes
26+ and updates including security patches.
27+
28+ ### Security Updates
29+
30+ * **containerd**
31+ * [**GHSA-pwhc-rpq9-4c8w**](https://github.com/containerd/containerd/security/advisories/GHSA-pwhc-rpq9-4c8w)
32+ * [**GHSA-m6hq-p25p-ffr2**](https://github.com/containerd/containerd/security/advisories/GHSA-m6hq-p25p-ffr2)
33+
34+ * **runc**
35+ * [**GHSA-qw9x-cqr3-wc7r**](https://github.com/opencontainers/runc/security/advisories/GHSA-qw9x-cqr3-wc7r)
36+ * [**GHSA-cgrx-mc8f-2prm**](https://github.com/opencontainers/runc/security/advisories/GHSA-cgrx-mc8f-2prm)
37+ * [**GHSA-9493-h29p-rfm2**](https://github.com/opencontainers/runc/security/advisories/GHSA-9493-h29p-rfm2)
38+ """
Original file line number Diff line number Diff line change 2323 Package = "github.com/containerd/containerd"
2424
2525 // Version holds the complete version number. Filled in at linking time.
26- Version = "1.7.28 +unknown"
26+ Version = "1.7.29 +unknown"
2727
2828 // Revision is filled with the VCS (e.g. git) revision being used to build
2929 // the program at linking time.
You can’t perform that action at this time.
0 commit comments