diff --git a/CHANGELOG.md b/CHANGELOG.md index 1be79ccc03..cb6c7f5e9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,34 @@ # Changelog +## v1.34.1 (2024-02-21) + + [release-1.34] Vendor bumps + manifest: addCompression use default from containers.conf + Build with CNI support on FreeBSD + tests: retrofit test for heredoc summary + build, heredoc: show heredoc summary in build output + docs: correct default authfile path + Make buildah match podman for handling of ulimits + imagebuildah: fix crash with empty RUN + docs: move footnotes to where they're applicable + Run codespell on code + Fix FreeBSD version parsing + Allow users to specify no-dereference + Fix a build break on FreeBSD + Remove a bad FROM line + commit: force omitHistory if the parent has layers but no history + docs: fix a couple of typos + stage_executor,heredoc: honor interpreter in heredoc + stage_executor,layers: burst cache if heredoc content is changed + Replace map[K]bool with map[K]struct{} where it makes sense + Replace strings.SplitN with strings.Cut + Document use of containers-transports values in buildah + commit: add a --add-file flag + mkcw: populate the rootfs using an overlay + Ignore errors if label.Relabel returns ENOSUP + manifest: addCompression use default from containers.conf + ## v1.34.0 (2023-12-11) vendor: update c/{common,image,storage} diff --git a/changelog.txt b/changelog.txt index b18f950513..a84b37076c 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,30 @@ +- Changelog for v1.34.1 (2024-02-21) + * [release-1.34] Vendor bumps + * manifest: addCompression use default from containers.conf + * Build with CNI support on FreeBSD + * tests: retrofit test for heredoc summary + * build, heredoc: show heredoc summary in build output + * docs: correct default authfile path + * Make buildah match podman for handling of ulimits + * imagebuildah: fix crash with empty RUN + * docs: move footnotes to where they're applicable + * Run codespell on code + * Fix FreeBSD version parsing + * Allow users to specify no-dereference + * Fix a build break on FreeBSD + * Remove a bad FROM line + * commit: force omitHistory if the parent has layers but no history + * docs: fix a couple of typos + * stage_executor,heredoc: honor interpreter in heredoc + * stage_executor,layers: burst cache if heredoc content is changed + * Replace map[K]bool with map[K]struct{} where it makes sense + * Replace strings.SplitN with strings.Cut + * Document use of containers-transports values in buildah + * commit: add a --add-file flag + * mkcw: populate the rootfs using an overlay + * Ignore errors if label.Relabel returns ENOSUP + * manifest: addCompression use default from containers.conf + - Changelog for v1.34.0 (2023-12-11) * vendor: update c/{common,image,storage} * run: Allow using just one jail per container on FreeBSD diff --git a/define/types.go b/define/types.go index 1aff0ecc5a..7f0b71393c 100644 --- a/define/types.go +++ b/define/types.go @@ -29,7 +29,7 @@ const ( // identify working containers. Package = "buildah" // Version for the Package. Also used by .packit.sh for Packit builds. - Version = "1.34.0" + Version = "1.34.1" // DefaultRuntime if containers.conf fails. DefaultRuntime = "runc"