File tree 5 files changed +43
-3
lines changed
5 files changed +43
-3
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.26 "
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.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
+
5
19
## v1.26.8 (2024-10-21)
6
20
7
21
Properly validate cache IDs and sources
Original file line number Diff line number Diff line change
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
+
1
14
- Changelog for v1.26.8 (2024-10-21)
2
15
* Properly validate cache IDs and sources
3
16
Original file line number Diff line number Diff line change 26
26
27
27
Name: buildah
28
28
# Bump version in define/types.go too
29
- Version: 1.26.8
29
+ Version: 1.26.9
30
30
Release: 1.git%{shortcommit }%{?dist }
31
31
Summary: A command line tool used to creating OCI Images
32
32
License: ASL 2.0
@@ -100,6 +100,19 @@ make DESTDIR=%{buildroot} PREFIX=%{_prefix} install install.completions
100
100
%{_datadir }/bash-completion/completions/*
101
101
102
102
%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
+
103
116
* Mon Oct 21 2024 David Shea <dshea@redhat.com> 1.26.8-1
104
117
- Properly validate cache IDs and sources
105
118
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ const (
29
29
Package = "buildah"
30
30
// Version for the Package. Bump version in contrib/rpm/buildah.spec
31
31
// too.
32
- Version = "1.26.8 "
32
+ Version = "1.26.9 "
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