Skip to content

Commit fedbd79

Browse files
Bump v1.35.0
Bump to Buildah v1.35.0 in preparation of Podman v5.0. [NO NEW TESTS NEEDED] Signed-off-by: tomsweeneyredhat <tsweeney@redhat.com>
1 parent 3164076 commit fedbd79

File tree

3 files changed

+168
-1
lines changed

3 files changed

+168
-1
lines changed

CHANGELOG.md

+84
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,90 @@
22

33
# Changelog
44

5+
## v1.35.0 (2024-03-06)
6+
7+
fix(deps): update module github.com/stretchr/testify to v1.9.0
8+
cgroups: reuse version check from c/common
9+
Update vendor of containers/(common,image)
10+
fix(deps): update github.com/containers/storage digest to eadc620
11+
fix(deps): update github.com/containers/luksy digest to ceb12d4
12+
fix(deps): update github.com/containers/image/v5 digest to cdc6802
13+
manifest add: complain if we get artifact flags without --artifact
14+
Use retry logic from containers/common
15+
Vendor in containers/(storage,image,common)
16+
Update module golang.org/x/crypto to v0.20.0
17+
Add comment re: Total Success task name
18+
tests: skip_if_no_unshare(): check for --setuid
19+
Properly handle build --pull=false
20+
[skip-ci] Update tim-actions/get-pr-commits action to v1.3.1
21+
Update module go.etcd.io/bbolt to v1.3.9
22+
Revert "Reduce official image size"
23+
Update module github.com/opencontainers/image-spec to v1.1.0
24+
Reduce official image size
25+
Build with CNI support on FreeBSD
26+
build --all-platforms: skip some base "image" platforms
27+
Bump main to v1.35.0-dev
28+
Vendor in latest containers/(storage,image,common)
29+
Split up error messages for missing --sbom related flags
30+
`buildah manifest`: add artifact-related options
31+
cmd/buildah/manifest.go: lock lists before adding/annotating/pushing
32+
cmd/buildah/manifest.go: don't make struct declarations aliases
33+
Use golang.org/x/exp/slices.Contains
34+
Disable loong64 again
35+
Fix a couple of typos in one-line comments
36+
egrep is obsolescent; use grep -E
37+
Try Cirrus with a newer VM version
38+
Set CONTAINERS_CONF in the chroot-mount-flags integration test
39+
Update to match dependency API update
40+
Update github.com/openshift/imagebuilder and containers/common
41+
docs: correct default authfile path
42+
fix(deps): update module github.com/containerd/containerd to v1.7.13
43+
tests: retrofit test for heredoc summary
44+
build, heredoc: show heredoc summary in build output
45+
manifest, push: add support for --retry and --retry-delay
46+
fix(deps): update github.com/openshift/imagebuilder digest to b767bc3
47+
imagebuildah: fix crash with empty RUN
48+
fix(deps): update github.com/containers/luksy digest to b62d551
49+
fix(deps): update module github.com/opencontainers/runc to v1.1.12 [security]
50+
fix(deps): update module github.com/moby/buildkit to v0.12.5 [security]
51+
Make buildah match podman for handling of ulimits
52+
docs: move footnotes to where they're applicable
53+
Allow users to specify no-dereference
54+
Run codespell on code
55+
Fix FreeBSD version parsing
56+
Fix a build break on FreeBSD
57+
Remove a bad FROM line
58+
fix(deps): update module github.com/onsi/gomega to v1.31.1
59+
fix(deps): update module github.com/opencontainers/image-spec to v1.1.0-rc6
60+
docs: use reversed logo for dark theme in README
61+
build,commit: add --sbom to scan and produce SBOMs when committing
62+
commit: force omitHistory if the parent has layers but no history
63+
docs: fix a couple of typos
64+
internal/mkcw.Archive(): handle extra image content
65+
stage_executor,heredoc: honor interpreter in heredoc
66+
stage_executor,layers: burst cache if heredoc content is changed
67+
fix(deps): update module golang.org/x/crypto to v0.18.0
68+
Replace map[K]bool with map[K]struct{} where it makes sense
69+
fix(deps): update module golang.org/x/sync to v0.6.0
70+
fix(deps): update module golang.org/x/term to v0.16.0
71+
Bump CI VMs
72+
Replace strings.SplitN with strings.Cut
73+
fix(deps): update github.com/containers/storage digest to ef81e9b
74+
fix(deps): update github.com/containers/image/v5 digest to 1b221d4
75+
fix(deps): update module github.com/fsouza/go-dockerclient to v1.10.1
76+
Document use of containers-transports values in buildah
77+
fix(deps): update module golang.org/x/crypto to v0.17.0 [security]
78+
chore(deps): update dependency containers/automation_images to v20231208
79+
manifest: addCompression use default from containers.conf
80+
commit: add a --add-file flag
81+
mkcw: populate the rootfs using an overlay
82+
chore(deps): update dependency containers/automation_images to v20230517
83+
[skip-ci] Update actions/stale action to v9
84+
fix(deps): update module github.com/containernetworking/plugins to v1.4.0
85+
fix(deps): update github.com/containers/image/v5 digest to 7a40fee
86+
Bump to v1.34.1-dev
87+
Ignore errors if label.Relabel returns ENOSUP
88+
589
## v1.34.0 (2023-12-11)
690

