Skip to content

Commit 29922b1

Browse files
Merge pull request #5958 from dashea/dshea-version-1.27.6
[release-1.27] Bump to 1.27.6
2 parents 85dabc8 + a820f7e commit 29922b1

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,18 @@
22

33
# Changelog
44

5+
## v1.27.6 (2025-01-30)
6+
7+
Fix cache locks with multiple mounts
8+
Fix TOCTOU error when bind and cache mounts use "src" values
9+
define.TempDirForURL(): always use an intermediate subdirectory
10+
internal/volume.GetBindMount(): discard writes in bind mounts
11+
pkg/overlay: add a MountLabel flag to Options
12+
pkg/overlay: add a ForceMount flag to Options
13+
Add internal/volumes.bindFromChroot()
14+
Add an internal/open package
15+
Allow cache mounts to be stages or additional build contexts
16+
517
## v1.27.5 (2024-10-24)
618

719
Properly validate cache IDs and sources

changelog.txt

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
- Changelog for v1.27.6 (2025-01-30)
2+
* Fix cache locks with multiple mounts
3+
* Fix TOCTOU error when bind and cache mounts use "src" values
4+
* define.TempDirForURL(): always use an intermediate subdirectory
5+
* internal/volume.GetBindMount(): discard writes in bind mounts
6+
* pkg/overlay: add a MountLabel flag to Options
7+
* pkg/overlay: add a ForceMount flag to Options
8+
* Add internal/volumes.bindFromChroot()
9+
* Add an internal/open package
10+
* Allow cache mounts to be stages or additional build contexts
11+
112
- Changelog for v1.27.5 (2024-10-24)
213
* Properly validate cache IDs and sources
314

define/types.go

+1-1
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.5"
33+
Version = "1.27.6"
3434

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

0 commit comments

Comments
 (0)