Skip to content

Commit da8d42b

Browse files
committed
Bump Buildah to v1.26.10
Signed-off-by: Chris Evich <[email protected]>
1 parent b050920 commit da8d42b

File tree

3 files changed

+78
-1
lines changed

3 files changed

+78
-1
lines changed

CHANGELOG.md

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

33
# Changelog
44

5+
## v1.26.10 (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+
Makefile: run unit and conformance tests without -cover
13+
.cirrus: run -race only on non-PR branch
14+
Workaround builder.Run() unwrapable exit code
15+
Backport release-1.27 Fix linter errors
16+
Stop checking spec file version
17+
tests/tools: update ginkgo and golangci-lint
18+
Remove -cover flag from test-unit target
19+
Adjust supportability date to match RHEL 8.6
20+
Skip bud with --cpu-shares test on runc/cgroupsv2
21+
Prune CI tests for RHEL release branch
22+
Temporarily hard-skip bud-multiple-platform-values test
23+
Adjust tests for new CI environment
24+
CI: run integration tests on Fedora with both crun and runc
25+
buildah-build(1): clarify that --cgroup-parent affects RUN instructions
26+
runUsingRuntime: use named constants for runtime states
27+
Add a dummy "runtime" that just dumps its config file
28+
run: handle relabeling bind mounts ourselves
29+
Integration tests: run git daemon on a random-but-bind()able port
30+
Partially work around containers/common
31+
Don't set ambient capabilities
32+
finish switching to moby/sys/capability
33+
vendor: switch to moby/sys/capability
34+
Handle Cobra v1.5 -> v1.8 behavior changes
35+
Bump runc to v1.2.9
36+
util.SortMounts(): make the returned order more stable
37+
Proxy module access
38+
Bump x/tools to v0.26.0
39+
Bump CI environment to match release-1.39
40+
Bump minimum to golang 1.22.6
41+
[release-1.26] Add conditional release-checking system test
42+
[release-1.26] tests/conformance/testdata/Dockerfile.add:...
43+
544
## v1.26.9 (2025-01-24)
645

746
Add build-tag comments

changelog.txt

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,41 @@
1+
- Changelog for v1.26.10 (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+
* Makefile: run unit and conformance tests without -cover
8+
* .cirrus: run -race only on non-PR branch
9+
* Workaround builder.Run() unwrapable exit code
10+
* Backport release-1.27 Fix linter errors
11+
* Stop checking spec file version
12+
* tests/tools: update ginkgo and golangci-lint
13+
* Remove -cover flag from test-unit target
14+
* Adjust supportability date to match RHEL 8.6
15+
* Skip bud with --cpu-shares test on runc/cgroupsv2
16+
* Prune CI tests for RHEL release branch
17+
* Temporarily hard-skip bud-multiple-platform-values test
18+
* Adjust tests for new CI environment
19+
* CI: run integration tests on Fedora with both crun and runc
20+
* buildah-build(1): clarify that --cgroup-parent affects RUN instructions
21+
* runUsingRuntime: use named constants for runtime states
22+
* Add a dummy "runtime" that just dumps its config file
23+
* run: handle relabeling bind mounts ourselves
24+
* Integration tests: run git daemon on a random-but-bind()able port
25+
* Partially work around containers/common
26+
* Don't set ambient capabilities
27+
* finish switching to moby/sys/capability
28+
* vendor: switch to moby/sys/capability
29+
* Handle Cobra v1.5 -> v1.8 behavior changes
30+
* Bump runc to v1.2.9
31+
* util.SortMounts(): make the returned order more stable
32+
* Proxy module access
33+
* Bump x/tools to v0.26.0
34+
* Bump CI environment to match release-1.39
35+
* Bump minimum to golang 1.22.6
36+
* [release-1.26] Add conditional release-checking system test
37+
* [release-1.26] tests/conformance/testdata/Dockerfile.add:...
38+
139
- Changelog for v1.26.9 (2025-01-24)
240
* Add build-tag comments
341
* Fix cache locks with multiple mounts

define/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const (
2929
Package = "buildah"
3030
// Version for the Package. Bump version in contrib/rpm/buildah.spec
3131
// too.
32-
Version = "1.26.9"
32+
Version = "1.26.10"
3333

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

0 commit comments

Comments
 (0)