Skip to content

Commit fd39521

Browse files
Merge pull request #5919 from nalind/v1.37.6
[release-1.37] tag v1.37.6
2 parents 419d6fb + 75ef41e commit fd39521

File tree

4 files changed

+29
-2
lines changed

4 files changed

+29
-2
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.37"
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.37.6 (2025-01-20)
6+
7+
Fix TOCTOU error when bind and cache mounts use "src" values
8+
define.TempDirForURL(): always use an intermediate subdirectory
9+
internal/volume.GetBindMount(): discard writes in bind mounts
10+
pkg/overlay: add a MountLabel flag to Options
11+
pkg/overlay: add a ForceMount flag to Options
12+
Add internal/volumes.bindFromChroot()
13+
Add an internal/open package
14+
Allow cache mounts to be stages or additional build contexts
15+
[release-1.37][CI:DOCS] Touch up changelogs
16+
[release-1.37][CI:DOCS] touchup changelog
17+
Update CHANGELOG.md
18+
519
## v1.37.5 (2024-10-17)
620

721
Bump the containers/storage library to v1.55.1 - Resolves CVE-2024-9676

changelog.txt

+13
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
- Changelog for v1.37.6 (2025-01-20)
2+
* Fix TOCTOU error when bind and cache mounts use "src" values
3+
* define.TempDirForURL(): always use an intermediate subdirectory
4+
* internal/volume.GetBindMount(): discard writes in bind mounts
5+
* pkg/overlay: add a MountLabel flag to Options
6+
* pkg/overlay: add a ForceMount flag to Options
7+
* Add internal/volumes.bindFromChroot()
8+
* Add an internal/open package
9+
* Allow cache mounts to be stages or additional build contexts
10+
* [release-1.37][CI:DOCS] Touch up changelogs
11+
* [release-1.37][CI:DOCS] touchup changelog
12+
* Update CHANGELOG.md
13+
114
- Changelog for v1.37.5 (2024-10-17)
215
* Bump the containers/storage library to v1.55.1 - Resolves CVE-2024-9676
316
* Properly validate cache IDs and sources - Resolves CVE-2024-9675

define/types.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const (
2929
// identify working containers.
3030
Package = "buildah"
3131
// Version for the Package. Also used by .packit.sh for Packit builds.
32-
Version = "1.37.5"
32+
Version = "1.37.6"
3333

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

0 commit comments

Comments
 (0)