Skip to content

Commit 92b6465

Browse files
committed
Bump Buildah to v1.27.7
Signed-off-by: Chris Evich <[email protected]>
1 parent 22f5bf6 commit 92b6465

File tree

3 files changed

+72
-1
lines changed

3 files changed

+72
-1
lines changed

CHANGELOG.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,42 @@
22

33
# Changelog
44

5+
## v1.27.7 (2025-12-11)
6+
7+
conformance test: ignore file type bits when comparing layers
8+
Builder.SetWorkDir(): trim off a path separator suffix, if there is one
9+
commit: set "parent" for docker format only when requested
10+
Stop setting "parent" in docker format
11+
cross-compile: drop windows as a target GOOS
12+
Fix linter errors
13+
Makefile: run unit and conformance tests without -cover
14+
.cirrus: run -race only on non-PR branch
15+
tests/tools: update ginkgo and golangci-lint
16+
Remove -cover flag from test-unit target
17+
Adjust supportability date to match RHEL 8.6
18+
Skip bud with --cpu-shares test on runc/cgroupsv2
19+
Temporarily hard-skip bud-multiple-platform-values test
20+
Adjust tests for new CI environment
21+
CI: switch to debian for testing there, re-enable some tests
22+
CI: run integration tests on Fedora with both crun and runc
23+
buildah-build(1): clarify that --cgroup-parent affects RUN instructions
24+
runUsingRuntime: use named constants for runtime states
25+
Add a dummy "runtime" that just dumps its config file
26+
run: handle relabeling bind mounts ourselves
27+
Integration tests: run git daemon on a random-but-bind()able port
28+
Partially work around containers/common
29+
Don't set ambient capabilities
30+
finish switching to moby/sys/capability
31+
vendor: switch to moby/sys/capability
32+
Handle Cobra v1.5 -> v1.8 behavior changes
33+
Bump runc to v1.2.9 for CVE-2025-31133,52565,52881
34+
util.SortMounts(): make the returned order more stable
35+
Proxy module access
36+
Bump x/tools to v0.26.0
37+
Bump CI environment to match release-1.39
38+
Bump minimum to golang 1.22.6
39+
[release-1.27] tests/conformance/testdata/Dockerfile.add:...
40+
541
## v1.27.6 (2025-01-30)
642

743
Fix cache locks with multiple mounts

changelog.txt

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
- Changelog for v1.27.7 (2025-12-11)
2+
* conformance test: ignore file type bits when comparing layers
3+
* Builder.SetWorkDir(): trim off a path separator suffix, if there is one
4+
* commit: set "parent" for docker format only when requested
5+
* Stop setting "parent" in docker format
6+
* cross-compile: drop windows as a target GOOS
7+
* Fix linter errors
8+
* Makefile: run unit and conformance tests without -cover
9+
* .cirrus: run -race only on non-PR branch
10+
* tests/tools: update ginkgo and golangci-lint
11+
* Remove -cover flag from test-unit target
12+
* Adjust supportability date to match RHEL 8.6
13+
* Skip bud with --cpu-shares test on runc/cgroupsv2
14+
* Temporarily hard-skip bud-multiple-platform-values test
15+
* Adjust tests for new CI environment
16+
* CI: switch to debian for testing there, re-enable some tests
17+
* CI: run integration tests on Fedora with both crun and runc
18+
* buildah-build(1): clarify that --cgroup-parent affects RUN instructions
19+
* runUsingRuntime: use named constants for runtime states
20+
* Add a dummy "runtime" that just dumps its config file
21+
* run: handle relabeling bind mounts ourselves
22+
* Integration tests: run git daemon on a random-but-bind()able port
23+
* Partially work around containers/common
24+
* Don't set ambient capabilities
25+
* finish switching to moby/sys/capability
26+
* vendor: switch to moby/sys/capability
27+
* Handle Cobra v1.5 -> v1.8 behavior changes
28+
* Bump runc to v1.2.9 for CVE-2025-31133,52565,52881
29+
* util.SortMounts(): make the returned order more stable
30+
* Proxy module access
31+
* Bump x/tools to v0.26.0
32+
* Bump CI environment to match release-1.39
33+
* Bump minimum to golang 1.22.6
34+
* [release-1.27] tests/conformance/testdata/Dockerfile.add:...
35+
136
- Changelog for v1.27.6 (2025-01-30)
237
* Fix cache locks with multiple mounts
338
* Fix TOCTOU error when bind and cache mounts use "src" values

define/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const (
3030
Package = "buildah"
3131
// Version for the Package. Bump version in contrib/rpm/buildah.spec
3232
// too.
33-
Version = "1.27.6"
33+
Version = "1.27.7"
3434

3535
// DefaultRuntime if containers.conf fails.
3636
DefaultRuntime = "runc"

0 commit comments

Comments
 (0)