File tree 4 files changed +29
-2
lines changed
4 files changed +29
-2
lines changed Original file line number Diff line number Diff line change 6
6
# ### Global variables used for all tasks
7
7
# ###
8
8
# Name of the ultimate destination branch for this CI run, PR or post-merge.
9
- DEST_BRANCH : " main "
9
+ DEST_BRANCH : " release-1.37 "
10
10
GOPATH : " /var/tmp/go"
11
11
GOSRC : " ${GOPATH}/src/github.com/containers/buildah"
12
12
# Overrides default location (/tmp/cirrus) for repo clone
Original file line number Diff line number Diff line change 2
2
3
3
# Changelog
4
4
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
+
5
19
## v1.37.5 (2024-10-17)
6
20
7
21
Bump the containers/storage library to v1.55.1 - Resolves CVE-2024-9676
Original file line number Diff line number Diff line change
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
+
1
14
- Changelog for v1.37.5 (2024-10-17)
2
15
* Bump the containers/storage library to v1.55.1 - Resolves CVE-2024-9676
3
16
* Properly validate cache IDs and sources - Resolves CVE-2024-9675
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ const (
29
29
// identify working containers.
30
30
Package = "buildah"
31
31
// Version for the Package. Also used by .packit.sh for Packit builds.
32
- Version = "1.37.5 "
32
+ Version = "1.37.6 "
33
33
34
34
// DefaultRuntime if containers.conf fails.
35
35
DefaultRuntime = "runc"
You can’t perform that action at this time.
0 commit comments