Skip to content

Commit 9aaa280

Browse files
Merge pull request #5942 from dashea/dshea-release-1.26.9
[release-1.26] Bump version to 1.26.9
2 parents a4ab900 + 344fa6e commit 9aaa280

File tree

5 files changed

+43
-3
lines changed

5 files changed

+43
-3
lines changed

.cirrus.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ env:
66
#### Global variables used for all tasks
77
####
88
# Name of the ultimate destination branch for this CI run, PR or post-merge.
9-
DEST_BRANCH: "main"
9+
DEST_BRANCH: "release-1.26"
1010
GOPATH: "/var/tmp/go"
1111
GOSRC: "${GOPATH}/src/github.com/containers/buildah"
1212
# Overrides default location (/tmp/cirrus) for repo clone

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
# Changelog
44

5+
## v1.26.9 (2025-01-24)
6+
7+
Add build-tag comments
8+
Fix cache locks with multiple mounts
9+
Disable windows cross compile targets
10+
Fix TOCTOU error when bind and cache mounts use "src" values
11+
define.TempDirForURL(): always use an intermediate subdirectory
12+
internal/volume.GetBindMount(): discard writes in bind mounts
13+
pkg/overlay: add a MountLabel flag to Options
14+
pkg/overlay: add a ForceMount flag to Options
15+
Add internal/volumes.bindFromChroot()
16+
Add an internal/open package
17+
Allow cache mounts to be stages or additional build contexts
18+
519
## v1.26.8 (2024-10-21)
620

721
Properly validate cache IDs and sources

changelog.txt

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
- Changelog for v1.26.9 (2025-01-24)
2+
* Add build-tag comments
3+
* Fix cache locks with multiple mounts
4+
* Disable windows cross compile targets
5+
* Fix TOCTOU error when bind and cache mounts use "src" values
6+
* define.TempDirForURL(): always use an intermediate subdirectory
7+
* internal/volume.GetBindMount(): discard writes in bind mounts
8+
* pkg/overlay: add a MountLabel flag to Options
9+
* pkg/overlay: add a ForceMount flag to Options
10+
* Add internal/volumes.bindFromChroot()
11+
* Add an internal/open package
12+
* Allow cache mounts to be stages or additional build contexts
13+
114
- Changelog for v1.26.8 (2024-10-21)
215
* Properly validate cache IDs and sources
316

contrib/rpm/buildah.spec

+14-1
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.26.8
29+
Version: 1.26.9
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,19 @@ make DESTDIR=%{buildroot} PREFIX=%{_prefix} install install.completions
100100
%{_datadir}/bash-completion/completions/*
101101

102102
%changelog
103+
* Fri Jan 24 2025 David Shea <dshea@redhat.com> 1.26.9-1
104+
- Add build-tag comments
105+
- Fix cache locks with multiple mounts
106+
- Disable windows cross compile targets
107+
- Fix TOCTOU error when bind and cache mounts use "src" values
108+
- define.TempDirForURL(): always use an intermediate subdirectory
109+
- internal/volume.GetBindMount(): discard writes in bind mounts
110+
- pkg/overlay: add a MountLabel flag to Options
111+
- pkg/overlay: add a ForceMount flag to Options
112+
- Add internal/volumes.bindFromChroot()
113+
- Add an internal/open package
114+
- Allow cache mounts to be stages or additional build contexts
115+
103116
* Mon Oct 21 2024 David Shea <dshea@redhat.com> 1.26.8-1
104117
- Properly validate cache IDs and sources
105118

define/types.go

+1-1
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.8"
32+
Version = "1.26.9"
3333

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

0 commit comments

Comments
 (0)