Skip to content

Commit 83f8d61

Browse files
authored
Merge pull request #4925 from dmcgowan/prepare-1.5.0-beta.0
Add release notes for v1.5.0-beta.0
2 parents c4bff3d + 7d6d526 commit 83f8d61

2 files changed

Lines changed: 56 additions & 1 deletion

File tree

releases/v1.5.0-beta.toml

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
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.4.0"
10+
11+
pre_release = true
12+
13+
preface = """\
14+
The sixth major release of containerd includes many stability improvements
15+
and code organization changes to make contribution easier and make future
16+
features cleaner to develop. This includes bringing CRI development into the
17+
main containerd repository and switching to Go modules. This release also
18+
brings support for the Node Resource Interface (NRI).
19+
20+
## Project Organization
21+
* **Merge containerd/cri codebased into containerd/containerd** [#4593](https://github.com/containerd/containerd/pull/4593)
22+
* **Move to Go modules** [#4760](https://github.com/containerd/containerd/pull/4760)
23+
* **Remove `selinux` build tag** [#4849](https://github.com/containerd/containerd/pull/4849)
24+
* **Add json log format output option for daemon log** [#4803](https://github.com/containerd/containerd/pull/4803)
25+
26+
## Snapshots
27+
* **Add configurable overlayfs path** [#4505](https://github.com/containerd/containerd/pull/4505)
28+
* **Separate overlay implementation from plugin** [#4506](https://github.com/containerd/containerd/pull/4506)
29+
* **Native snapshotter configuration and plugin separation** [#4517](https://github.com/containerd/containerd/pull/4517)
30+
* **Devmapper snapshotter configuration and plugin separation** [#4573](https://github.com/containerd/containerd/pull/4573)
31+
* **AUFS snapshotter configuration and plugin separation** [#4533](https://github.com/containerd/containerd/pull/4533)
32+
* **ZFS snapshotter configuration and plugin separation** [#4534](https://github.com/containerd/containerd/pull/4534)
33+
* **Pass custom snapshot labels when creating snapshot** [#4630](https://github.com/containerd/containerd/pull/4630) [#4635](https://github.com/containerd/containerd/pull/4635)
34+
* **Add platform check for snapshotter support when unpacking** [#3927](https://github.com/containerd/containerd/pull/3927)
35+
* **Handle loopback mounts** [#4902](https://github.com/containerd/containerd/pull/4902)
36+
37+
## Distribution
38+
* **Improve registry response errors** [#4523](https://github.com/containerd/containerd/pull/4523)
39+
* **Improve image pull performance over HTTP 1.1** [#4653](https://github.com/containerd/containerd/pull/4653)
40+
* **Registry configuration package** [#4138](https://github.com/containerd/containerd/pull/4138)
41+
* **Add support for layers compressed with zstd** [#4809](https://github.com/containerd/containerd/pull/4809)
42+
43+
## Runtime
44+
* **Add annotations to containerd task update API** [#4647](https://github.com/containerd/containerd/pull/4647)
45+
* **Add logging binary support when terminal is true** [#4502](https://github.com/containerd/containerd/pull/4502)
46+
47+
## Windows
48+
* **Optimize LCOW snapshotter use of scratch layers** [#4643](https://github.com/containerd/containerd/pull/4643)
49+
50+
And many more improvements and bug fixes in the complete changelog"""
51+
52+
# notable prs to include in the release notes, 1234 is the pr number
53+
[notes]
54+
55+
[breaking]

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.4.0+unknown"
26+
Version = "1.5.0-beta.0+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)