X Tutup
Skip to content

Commit 9f43ead

Browse files
committed
Prepare v1.5.0-rc.3 release notes
Signed-off-by: Derek McGowan <derek@mcg.dev>
1 parent 6b9d428 commit 9f43ead

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

releases/v1.5.0-rc.toml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,16 @@ The sixth major release of containerd includes many stability improvements
1515
and code organization changes to make contribution easier and make future
1616
features cleaner to develop. This includes bringing CRI development into the
1717
main containerd repository and switching to Go modules. This release also
18-
brings support for the Node Resource Interface (NRI).
18+
brings support for the Node Resource Interface (NRI) and ARM64 builds.
1919
2020
### Highlights
2121
2222
#### Project Organization
23-
* **Merge containerd/cri codebased into containerd/containerd** [#4593](https://github.com/containerd/containerd/pull/4593)
23+
* **Merge containerd/cri codebase into containerd/containerd** [#4593](https://github.com/containerd/containerd/pull/4593)
2424
* **Move to Go modules** [#4760](https://github.com/containerd/containerd/pull/4760)
2525
* **Remove `selinux` build tag** [#4849](https://github.com/containerd/containerd/pull/4849)
2626
* **Add json log format output option for daemon log** [#4803](https://github.com/containerd/containerd/pull/4803)
27+
* **Add release builds for ARM64** [#5329](https://github.com/containerd/containerd/pull/5329)
2728
2829
#### Snapshots
2930
* **Add configurable overlayfs path** [#4505](https://github.com/containerd/containerd/pull/4505)
@@ -51,6 +52,8 @@ brings support for the Node Resource Interface (NRI).
5152
* **Runtime support on FreeBSD** [#5375](https://github.com/containerd/containerd/pull/5375)
5253
5354
#### Windows
55+
* **Implement windowsDiff.Compare to allow outputting OCI images** [#4399](https://github.com/containerd/containerd/pull/4399)
56+
* **Optimize WCOW snapshotter to commit writable layers as read-only parent layers** [#4415](https://github.com/containerd/containerd/pull/4415)
5457
* **Optimize LCOW snapshotter use of scratch layers** [#4643](https://github.com/containerd/containerd/pull/4643)
5558
5659
#### CRI
@@ -59,6 +62,7 @@ brings support for the Node Resource Interface (NRI).
5962
* **Update privileged containers to use current capabilities instead of known capabilities** [#5017](https://github.com/containerd/containerd/pull/5017)
6063
* **Add pod annotations to CNI call** [#5026](https://github.com/containerd/containerd/pull/5026)
6164
* **Enable ocicrypt by default** [#5135](https://github.com/containerd/containerd/pull/5135)
65+
* **Support PID NamespaceMode_TARGET** [#5203](https://github.com/containerd/containerd/pull/5203)
6266
6367
### Impactful Client Updates
6468
@@ -147,4 +151,14 @@ To check version, see the version value in the containerd toml configuration.
147151
version=2
148152
```
149153
154+
#### FreeBSD Runtime Support (Experimental)
155+
156+
This release includes changes that allow containerd to run on FreeBSD with a
157+
compatible runtime, such as [runj](https://github.com/samuelkarp/runj). This
158+
support should be considered experimental and currently there are no official
159+
binary releases for FreeBSD. The runtimes used by containerd are maintained
160+
separately and have their own stability guarantees. The containerd project
161+
strives to be compatible with any runtime which aims to implement containerd's
162+
shim API and OCI runtime specification.
163+
150164
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.5.0-rc.2+unknown"
26+
Version = "1.5.0-rc.3+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)
X Tutup