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.4"
10+
11+ pre_release = false
12+
13+ preface = """ \
14+ This is the fifth patch release for the `containerd` 1.1 release. This
15+ release includes several fixes in both the CRI plugin and containerd-shim.
16+
17+ ## Runtime
18+ * Fix a bug that containerd-shim may hang when many exec processes simultaneously
19+ run in a container.
20+ * Update runc
21+
22+ ## CRI Plugin
23+ * Fix a bug that IPAM IP leaks after node reboot.
24+ * Stop logging image `AuthConfig` in the CRI plugin log.
25+
26+ To use containerd 1.1 with Kubernetes 1.11+, please set `stream_server_address` to
27+ `127.0.0.1` or `localhost`, and set `enable_tls_streaming` to `false`.
28+
29+ # Service
30+ * Ignore modprobe failures in systemd ExecStartPre. This fixes containerd start
31+ failures in the environment where `modprobe overlay` always returns error, e.g.
32+ an LXC container, a kernel with overlay built-in etc.
33+
34+
35+ Please see the changelog for full details.
36+ """
37+
38+ # notable prs to include in the release notes, 1234 is the pr number
39+ [notes ]
40+
41+ [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.4 +unknown"
24+ Version = "1.1.5 +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