File tree 3 files changed +24
-1
lines changed
3 files changed +24
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
# Changelog
4
4
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
+
5
17
## v1.27.5 (2024-10-24)
6
18
7
19
Properly validate cache IDs and sources
Original file line number Diff line number Diff line change
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
+
1
12
- Changelog for v1.27.5 (2024-10-24)
2
13
* Properly validate cache IDs and sources
3
14
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ const (
30
30
Package = "buildah"
31
31
// Version for the Package. Bump version in contrib/rpm/buildah.spec
32
32
// too.
33
- Version = "1.27.5 "
33
+ Version = "1.27.6 "
34
34
35
35
// DefaultRuntime if containers.conf fails.
36
36
DefaultRuntime = "runc"
You can’t perform that action at this time.
0 commit comments