Skip to content

Commit 4136092

Browse files
committed
Prepare v1.2.9 release
Fixes gRPC CVE issues by updating vendor to gRPC 1.23.0 release. Fix additional bugs via backport/cherry-pick and add to release notes. Signed-off-by: Phil Estes <[email protected]>
1 parent 6ef0529 commit 4136092

2 files changed

Lines changed: 48 additions & 1 deletion

File tree

releases/v1.2.9.toml

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
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.2.8"
10+
11+
pre_release = false
12+
13+
preface = """\
14+
The ninth patch release for `containerd` 1.2 provides a handful of bug fixes and an
15+
update to the gRPC vendored codebase to include 3 CVE fixes provided in the upstream
16+
v1.23.0 release of gRPC. Note that updating gRPC to the current release required small
17+
changes to our core containerd codebase to match the upstream changes since gRPC v1.12.0.
18+
These changes have been backported from containerd's master branch, as well as a
19+
similar small change in ttrpc, requiring that package's vendoring to be updated.
20+
21+
In addition to the gRPC update to include CVE fixes, fixes were made to correct a
22+
container's default Unix environment (introduced in 1.2.8), a small list of CRI plugin
23+
fixes, as well as fixes for registry interactions where `Docker-Content-Digest` is not
24+
returned (e.g. GitHub Package Registry), and a tar archive modification time bug found
25+
by the buildkit maintainers. A fix to the zfs snapshotter was also included via a
26+
re-vendoring of containerd's zfs import. More notes on these fixes are found below.
27+
28+
### Notable Updates
29+
* Cherry-pick update to gRPC 1.23.0. [PR #3586](https://github.com/containerd/containerd/pull/3586) {cherry-picked from changes in master PRs [#3192](https://github.com/containerd/containerd/pull/3192) and [#3581](https://github.com/containerd/containerd/pull/3581)}.
30+
- Fixes [grpc/grpc-go#2970](https://github.com/grpc/grpc-go/pull/2970) transport: block reading frames when too many transport control frames are queued.
31+
- Addresses CVE-2019-9512 (Ping Flood), CVE-2019-9514 (Reset Flood), and CVE-2019-9515 (Settings Flood).
32+
- Other changes can be found in the [gRPC release notes](https://github.com/grpc/grpc-go/releases/tag/v1.23.0).
33+
34+
* CRI fixes:
35+
- Fix a bug that the default apparmor profile is mistakenly applied to privileged containers with runtime/default specified. [containerd/cri#1239](https://github.com/containerd/cri/issues/1239)
36+
- Fix a bug that image can't be pulled if an empty AuthConfig is specified. [containerd/cri#1249](https://github.com/containerd/cri/issues/1249)
37+
38+
* Bug fix: Compute manifest data when not provided (Docker-Content-Digest header missing). [PR #3591](https://github.com/containerd/containerd/pull/3591) {cherry-picked from master [PR #3245](https://github.com/containerd/containerd/pull/3245) with backports of [#2871](https://github.com/containerd/containerd/pull/2871) and [#3335](https://github.com/containerd/containerd/pull/3335) required}.
39+
* Bug fix: Use default UNIX env when image has no environment. [PR #3601](https://github.com/containerd/containerd/pull/3601) {cherry-picked from master branch [PR #3599](https://github.com/containerd/containerd/pull/3599)}.
40+
* Bug fix: archive: truncate modification time. [PR #3602](https://github.com/containerd/containerd/pull/3602) {cherry-picked from master branch [PR #3589](https://github.com/containerd/containerd/pull/3589)}.
41+
* Bug fix: zfs: Datasets don't seem to be cleaned up properly on image removal. Reported in [containerd/zfs#22](https://github.com/containerd/zfs/issues/22) and fixed by [PR containerd/zfs#24](https://github.com/containerd/zfs/pull/24) and re-vendored into containerd `release/1.2` via [PR #3596](https://github.com/containerd/containerd/pull/3596).
42+
"""
43+
44+
# notable prs to include in the release notes, 1234 is the pr number
45+
[notes]
46+
47+
[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.2.8+unknown"
24+
Version = "1.2.9+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)