Skip to content

Commit 5960cad

Browse files
authored
Merge pull request #2787 from Random-Liu/prepare-1-1-5-release
Prepare 1.1.5 release notes
2 parents 5cbe42a + 32d08d0 commit 5960cad

2 files changed

Lines changed: 42 additions & 1 deletion

File tree

releases/v1.1.5.toml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
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]

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ var (
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.

0 commit comments

Comments
 (0)