Skip to content

Commit 1639e51

Browse files
dasheanalind
authored andcommitted
Bump version to 1.21.6
Signed-off-by: David Shea <[email protected]> Signed-off-by: Nalin Dahyabhai <[email protected]>
1 parent 954ea65 commit 1639e51

File tree

4 files changed

+99
-2
lines changed

4 files changed

+99
-2
lines changed

CHANGELOG.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,39 @@
11
![buildah logo](https://cdn.rawgit.com/containers/buildah/master/logos/buildah-logo_large.png)
22

33
# Changelog
4+
5+
## v1.21.6 (2025-12-12)
6+
Bump runc to v1.2.9 - CVE-2025-52881
7+
Makefile: drop non-Linux cross-compile targets
8+
Update golang.org/x/tools to v0.26.0
9+
tests/tools: update ginkgo and golangci-lint
10+
Update other dependencies
11+
Update go-selinux uses to handle API changes
12+
Switch to moby/sys/userns for RunningInUserNS
13+
Bump CI environment
14+
CI: switch to debian for testing there
15+
Handle errors.Cause() returning not-completely-unwrapped errors
16+
Update to compensate for containers/common API changes
17+
Update linter configuration and address some warnings
18+
use c/image/pkg/blobcache
19+
Stop setting "parent" in docker format
20+
commit: set "parent" for docker format only when requested
21+
Builder.SetWorkDir(): trim off a path separator suffix, if there is one
22+
Update man pages
23+
Make "buildah build" an alias for "buildah bud"
24+
Update expected error messages
25+
Remove -cover flag from test-unit target
26+
vendor c/common
27+
chroot tests: use the same default seccomp profile
28+
util.SortMounts(): make the returned order more stable
29+
Backport permissions fixup for test git server from #5550
30+
run: handle relabeling bind mounts ourselves
31+
Add a dummy "runtime" that just dumps its config file
32+
runUsingRuntime: use named constants for runtime states
33+
Update the selinux spc test
34+
bud --pull=false --arch test: accept either RPM or Go arch names
35+
Add /usr/lib/cni to define.DefaultCNIPluginPath
36+
437
## v1.21.5 (2022-09-20)
538
run: add container gid to additional groups
639
run: do not set the inheritable capabilities

changelog.txt

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
- Changelog for v1.21.6 (2025-12-12)
2+
* Bump runc to v1.2.9 - CVE-2025-52881
3+
* Makefile: drop non-Linux cross-compile targets
4+
* Update golang.org/x/tools to v0.26.0
5+
* tests/tools: update ginkgo and golangci-lint
6+
* Update other dependencies
7+
* Update go-selinux uses to handle API changes
8+
* Switch to moby/sys/userns for RunningInUserNS
9+
* Bump CI environment
10+
* CI: switch to debian for testing there
11+
* Handle errors.Cause() returning not-completely-unwrapped errors
12+
* Update to compensate for containers/common API changes
13+
* Update linter configuration and address some warnings
14+
* use c/image/pkg/blobcache
15+
* Stop setting "parent" in docker format
16+
* commit: set "parent" for docker format only when requested
17+
* Builder.SetWorkDir(): trim off a path separator suffix, if there is one
18+
* Update man pages
19+
* Make "buildah build" an alias for "buildah bud"
20+
* Update expected error messages
21+
* Remove -cover flag from test-unit target
22+
* vendor c/common
23+
* chroot tests: use the same default seccomp profile
24+
* util.SortMounts(): make the returned order more stable
25+
* Backport permissions fixup for test git server from #5550
26+
* run: handle relabeling bind mounts ourselves
27+
* Add a dummy "runtime" that just dumps its config file
28+
* runUsingRuntime: use named constants for runtime states
29+
* Update the selinux spc test
30+
* bud --pull=false --arch test: accept either RPM or Go arch names
31+
* Add /usr/lib/cni to define.DefaultCNIPluginPath
32+
133
- Changelog for v1.21.5 (2022-09-20)
234
* run: add container gid to additional groups
335
* run: do not set the inheritable capabilities

contrib/rpm/buildah.spec

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
Name: buildah
2828
# Bump version in define/types.go too
29-
Version: 1.21.5
29+
Version: 1.21.6
3030
Release: 1.git%{shortcommit}%{?dist}
3131
Summary: A command line tool used to creating OCI Images
3232
License: ASL 2.0
@@ -100,6 +100,38 @@ make DESTDIR=%{buildroot} PREFIX=%{_prefix} install install.completions
100100
%{_datadir}/bash-completion/completions/*
101101

102102
%changelog
103+
* Fri Dec 12 2025 Nalin Dahyabhai <[email protected]> 1.21.6-1
104+
- Bump runc to v1.2.9 - CVE-2025-52881
105+
- Makefile: drop non-Linux cross-compile targets
106+
- Update golang.org/x/tools to v0.26.0
107+
- tests/tools: update ginkgo and golangci-lint
108+
- Update other dependencies
109+
- Update go-selinux uses to handle API changes
110+
- Switch to moby/sys/userns for RunningInUserNS
111+
- Bump CI environment
112+
- CI: switch to debian for testing there
113+
- Handle errors.Cause() returning not-completely-unwrapped errors
114+
- Update to compensate for containers/common API changes
115+
- Update linter configuration and address some warnings
116+
- use c/image/pkg/blobcache
117+
- Stop setting "parent" in docker format
118+
- commit: set "parent" for docker format only when requested
119+
- Builder.SetWorkDir(): trim off a path separator suffix, if there is one
120+
- Update man pages
121+
- Make "buildah build" an alias for "buildah bud"
122+
- Update expected error messages
123+
- Remove -cover flag from test-unit target
124+
- vendor c/common
125+
- chroot tests: use the same default seccomp profile
126+
- util.SortMounts(): make the returned order more stable
127+
- Backport permissions fixup for test git server from #5550
128+
- run: handle relabeling bind mounts ourselves
129+
- Add a dummy "runtime" that just dumps its config file
130+
- runUsingRuntime: use named constants for runtime states
131+
- Update the selinux spc test
132+
- bud --pull=false --arch test: accept either RPM or Go arch names
133+
- Add /usr/lib/cni to define.DefaultCNIPluginPath
134+
103135
* Tue Sep 20 2022 Nalin Dahyabhai <[email protected]> 1.21.5-1
104136
- run: add container gid to additional groups
105137
- run: do not set the inheritable capabilities

define/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const (
2828
Package = "buildah"
2929
// Version for the Package. Bump version in contrib/rpm/buildah.spec
3030
// too.
31-
Version = "1.21.5"
31+
Version = "1.21.6"
3232

3333
// DefaultRuntime if containers.conf fails.
3434
DefaultRuntime = "runc"

0 commit comments

Comments
 (0)