diff --git a/CHANGELOG.md b/CHANGELOG.md index 25f02db195..0ad3069ceb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,24 @@ # Changelog +## v1.19.3 (2021-01-28) + [ci:docs] Fix man page for buildah push + Vendor in containers/image v5.10.1 + Rebuild layer if a change in ARG is detected + Bump golang.org/x/crypto to latest rel-1.19 + local image lookup by digest + Use build-arg ENV val from local environment if set + Pick default OCI Runtime from containers.conf + +## v1.19.2 (2021-01-15) + If overlay mount point destination does not exists, do not throw error + Vendor in containers/common + +## v1.19.1 (2021-01-14) + Cherry pick localhost fix and update CI configuration for release-1.19 + use local image name for pull policy checks + Vendor in common 0.33.1 + ## v1.19.0 (2021-01-08) Update vendor of containers/storage and containers/common Buildah inspect should be able to inspect manifests diff --git a/buildah.go b/buildah.go index 89fc860dd0..4fbc475c2a 100644 --- a/buildah.go +++ b/buildah.go @@ -28,7 +28,7 @@ const ( Package = "buildah" // Version for the Package. Bump version in contrib/rpm/buildah.spec // too. - Version = "1.19.2" + Version = "1.19.3" // The value we use to identify what type of information, currently a // serialized Builder structure, we are using as per-container state. // This should only be changed when we make incompatible changes to diff --git a/changelog.txt b/changelog.txt index ce2f2696f9..db2faf71af 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,3 +1,21 @@ +- Changelog for v1.19.3 (2021-01-28) + * [ci:docs] Fix man page for buildah push + * Vendor in containers/image v5.10.1 + * Rebuild layer if a change in ARG is detected + * Bump golang.org/x/crypto to latest rel-1.19 + * local image lookup by digest + * Use build-arg ENV val from local environment if set + * Pick default OCI Runtime from containers.conf + +- Changelog for v1.19.2 (2021-01-15) + * If overlay mount point destination does not exists, do not throw error + * Vendor in containers/common + +- Changelog for v1.19.1 (2021-01-14) + * Cherry pick localhost fix and update CI configuration for release-1.19 + * use local image name for pull policy checks + * Vendor in common 0.33.1 + - Changelog for v1.19.0 (2021-01-08) * Update vendor of containers/storage and containers/common * Buildah inspect should be able to inspect manifests diff --git a/contrib/rpm/buildah.spec b/contrib/rpm/buildah.spec index b02e750380..1411ed97e7 100644 --- a/contrib/rpm/buildah.spec +++ b/contrib/rpm/buildah.spec @@ -26,7 +26,7 @@ Name: buildah # Bump version in buildah.go too -Version: 1.19.2 +Version: 1.19.3 Release: 1.git%{shortcommit}%{?dist} Summary: A command line tool used to creating OCI Images License: ASL 2.0 @@ -100,11 +100,23 @@ make DESTDIR=%{buildroot} PREFIX=%{_prefix} install install.completions %{_datadir}/bash-completion/completions/* %changelog +* Thu Jan 28, 2021 Tom Sweeney 1.19.3-1 +- [ci:docs] Fix man page for buildah push +- Vendor in containers/image v5.10.1 +- Rebuild layer if a change in ARG is detected +- Bump golang.org/x/crypto to latest rel-1.19 +- local image lookup by digest +- Use build-arg ENV val from local environment if set +- Pick default OCI Runtime from containers.conf + * Fri Jan 15, 2021 Dan Walsh 1.19.2-1 -- If overlay destination does not exists, do not throw error +- If overlay mount point destination does not exists, do not throw error +- Vendor in containers/common * Thu Jan 14, 2021 Dan Walsh 1.19.1-1 +- Cherry pick localhost fix and update CI configuration for release-1.19 - use local image name for pull policy checks +- Vendor in common 0.33.1 * Fri Jan 8, 2021 Tom Sweeney 1.19.0-1 - Update vendor of containers/storage and containers/common