File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree 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 = " containerd"
5+ github_repo = " containerd/containerd"
6+ match_deps = " ^github.com/(containerd/[a-zA-Z0-9-]+)$"
7+
8+ # previous release
9+ previous = " v1.1.2"
10+
11+ pre_release = false
12+
13+ preface = """ \
14+ This is the third patch release for the `containerd` 1.1 release. This
15+ release includes a new config option in CRI plugin and several bug fixes
16+ in containerd client, ctr and native snapshotter.
17+
18+ Containerd now sets gid to 0 if it is not specified. This matches the docker
19+ behavior. The change was applied to containerd client, `ctr` and CRI plugin.
20+
21+ ## CRI Plugin
22+ Add `no_pivot` config option. It is useful when running containerd on
23+ ramdisk.
24+
25+ ## ctr
26+ Fix a bug in `ctr run` that the `--no-pivot` and `--rootfs` flags are missing.
27+
28+ ## Native Snapshotter
29+ Fix a bug in the native snapshotter that the permission bits of `/`
30+ is set to `0700` unexpectedly. It is now set to `0755`.
31+
32+ Please see the changelog for full details.
33+ """
34+
35+ # notable prs to include in the release notes, 1234 is the pr number
36+ [notes ]
37+
38+ [breaking ]
Original file line number Diff line number Diff line change 2121 Package = "github.com/containerd/containerd"
2222
2323 // Version holds the complete version number. Filled in at linking time.
24- Version = "1.1.2 +unknown"
24+ Version = "1.1.3 +unknown"
2525
2626 // Revision is filled with the VCS (e.g. git) revision being used to build
2727 // the program at linking time.
You can’t perform that action at this time.
0 commit comments