|
| 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] |
0 commit comments