791
vendor: update c/{common,image,storage}

changelog.txt

+83
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,86 @@
1+
- Changelog for v1.35.0 (2024-03-06)
2+
* fix(deps): update module github.com/stretchr/testify to v1.9.0
3+
* cgroups: reuse version check from c/common
4+
* Update vendor of containers/(common,image)
5+
* fix(deps): update github.com/containers/storage digest to eadc620
6+
* fix(deps): update github.com/containers/luksy digest to ceb12d4
7+
* fix(deps): update github.com/containers/image/v5 digest to cdc6802
8+
* manifest add: complain if we get artifact flags without --artifact
9+
* Use retry logic from containers/common
10+
* Vendor in containers/(storage,image,common)
11+
* Update module golang.org/x/crypto to v0.20.0
12+
* Add comment re: Total Success task name
13+
* tests: skip_if_no_unshare(): check for --setuid
14+
* Properly handle build --pull=false
15+
* [skip-ci] Update tim-actions/get-pr-commits action to v1.3.1
16+
* Update module go.etcd.io/bbolt to v1.3.9
17+
* Revert "Reduce official image size"
18+
* Update module github.com/opencontainers/image-spec to v1.1.0
19+
* Reduce official image size
20+
* Build with CNI support on FreeBSD
21+
* build --all-platforms: skip some base "image" platforms
22+
* Bump main to v1.35.0-dev
23+
* Vendor in latest containers/(storage,image,common)
24+
* Split up error messages for missing --sbom related flags
25+
* `buildah manifest`: add artifact-related options
26+
* cmd/buildah/manifest.go: lock lists before adding/annotating/pushing
27+
* cmd/buildah/manifest.go: don't make struct declarations aliases
28+
* Use golang.org/x/exp/slices.Contains
29+
* Disable loong64 again
30+
* Fix a couple of typos in one-line comments
31+
* egrep is obsolescent; use grep -E
32+
* Try Cirrus with a newer VM version
33+
* Set CONTAINERS_CONF in the chroot-mount-flags integration test
34+
* Update to match dependency API update
35+
* Update github.com/openshift/imagebuilder and containers/common
36+
* docs: correct default authfile path
37+
* fix(deps): update module github.com/containerd/containerd to v1.7.13
38+
* tests: retrofit test for heredoc summary
39+
* build, heredoc: show heredoc summary in build output
40+
* manifest, push: add support for --retry and --retry-delay
41+
* fix(deps): update github.com/openshift/imagebuilder digest to b767bc3
42+
* imagebuildah: fix crash with empty RUN
43+
* fix(deps): update github.com/containers/luksy digest to b62d551
44+
* fix(deps): update module github.com/opencontainers/runc to v1.1.12 [security]
45+
* fix(deps): update module github.com/moby/buildkit to v0.12.5 [security]
46+
* Make buildah match podman for handling of ulimits
47+
* docs: move footnotes to where they're applicable
48+
* Allow users to specify no-dereference
49+
* Run codespell on code
50+
* Fix FreeBSD version parsing
51+
* Fix a build break on FreeBSD
52+
* Remove a bad FROM line
53+
* fix(deps): update module github.com/onsi/gomega to v1.31.1
54+
* fix(deps): update module github.com/opencontainers/image-spec to v1.1.0-rc6
55+
* docs: use reversed logo for dark theme in README
56+
* build,commit: add --sbom to scan and produce SBOMs when committing
57+
* commit: force omitHistory if the parent has layers but no history
58+
* docs: fix a couple of typos
59+
* internal/mkcw.Archive(): handle extra image content
60+
* stage_executor,heredoc: honor interpreter in heredoc
61+
* stage_executor,layers: burst cache if heredoc content is changed
62+
* fix(deps): update module golang.org/x/crypto to v0.18.0
63+
* Replace map[K]bool with map[K]struct{} where it makes sense
64+
* fix(deps): update module golang.org/x/sync to v0.6.0
65+
* fix(deps): update module golang.org/x/term to v0.16.0
66+
* Bump CI VMs
67+
* Replace strings.SplitN with strings.Cut
68+
* fix(deps): update github.com/containers/storage digest to ef81e9b
69+
* fix(deps): update github.com/containers/image/v5 digest to 1b221d4
70+
* fix(deps): update module github.com/fsouza/go-dockerclient to v1.10.1
71+
* Document use of containers-transports values in buildah
72+
* fix(deps): update module golang.org/x/crypto to v0.17.0 [security]
73+
* chore(deps): update dependency containers/automation_images to v20231208
74+
* manifest: addCompression use default from containers.conf
75+
* commit: add a --add-file flag
76+
* mkcw: populate the rootfs using an overlay
77+
* chore(deps): update dependency containers/automation_images to v20230517
78+
* [skip-ci] Update actions/stale action to v9
79+
* fix(deps): update module github.com/containernetworking/plugins to v1.4.0
80+
* fix(deps): update github.com/containers/image/v5 digest to 7a40fee
81+
* Bump to v1.34.1-dev
82+
* Ignore errors if label.Relabel returns ENOSUP
83+
184
- Changelog for v1.34.0 (2023-12-11)
285
* vendor: update c/{common,image,storage}
386
* run: Allow using just one jail per container on FreeBSD

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.35.0-dev"
32+
Version = "1.35.0"
3333

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

0 commit comments

Comments
 (0)