Skip to content

Commit 1a88cf5

Browse files
authored
Merge pull request #6267 from dmcgowan/prepare-v1.6.0-beta.3
Prepare release notes for v1.6.0-beta.3
2 parents db9c6fc + 674b94c commit 1a88cf5

6 files changed

Lines changed: 9 additions & 5 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,8 +130,9 @@ jobs:
130130
with:
131131
token: ${{ secrets.GITHUB_TOKEN }}
132132
fail_on_unmatched_files: true
133+
name: containerd ${{ needs.check.outputs.stringver }}
133134
draft: false
134135
prerelease: ${{ contains(github.ref, 'beta') || contains(github.ref, 'rc') }}
135136
body_path: ./builds/containerd-release-notes/release-notes.md
136137
files: |
137-
builds/release-tars-**/*
138+
builds/release-tars-**/*

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ require (
1010
github.com/containerd/btrfs v1.0.0
1111
github.com/containerd/cgroups v1.0.2
1212
github.com/containerd/console v1.0.3
13-
github.com/containerd/containerd/api v1.6.0-beta.1
13+
github.com/containerd/containerd/api v1.6.0-beta.3
1414
github.com/containerd/continuity v0.2.0
1515
github.com/containerd/fifo v1.0.0
1616
github.com/containerd/go-cni v1.1.1-0.20211026134925-aa8bf14323a5

integration/client/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require (
88
github.com/containerd/cgroups v1.0.2
99
// the actual version of containerd is replaced with the code at the root of this repository
1010
github.com/containerd/containerd v1.5.7
11-
github.com/containerd/containerd/api v1.6.0-beta.1
11+
github.com/containerd/containerd/api v1.6.0-beta.3
1212
github.com/containerd/go-runc v1.0.0
1313
github.com/containerd/ttrpc v1.1.0
1414
github.com/containerd/typeurl v1.0.2

releases/v1.6.0-beta.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ support to increase overall compatibility and stability.
2424
* **Split task manager into shim and task manager** ([#5918](https://github.com/containerd/containerd/pull/5918))
2525
* **Add runc shim support for core scheduling** ([#6011](https://github.com/containerd/containerd/pull/6011))
2626
* **Update shim client connect attempt to fail fast when shim errors** ([#6031](https://github.com/containerd/containerd/pull/6031))
27+
* **Add support for absolute path to shim binaries** ([#6206](https://github.com/containerd/containerd/pull/6206))
2728
2829
#### Windows
2930
@@ -37,7 +38,9 @@ support to increase overall compatibility and stability.
3738
* **Add support for unified resources field for cgroups v2** ([#5627](https://github.com/containerd/containerd/pull/5627))
3839
* **Add IP preference configuration for reporting pod IP** ([#5964](https://github.com/containerd/containerd/pull/5964))
3940
* **Implement new CRI pod sandbox stats API** ([#6113](https://github.com/containerd/containerd/pull/6113))
41+
* **Add sandbox and container latency metrics** ([#6111](https://github.com/containerd/containerd/pull/6111))
4042
* **Add namespace to ttrpc and grpc plugin connections** ([#6130](https://github.com/containerd/containerd/pull/6130))
43+
* **Add option to allow ping sockets and privileged ports with no capabilities** ([#6170](https://github.com/containerd/containerd/pull/6170))
4144
4245
#### Other
4346

vendor/modules.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ github.com/containerd/cgroups/v2/stats
7878
# github.com/containerd/console v1.0.3
7979
## explicit
8080
github.com/containerd/console
81-
# github.com/containerd/containerd/api v1.6.0-beta.1 => ./api
81+
# github.com/containerd/containerd/api v1.6.0-beta.3 => ./api
8282
## explicit
8383
github.com/containerd/containerd/api/events
8484
github.com/containerd/containerd/api/services/containers/v1

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.6.0-beta.2+unknown"
26+
Version = "1.6.0-beta.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)