Skip to content

Commit 1677a17

Browse files
authored
Merge pull request #8501 from dmcgowan/prepare-v1.7.1
[release/1.7] Prepare release notes for v1.7.1
2 parents 89ab3ce + 27a0d95 commit 1677a17

File tree

3 files changed

+41
-1
lines changed

3 files changed

+41
-1
lines changed

.mailmap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ Kenfe-Mickaël Laventure <[email protected]>
8080
Kevin Kern <[email protected]>
8181
8282
83+
8384
8485
Kohei Tokunaga <[email protected]>
8586

releases/v1.7.1.toml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
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.7.0"
10+
11+
pre_release = false
12+
13+
preface = """\
14+
The first patch release for containerd 1.7 includes many fixes to CRI
15+
sandbox mode, various other fixes, runc update, and important fixes in
16+
core dependencies such as ttrpc and typeurl.
17+
18+
### CRI/Sandbox Updates
19+
* **Throw not supported error when UID or GID mappings provided** ([#8211](https://github.com/containerd/containerd/pull/8211))
20+
* **Cleanup shim on start failure** ([#8282](https://github.com/containerd/containerd/pull/8282))
21+
* **Fix premature close of CRI service when there are no CNI configuration monitors** ([#8282](https://github.com/containerd/containerd/pull/8282))
22+
* **Avoid UID lookup from mount on Darwin** ([#8314](https://github.com/containerd/containerd/pull/8314))
23+
* **Keep Linux mounts for Linux sandboxes on non-Linux hosts** ([#8331](https://github.com/containerd/containerd/pull/8331))
24+
* **Add `noexec`,`nodev`,`nosuid` to `/etc/resolv.conf` bind mount** ([#8336](https://github.com/containerd/containerd/pull/8336))
25+
* **Remove entry for container from container store on error** ([#8457](https://github.com/containerd/containerd/pull/8457))
26+
* **Fix unmarshal in container metrics** ([#8472](https://github.com/containerd/containerd/pull/8472))
27+
28+
### Other Notable Updates
29+
* **Use readonly for temporary mounts** ([#8300](https://github.com/containerd/containerd/pull/8300) [#8358](https://github.com/containerd/containerd/pull/8358))
30+
* **Fix skip docker manifest option on image exporter** ([#8344](https://github.com/containerd/containerd/pull/8344))
31+
* **Update runc binary to v1.1.7** ([#8451](https://github.com/containerd/containerd/pull/8451))
32+
* **Fix runtime path task option** ([#8453](https://github.com/containerd/containerd/pull/8453))
33+
* **Fix panic from nil checkpoint options** ([#8475](https://github.com/containerd/containerd/pull/8475))
34+
* **Fix transfer service configuration options** ([#8491](https://github.com/containerd/containerd/pull/8491))
35+
* **Fix server-side goroutine leak on receive message error** ([ttrpc#141](https://github.com/containerd/ttrpc/pull/141))
36+
* **Fix panic caused by race to close send channel** ([ttrpc#140](https://github.com/containerd/ttrpc/pull/140))
37+
* **Fix unmarshal to return non-nil object when nil value** ([ttrpc#140](https://github.com/containerd/typeurl/pull/41))
38+
39+
See the changelog for complete list of changes"""

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ var (
2323
Package = "github.com/containerd/containerd"
2424

2525
// Version holds the complete version number. Filled in at linking time.
26-
Version = "1.7.0+unknown"
26+
Version = "1.7.1+unknown"
2727

2828
// Revision is filled with the VCS (e.g. git) revision being used to build
2929
// the program at linking time.

0 commit comments

Comments
 (0)