Skip to content

Commit 9d8a8cb

Browse files
committed
Prepare release notes for v1.6.25
Signed-off-by: Akhil Mohan <[email protected]>
1 parent e959889 commit 9d8a8cb

2 files changed

Lines changed: 52 additions & 1 deletion

File tree

releases/v1.6.25.toml

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
# commit to be tagged for new release
2+
commit = "HEAD"
3+
4+
# project_name is used to refer to the project in the notes
5+
project_name = "containerd"
6+
7+
# github_repo is the github project, only github is currently supported
8+
github_repo = "containerd/containerd"
9+
10+
# match_deps is a pattern to determine which dependencies should be included
11+
# as part of this release. The changelog will also include changes for these
12+
# dependencies based on the change in the dependency's version.
13+
match_deps = "^github.com/(containerd/[a-zA-Z0-9-]+)$"
14+
15+
# previous release of this project for determining changes
16+
previous = "v1.6.24"
17+
18+
# pre_release is whether to include a disclaimer about being a pre-release
19+
pre_release = false
20+
21+
# preface is the description of the release which precedes the author list
22+
# and changelog. This description could include highlights as well as any
23+
# description of changes. Use markdown formatting.
24+
preface = """\
25+
The twenty-fifth patch release for containerd 1.6 contains various fixes and updates.
26+
27+
### Notable Updates
28+
29+
* **Check whether content did not needs to be pushed to remote registry and cross-repo mounted or already existed** ([#9111](https://github.com/containerd/containerd/pull/9111))
30+
* **Soft deprecate log package** ([#9105](https://github.com/containerd/containerd/pull/9105))
31+
* **Always try to establish tls connection when tls configured** ([#9189](https://github.com/containerd/containerd/pull/9189))
32+
* **CRI: stop recommending disable_cgroup** ([#9169](https://github.com/containerd/containerd/pull/9169))
33+
* **Allow for images with artifacts layers to pull** ([#9150](https://github.com/containerd/containerd/pull/9150))
34+
* **Require plugins to succeed after registering readiness** ([#9166](https://github.com/containerd/containerd/pull/9166))
35+
* **Avoid potential deadlock in create handler in containerd-shim-runc-v2** ([#9210](https://github.com/containerd/containerd/pull/9210))
36+
* **Add handling for missing basic auth credentials** ([#9236](https://github.com/containerd/containerd/pull/9236))
37+
* **Add a new image label if it is docker schema 1** ([#9267](https://github.com/containerd/containerd/pull/9267))
38+
* **Fix ambiguous tls fallback** ([#9300](https://github.com/containerd/containerd/pull/9300))
39+
* **Expose usage of deprecated features** ([#9329](https://github.com/containerd/containerd/pull/9329))
40+
* **Fix shimv1 leak issue** ([#9345](https://github.com/containerd/containerd/pull/9345))
41+
* **Go version update to 1.20.10**([#9264](https://github.com/containerd/containerd/pull/9264))
42+
* **Update runc to v1.1.10** ([#9360](https://github.com/containerd/containerd/pull/9360))
43+
* **CRI: fix using the pinned label to pin image** ([#9382](https://github.com/containerd/containerd/pull/9382))
44+
45+
See the changelog for complete list of changes"""
46+
47+
# override dependency of containerd/log
48+
[override_deps]
49+
[override_deps."github.com/containerd/log"]
50+
# commit sha in containerd/log corresponding to the last commit in v1.6.24
51+
previous="cf9777876edf6a4aa230c739bc7eec5ab8349e9c"

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.24+unknown"
26+
Version = "1.6.25+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)