45041a
%global _find_debuginfo_dwz_opts %{nil}
45041a
%global _dwz_low_mem_die_limit 0
45041a
45041a
%if 0%{?rhel} > 7 && ! 0%{?fedora}
45041a
%define gobuild(o:) \
722518
go build -buildmode pie -compiler gc -tags="rpm_crashtraceback libtrust_openssl ${BUILDTAGS:-}" -ldflags "${LDFLAGS:-} -compressdwarf=false -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -extldflags '%__global_ldflags'" -a -v %{?**};
722518
%else
722518
%if ! 0%{?gobuild:1}
722518
%define gobuild(o:) GO111MODULE=off go build -buildmode pie -compiler gc -tags="rpm_crashtraceback ${BUILDTAGS:-}" -ldflags "${LDFLAGS:-} -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -extldflags '-Wl,-z,relro -Wl,-z,now -specs=/usr/lib/rpm/redhat/redhat-hardened-ld '" -a -v %{?**};
722518
%endif
c44ea6
%endif
45041a
722518
%global import_path github.com/containers/buildah
d0a145
%global branch release-1.29
d0a145
%global commit0 7fa17a8428727eb3ecaca088bda1ebec590eeb8c
722518
%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
45041a
750877
Epoch: 1
722518
Name: buildah
d0a145
Version: 1.29.1
d0a145
Release: 1%{?dist}
45041a
Summary: A command line tool used for creating OCI Images
45041a
License: ASL 2.0
45041a
URL: https://%{name}.io
722518
# https://fedoraproject.org/wiki/PackagingDrafts/Go#Go_Language_Architectures
722518
ExclusiveArch: %{go_arches}
722518
%if 0%{?branch:1}
722518
Source0: https://%{import_path}/tarball/%{commit0}/%{branch}-%{shortcommit0}.tar.gz
722518
%else
750877
Source0: https://%{import_path}/archive/%{commit0}/%{name}-%{version}-%{shortcommit0}.tar.gz
722518
%endif
5e23c4
BuildRequires: golang >= 1.17.7
45041a
BuildRequires: git
45041a
BuildRequires: glib2-devel
c44ea6
BuildRequires: libseccomp-devel
45041a
BuildRequires: ostree-devel
45041a
BuildRequires: glibc-static
5e23c4
BuildRequires: /usr/bin/go-md2man
45041a
BuildRequires: gpgme-devel
45041a
BuildRequires: device-mapper-devel
45041a
BuildRequires: libassuan-devel
c44ea6
BuildRequires: make
45041a
Requires: runc >= 1.0.0-26
d984e4
Requires: containers-common >= 2:1-2
37261b
Recommends: container-selinux
c44ea6
Requires: slirp4netns >= 0.3-0
5e23c4
Requires: containernetworking-plugins >= 0.9.1-1
5e23c4
Suggests: netavark
5e23c4
Requires: iptables
5e23c4
Requires: nftables
45041a
45041a
%description
45041a
The %{name} package provides a command line tool which can be used to
45041a
* create a working container from scratch
45041a
or
45041a
* create a working container from an image as a starting point
45041a
* mount/umount a working container's root file system for manipulation
45041a
* save container's root file system layer to create a new image
45041a
* delete a working container or an image
45041a
45041a
%package tests
45041a
Summary: Tests for %{name}
750877
Requires: %{name} = %{epoch}:%{version}-%{release}
45041a
Requires: bzip2
45041a
Requires: podman
45041a
Requires: golang
d984e4
Requires: jq
722518
Requires: httpd-tools
d984e4
Requires: openssl
d984e4
Requires: nmap-ncat
45041a
45041a
%description tests
45041a
%{summary}
45041a
45041a
This package contains system tests for %{name}
45041a
45041a
%prep
722518
%if 0%{?branch:1}
722518
%autosetup -Sgit -n containers-%{name}-%{shortcommit0}
722518
%else
750877
%autosetup -Sgit -n %{name}-%{commit0}
722518
%endif
c44ea6
sed -i 's/GOMD2MAN =/GOMD2MAN ?=/' docs/Makefile
c44ea6
sed -i '/docs install/d' Makefile
45041a
45041a
%build
45041a
mkdir _build
45041a
pushd _build
722518
mkdir -p src/github.com/containers
45041a
ln -s $(dirs +1 -l) src/%{import_path}
45041a
popd
45041a
45041a
mv vendor src
45041a
45041a
export GOPATH=$(pwd)/_build:$(pwd)
c44ea6
export BUILDTAGS='seccomp selinux btrfs_noversion exclude_graphdriver_btrfs'
c44ea6
export GO111MODULE=off
722518
export CGO_CFLAGS="%{optflags} -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64"
d984e4
export CNI_VERSION=`grep '^# github.com/containernetworking/cni ' src/modules.txt | sed 's,.* ,,'`
d984e4
export LDFLAGS="$LDFLAGS -X main.buildInfo=`date +%s` -X main.cniVersion=${CNI_VERSION}"
c44ea6
rm -f src/github.com/containers/storage/drivers/register/register_btrfs.go
722518
%gobuild -o bin/%{name} %{import_path}/cmd/%{name}
c44ea6
%gobuild -o imgtype %{import_path}/tests/imgtype
d984e4
%gobuild -o bin/copy %{import_path}/tests/copy
5e23c4
%gobuild -o bin/tutorial %{import_path}/tests/tutorial
c44ea6
GOMD2MAN=go-md2man %{__make} -C docs
45041a
45041a
%install
45041a
export GOPATH=$(pwd)/_build:$(pwd):%{gopath}
45041a
make DESTDIR=%{buildroot} PREFIX=%{_prefix} install install.completions
45041a
install -d -p %{buildroot}/%{_datadir}/%{name}/test/system
45041a
cp -pav tests/. %{buildroot}/%{_datadir}/%{name}/test/system
45041a
cp imgtype %{buildroot}/%{_bindir}/%{name}-imgtype
d984e4
cp bin/copy %{buildroot}/%{_bindir}/%{name}-copy
5e23c4
cp bin/tutorial %{buildroot}/%{_bindir}/%{name}-tutorial
c44ea6
make DESTDIR=%{buildroot} PREFIX=%{_prefix} -C docs install
45041a
45041a
#define license tag if not already defined
45041a
%{!?_licensedir:%global license %doc}
45041a
45041a
%files
45041a
%license LICENSE
45041a
%doc README.md
45041a
%{_bindir}/%{name}
750877
%{_mandir}/man[15]/*
45041a
%dir %{_datadir}/bash-completion
45041a
%dir %{_datadir}/bash-completion/completions
45041a
%{_datadir}/bash-completion/completions/%{name}
45041a
45041a
%files tests
45041a
%license LICENSE
45041a
%{_bindir}/%{name}-imgtype
d984e4
%{_bindir}/%{name}-copy
5e23c4
%{_bindir}/%{name}-tutorial
45041a
%{_datadir}/%{name}/test
45041a
45041a
%changelog
d0a145
* Thu Feb 16 2023 Jindrich Novy <jnovy@redhat.com> - 1:1.29.1-1
d0a145
- update to the latest content of https://github.com/containers/buildah/tree/release-1.29
d0a145
  (https://github.com/containers/buildah/commit/7fa17a8)
d0a145
- Related: #2123641
d0a145
d0a145
* Fri Feb 10 2023 Jindrich Novy <jnovy@redhat.com> - 1:1.29.0-4
d0a145
- update to the latest content of https://github.com/containers/buildah/tree/release-1.29
d0a145
  (https://github.com/containers/buildah/commit/c822cc6)
d0a145
- Related: #2123641
d0a145
d0a145
* Tue Jan 31 2023 Jindrich Novy <jnovy@redhat.com> - 1:1.29.0-3
d0a145
- update to the latest content of https://github.com/containers/buildah/tree/release-1.29
d0a145
  (https://github.com/containers/buildah/commit/94b723c)
d0a145
- Related: #2123641
d0a145
d0a145
* Mon Jan 30 2023 Jindrich Novy <jnovy@redhat.com>
d0a145
- update to the latest content of https://github.com/containers/buildah/tree/release-1.29.0
d0a145
  (https://github.com/containers/buildah/commit/)
d0a145
- Related: #2123641
d0a145
d0a145
* Fri Jan 27 2023 Jindrich Novy <jnovy@redhat.com> - 1:1.29.0-1
d0a145
- update to the latest content of https://github.com/containers/buildah/tree/release-1.29.0
d0a145
  (https://github.com/containers/buildah/commit/94b723c)
d0a145
- Related: #2123641
d0a145
d0a145
* Wed Jan 25 2023 Jindrich Novy <jnovy@redhat.com> - 1:1.29.0-0.5
d0a145
- update to the latest content of https://github.com/containers/buildah/tree/main
d0a145
  (https://github.com/containers/buildah/commit/078a7ff)
d0a145
- Related: #2123641
d0a145
d0a145
* Tue Jan 24 2023 Jindrich Novy <jnovy@redhat.com> - 1:1.29.0-0.4
d0a145
- update to the latest content of https://github.com/containers/buildah/tree/main
d0a145
  (https://github.com/containers/buildah/commit/4b72f05)
d0a145
- Related: #2123641
d0a145
d0a145
* Wed Jan 18 2023 Jindrich Novy <jnovy@redhat.com> - 1:1.29.0-0.3
d0a145
- update to the latest content of https://github.com/containers/buildah/tree/main
d0a145
  (https://github.com/containers/buildah/commit/c541c35)
d0a145
- Related: #2123641
d0a145
d0a145
* Tue Jan 17 2023 Jindrich Novy <jnovy@redhat.com> - 1:1.29.0-0.2
d0a145
- update to the latest content of https://github.com/containers/buildah/tree/main
d0a145
  (https://github.com/containers/buildah/commit/39dfa73)
d0a145
- Related: #2123641
d0a145
d0a145
* Fri Jan 13 2023 Jindrich Novy <jnovy@redhat.com> - 1:1.29.0-0.1
d0a145
- update to the latest content of https://github.com/containers/buildah/tree/main
d0a145
  (https://github.com/containers/buildah/commit/8ca903b)
d0a145
- Resolves: #2140087
d0a145
d0a145
* Fri Jan 06 2023 Jindrich Novy <jnovy@redhat.com> - 1:1.28.2-3
d0a145
- update to the latest content of https://github.com/containers/buildah/tree/release-1.28
d0a145
  (https://github.com/containers/buildah/commit/cfefbb6)
d0a145
- Resolves: #2140087
d0a145
d0a145
* Tue Dec 06 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.28.2-2
d0a145
- update to the latest content of https://github.com/containers/buildah/tree/release-1.28
d0a145
  (https://github.com/containers/buildah/commit/7e4d9dd)
d0a145
- Resolves: #2136319
d0a145
d0a145
* Mon Nov 28 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.28.2-1
d0a145
- update to https://github.com/containers/buildah/releases/tag/v1.28.2
d0a145
- Related: #2123641
d0a145
d0a145
* Thu Oct 06 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.28.0-1
d0a145
- update to https://github.com/containers/buildah/releases/tag/v1.28.0
d0a145
- Related: #2123641
d0a145
d0a145
* Wed Sep 21 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.27.2-1
d0a145
- update to https://github.com/containers/buildah/releases/tag/v1.27.2
d0a145
- Related: #2123641
d0a145
d0a145
* Mon Sep 12 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.27.1-2
d0a145
- drop applied patch
d0a145
- Related: #2123641
d0a145
d0a145
* Mon Sep 12 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.27.1-1
d0a145
- update to https://github.com/containers/buildah/releases/tag/v1.27.1
d0a145
- Related: #2123641
d0a145
5e23c4
* Fri Aug 26 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.27.0-2
5e23c4
- fix CVE-2022-2990
5e23c4
- Related: #2061390
5e23c4
5e23c4
* Tue Aug 09 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.27.0-1
5e23c4
- update to https://github.com/containers/buildah/releases/tag/v1.27.0
5e23c4
- Related: #2061390
5e23c4
5e23c4
* Mon Aug 08 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.26.4-3
5e23c4
- add buildah-tutorial to test subpackage
5e23c4
- Related: #2061390
5e23c4
5e23c4
* Thu Aug 04 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.26.4-1
5e23c4
- update to https://github.com/containers/buildah/releases/tag/v1.26.4
5e23c4
- Related: #2061390
5e23c4
5e23c4
* Wed Aug 03 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.26.3-1
5e23c4
- update to https://github.com/containers/buildah/releases/tag/v1.26.3
5e23c4
- Related: #2061390
5e23c4
5e23c4
* Thu Jul 07 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.26.2-1
5e23c4
- update to https://github.com/containers/buildah/releases/tag/v1.26.2
5e23c4
- Related: #2061390
5e23c4
5e23c4
* Wed May 11 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.26.1-2
5e23c4
- BuildRequires: /usr/bin/go-md2man
5e23c4
- Related: #2061390
5e23c4
5e23c4
* Thu May 05 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.26.1-1
5e23c4
- update to https://github.com/containers/buildah/releases/tag/v1.26.1
5e23c4
- Related: #2061390
5e23c4
5e23c4
* Thu May 05 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.25.1-3
5e23c4
- add dependencies to network stack
5e23c4
- Related: #2061390
5e23c4
5e23c4
* Fri Apr 08 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.25.1-2
5e23c4
- bump golang BR to 1.17.7
5e23c4
- Related: #2061390
5e23c4
5e23c4
* Thu Mar 31 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.25.1-1
5e23c4
- update to https://github.com/containers/buildah/releases/tag/v1.25.1
5e23c4
- Related: #2061390
5e23c4
5e23c4
* Wed Mar 30 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.25.0-1
5e23c4
- update to https://github.com/containers/buildah/releases/tag/v1.25.0
5e23c4
- Related: #2061390
5e23c4
750877
* Mon Feb 21 2022 Lokesh Mandvekar <lsm5@redhat.com> - 1:1.24.2-2
750877
- Add patch to fix bash symtax for gating tests
750877
- Upstream PR: https://github.com/containers/buildah/pull/3792
750877
- Related: #2001445
750877
750877
* Thu Feb 17 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.2-1
750877
- update to https://github.com/containers/buildah/releases/tag/v1.24.2
750877
- Related: #2001445
750877
750877
* Fri Feb 04 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.1-1
750877
- update to https://github.com/containers/buildah/releases/tag/v1.24.1
750877
- Related: #2001445
750877
750877
* Wed Feb 02 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.24.0-1
750877
- update to https://github.com/containers/buildah/releases/tag/v1.24.0
750877
- Related: #2001445
750877
750877
* Tue Jan 25 2022 Jindrich Novy <jnovy@redhat.com> - 1:1.23.2-1
750877
- update to the latest content of https://github.com/containers/buildah/tree/release-1.23
750877
  (https://github.com/containers/buildah/commit/83a66a7)
750877
- Related: #2001445
750877
750877
* Mon Nov 22 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.23.1-3
750877
- update to the latest content of https://github.com/containers/buildah/tree/release-1.23
750877
  (https://github.com/containers/buildah/commit/867c1bc)
750877
- Related: #2001445
750877
750877
* Mon Oct 18 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.23.1-2
750877
- respect Epoch in subpackage dependencies
750877
- Related: #2001445
750877
750877
* Fri Oct 15 2021 Jindrich Novy <jnovy@redhat.com> - 1:1.23.1-1
750877
- bump Epoch to preserve upgrade path
750877
- Related: #2001445
750877
750877
* Wed Oct 13 2021 Jindrich Novy <jnovy@redhat.com> - 1.23.1-0.1
750877
- update to the latest content of https://github.com/containers/buildah/tree/release-1.23
750877
  (https://github.com/containers/buildah/commit/87a0565)
750877
- Related: #2001445
750877
750877
* Wed Oct 13 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.18
750877
- update to the latest content of https://github.com/containers/buildah/tree/main
750877
  (https://github.com/containers/buildah/commit/982717a)
750877
- Related: #2001445
750877
750877
* Mon Oct 11 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.17
750877
- update to the latest content of https://github.com/containers/buildah/tree/main
750877
  (https://github.com/containers/buildah/commit/50869a7)
750877
- Related: #2001445
750877
750877
* Fri Oct 08 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.16
750877
- update to the latest content of https://github.com/containers/buildah/tree/main
750877
  (https://github.com/containers/buildah/commit/211972a)
750877
- Related: #2001445
750877
750877
* Thu Oct 07 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.15
750877
- update to the latest content of https://github.com/containers/buildah/tree/main
750877
  (https://github.com/containers/buildah/commit/c044ad6)
750877
- Related: #2001445
750877
750877
* Wed Oct 06 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.14
750877
- update to the latest content of https://github.com/containers/buildah/tree/main
750877
  (https://github.com/containers/buildah/commit/7807a0e)
750877
- Related: #2001445
750877
750877
* Mon Oct 04 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.13
750877
- update to the latest content of https://github.com/containers/buildah/tree/main
750877
  (https://github.com/containers/buildah/commit/0cd9445)
750877
- Related: #2001445
750877
750877
* Fri Oct 01 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.12
750877
- update to the latest content of https://github.com/containers/buildah/tree/main
750877
  (https://github.com/containers/buildah/commit/954c481)
750877
- Related: #2001445
750877
750877
* Thu Sep 30 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.11
750877
- include all man pages
750877
- Related: #2001445
750877
750877
* Thu Sep 30 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.10
750877
- update to the latest content of https://github.com/containers/buildah/tree/main
750877
  (https://github.com/containers/buildah/commit/d2ef199)
750877
- Related: #2001445
750877
750877
* Wed Sep 29 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.9
750877
- update to the latest content of https://github.com/containers/buildah/tree/main
750877
  (https://github.com/containers/buildah/commit/455f2f1)
750877
- Related: #2001445
750877
750877
* Mon Sep 27 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.8
750877
- update to the latest content of https://github.com/containers/buildah/tree/main
750877
  (https://github.com/containers/buildah/commit/8548885)
750877
- Related: #2001445
750877
750877
* Fri Sep 24 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.7
750877
- update to the latest content of https://github.com/containers/buildah/tree/main
750877
  (https://github.com/containers/buildah/commit/9a49348)
750877
- Related: #2001445
750877
750877
* Thu Sep 23 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.6
750877
- update to the latest content of https://github.com/containers/buildah/tree/main
750877
  (https://github.com/containers/buildah/commit/a72aad4)
750877
- Related: #2001445
750877
750877
* Wed Sep 22 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.5
750877
- update to the latest content of https://github.com/containers/buildah/tree/main
750877
  (https://github.com/containers/buildah/commit/b8757e9)
750877
- Related: #2001445
750877
750877
* Tue Sep 21 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.4
750877
- update to the latest content of https://github.com/containers/buildah/tree/main
750877
  (https://github.com/containers/buildah/commit/fb84638)
750877
- Related: #2001445
750877
750877
* Mon Sep 20 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.3
750877
- update to the latest content of https://github.com/containers/buildah/tree/main
750877
  (https://github.com/containers/buildah/commit/f3f3c55)
750877
- Related: #2001445
750877
750877
* Fri Sep 17 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.2
750877
- update to the latest content of https://github.com/containers/buildah/tree/main
750877
  (https://github.com/containers/buildah/commit/753716a)
750877
- Related: #2001445
750877
750877
* Wed Sep 15 2021 Jindrich Novy <jnovy@redhat.com> - 1.24.0-0.1
750877
- update to the latest content of https://github.com/containers/buildah/tree/main
750877
  (https://github.com/containers/buildah/commit/69b3e56)
750877
- Related: #2001445
750877
750877
* Mon Sep 13 2021 Jindrich Novy <jnovy@redhat.com> - 1.23.0-0.2
750877
- update to the latest content of https://github.com/containers/buildah/tree/main
750877
  (https://github.com/containers/buildah/commit/e9bc224)
750877
- Related: #2001445
750877
750877
* Fri Sep 10 2021 Jindrich Novy <jnovy@redhat.com> - 1.23.0-0.1
750877
- update to the latest content of https://github.com/containers/buildah/tree/main
750877
  (https://github.com/containers/buildah/commit/a5aba5c)
750877
- Related: #2001445
750877
d984e4
* Wed Aug 25 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.3-2
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/release-1.22
d984e4
  (https://github.com/containers/buildah/commit/4d20222)
d984e4
- Related: #1934415
d984e4
d984e4
* Fri Aug 20 2021 Lokesh Mandvekar <lsm5@redhat.com> - 1.22.3-1
d984e4
- update to v1.22.3
d984e4
- Related: #1934415
d984e4
d984e4
* Mon Aug 16 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-3
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/release-1.22
d984e4
  (https://github.com/containers/buildah/commit/98960f2)
d984e4
- Related: #1934415
d984e4
d984e4
* Thu Aug 05 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-2
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/release-1.22
d984e4
  (https://github.com/containers/buildah/commit/71b8003)
d984e4
- Related: #1934415
d984e4
d984e4
* Tue Aug 03 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-1
d984e4
- update to 1.22.0 release and switch to the release-1.22 maint branch
d984e4
- Related: #1934415
d984e4
d984e4
* Mon Aug 02 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.4
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/main
d984e4
  (https://github.com/containers/buildah/commit/56ff12f)
d984e4
- Related: #1934415
d984e4
d984e4
* Thu Jul 29 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.3
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/main
d984e4
  (https://github.com/containers/buildah/commit/f517d85)
d984e4
- Related: #1934415
d984e4
d984e4
* Wed Jul 28 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.2
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/main
d984e4
  (https://github.com/containers/buildah/commit/42dbc97)
d984e4
- Related: #1934415
d984e4
d984e4
* Wed Jul 28 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.0-1
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/main
d984e4
  (https://github.com/containers/buildah/commit/42dbc97)
d984e4
- Related: #1934415
d984e4
d984e4
* Tue Jul 27 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.1
d984e4
- switch to main branch
d984e4
- Related: #1934415
d984e4
d984e4
* Mon Jul 26 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.4-2
d984e4
- add buildah-copy helper
d984e4
- Related: #1934415
d984e4
d984e4
* Mon Jul 26 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.4-1
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/release-1.21
d984e4
  (https://github.com/containers/buildah/commit/9c83683)
d984e4
- Related: #1934415
d984e4
d984e4
* Wed Jul 21 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.3-2
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/release-1.21
d984e4
  (https://github.com/containers/buildah/commit/30a10f3)
d984e4
- Related: #1934415
d984e4
d984e4
* Thu Jul 15 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.3-1
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/release-1.21
d984e4
  (https://github.com/containers/buildah/commit/7f9540d)
d984e4
- Related: #1934415
d984e4
d984e4
* Thu Jul 01 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.1-0.17
d984e4
- update to buildah 1.21.1 from the release-1.21 upstream branch
d984e4
- Related: #1934415
d984e4
d984e4
* Tue Jun 29 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.16
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/main
d984e4
  (https://github.com/containers/buildah/commit/3ed5d8e)
d984e4
- Related: #1934415
d984e4
d984e4
* Mon Jun 28 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.15
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/main
d984e4
  (https://github.com/containers/buildah/commit/c7d828f)
d984e4
- Related: #1934415
d984e4
d984e4
* Fri Jun 25 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.14
d984e4
- "buildah version" produces correct output
d984e4
- Related: #1934415
d984e4
d984e4
* Fri Jun 25 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.13
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/main
d984e4
  (https://github.com/containers/buildah/commit/6bc611d)
d984e4
- Related: #1934415
d984e4
d984e4
* Thu Jun 24 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.12
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/main
d984e4
  (https://github.com/containers/buildah/commit/3a0b52f)
d984e4
- Related: #1934415
d984e4
d984e4
* Wed Jun 23 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.11
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/master
d984e4
  (https://github.com/containers/buildah/commit/6d5d1ae)
d984e4
- Related: #1934415
d984e4
d984e4
* Tue Jun 22 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.10
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/master
d984e4
  (https://github.com/containers/buildah/commit/802a904)
d984e4
- Related: #1934415
d984e4
d984e4
* Mon Jun 21 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.9
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/master
d984e4
  (https://github.com/containers/buildah/commit/5181b9c)
d984e4
- Related: #1934415
d984e4
d984e4
* Fri Jun 18 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.8
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/master
d984e4
  (https://github.com/containers/buildah/commit/db16262)
d984e4
- Related: #1934415
d984e4
d984e4
* Thu Jun 17 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.7
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/master
d984e4
  (https://github.com/containers/buildah/commit/30c07b7)
d984e4
- Related: #1934415
d984e4
d984e4
* Wed Jun 16 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.6
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/master
d984e4
  (https://github.com/containers/buildah/commit/d99221f)
d984e4
- Related: #1934415
d984e4
d984e4
* Mon Jun 14 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.5
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/master
d984e4
  (https://github.com/containers/buildah/commit/8d08247)
d984e4
- Related: #1934415
d984e4
d984e4
* Thu Jun 10 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.4
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/master
d984e4
  (https://github.com/containers/buildah/commit/9c7f50b)
d984e4
- Related: #1934415
d984e4
d984e4
* Mon Jun 07 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.3
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/master
d984e4
  (https://github.com/containers/buildah/commit/d08dbe7)
d984e4
- Related: #1934415
d984e4
d984e4
* Thu Jun 03 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.2
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/master
d984e4
  (https://github.com/containers/buildah/commit/bbbe10a)
d984e4
- Related: #1934415
d984e4
d984e4
* Wed Jun 02 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.1-0.8
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/master
d984e4
  (https://github.com/containers/buildah/commit/4fa566e)
d984e4
- Related: #1934415
d984e4
d984e4
* Mon May 31 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.1-0.7
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/master
d984e4
  (https://github.com/containers/buildah/commit/8a6d840)
d984e4
- Related: #1934415
d984e4
d984e4
* Wed May 26 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.1-0.6
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/master
d984e4
  (https://github.com/containers/buildah/commit/d677bf0)
d984e4
- Related: #1934415
d984e4
d984e4
* Tue May 25 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.1-0.5
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/master
d984e4
  (https://github.com/containers/buildah/commit/df14b1c)
d984e4
- Related: #1934415
d984e4
d984e4
* Fri May 21 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.1-0.4
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/master
d984e4
  (https://github.com/containers/buildah/commit/19d3065)
d984e4
- Related: #1934415
d984e4
d984e4
* Fri May 21 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.1-0.3
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/master
d984e4
  (https://github.com/containers/buildah/commit/2a83637)
d984e4
- Related: #1934415
d984e4
d984e4
* Thu May 20 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.1-0.2
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/master
d984e4
  (https://github.com/containers/buildah/commit/f629ded)
d984e4
- Related: #1934415
d984e4
d984e4
* Wed May 19 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.2-0.8
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/master
d984e4
  (https://github.com/containers/buildah/commit/c3a3fe8)
d984e4
- Related: #1934415
d984e4
d984e4
* Wed May 19 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.2-0.7
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/master
d984e4
  (https://github.com/containers/buildah/commit/f30b420)
d984e4
- Related: #1934415
d984e4
d984e4
* Mon May 17 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.2-0.6
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/master
d984e4
  (https://github.com/containers/buildah/commit/162fbaf)
d984e4
- Related: #1934415
d984e4
d984e4
* Thu May 13 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.2-0.5
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/master
d984e4
  (https://github.com/containers/buildah/commit/5119393)
d984e4
- Related: #1934415
d984e4
d984e4
* Wed May 12 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.2-0.4
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/master
d984e4
  (https://github.com/containers/buildah/commit/a0853c3)
d984e4
- Related: #1934415
d984e4
d984e4
* Tue May 11 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.2-0.3
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/master
d984e4
  (https://github.com/containers/buildah/commit/135d63d)
d984e4
- Related: #1934415
d984e4
d984e4
* Tue May 11 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.2-2
d984e4
- fix release to reflect a development version
d984e4
- Related: #1934415
d984e4
d984e4
* Fri May 07 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.2-1
d984e4
- update to the latest content of https://github.com/containers/buildah/tree/master
d984e4
  (https://github.com/containers/buildah/commit/22fc573)
d984e4
- Related: #1934415
d984e4
d984e4
* Mon Apr 26 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.1-1
d984e4
- update to https://github.com/containers/buildah/releases/tag/v1.20.1
d984e4
- sync tests with Fedora
d984e4
- Related: #1934415
d984e4
d984e4
* Fri Mar 26 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.0-1
d984e4
- update to https://github.com/containers/buildah/releases/tag/v1.20.0
d984e4
- Related: #1934415
d984e4
d984e4
* Tue Mar 09 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.8-1
d984e4
- update to https://github.com/containers/buildah/releases/tag/v1.19.8
d984e4
- Related: #1934415
d984e4
d984e4
* Fri Mar 05 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.7-1
d984e4
- update to https://github.com/containers/buildah/releases/tag/v1.19.7
d984e4
- Related: #1934415
d984e4
722518
* Fri Feb 19 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.6-1
722518
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
722518
  (https://github.com/containers/buildah/commit/7aedb16)
722518
- Related: #1883490
722518
722518
* Thu Feb 18 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.5-6
722518
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
722518
  (https://github.com/containers/buildah/commit/dcd385e)
722518
- Related: #1883490
722518
722518
* Thu Feb 18 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.5-5
722518
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
722518
  (https://github.com/containers/buildah/commit/016b90d)
722518
- Related: #1883490
722518
722518
* Tue Feb 16 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.5-4
722518
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
722518
  (https://github.com/containers/buildah/commit/e5384ed)
722518
- Related: #1883490
722518
722518
* Mon Feb 15 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.5-3
722518
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
722518
  (https://github.com/containers/buildah/commit/9dd415b)
722518
- Related: #1883490
722518
722518
* Fri Feb 12 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.5-2
722518
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
722518
  (https://github.com/containers/buildah/commit/db783f4)
722518
- Related: #1883490
722518
722518
* Wed Feb 10 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.5-1
722518
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
722518
  (https://github.com/containers/buildah/commit/1fb260f)
722518
- Related: #1883490
722518
722518
* Tue Feb 09 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.4-1
722518
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
722518
  (https://github.com/containers/buildah/commit/76beccc)
722518
- Related: #1883490
722518
722518
* Sun Feb 07 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.3-3
722518
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
722518
  (https://github.com/containers/buildah/commit/a96b716)
722518
- Related: #1883490
722518
722518
* Sat Feb 06 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.3-2
722518
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
722518
  (https://github.com/containers/buildah/commit/17521db)
722518
- Related: #1883490
722518
722518
* Sun Jan 31 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.3-1
722518
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
722518
  (https://github.com/containers/buildah/commit/af31e45)
722518
- Related: #1883490
722518
722518
* Fri Jan 29 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.2-2
722518
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
722518
  (https://github.com/containers/buildah/commit/06e091b)
722518
- Related: #1883490
722518
722518
* Fri Jan 15 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.2-1
722518
- update to https://github.com/containers/buildah/releases/tag/v1.19.2
722518
- Related: #1883490
722518
722518
* Fri Jan 15 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.1-1
722518
- update to https://github.com/containers/buildah/releases/tag/v1.19.1
722518
- Related: #1883490
722518
722518
* Wed Jan 13 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.0-2
722518
- fix gating test issue with openssl cert
722518
- Related: #1914884
722518
722518
* Sat Jan 09 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.0-1
722518
- update to https://github.com/containers/buildah/releases/tag/v1.19.0
722518
- Related: #1883490
722518
722518
* Tue Dec 08 2020 Jindrich Novy <jnovy@redhat.com> - 1.18.0-1
722518
- make build log more readable
722518
- always build with debuginfo enabled
722518
- Related: #1883490
722518
722518
* Thu Nov 05 2020 Jindrich Novy <jnovy@redhat.com> - 1.17.0-2
722518
- simplify spec file
722518
- use short commit ID in tarball name
722518
- Related: #1883490
722518
722518
* Fri Oct 30 2020 Jindrich Novy <jnovy@redhat.com> - 1.17.0-1
722518
- update to https://github.com/containers/buildah/releases/tag/v1.17.0
722518
- Related: #1883490
722518
722518
* Fri Oct 23 2020 Jindrich Novy <jnovy@redhat.com> - 1.16.5-2
722518
- use shortcommit ID in branch tarball name
722518
- Related: #1883490
722518
722518
* Thu Oct 22 2020 Jindrich Novy <jnovy@redhat.com> - 1.16.5-1
722518
- synchronize with stream-container-tools-rhel8
722518
- Related: #1883490
722518
722518
* Thu Oct 22 2020 Jindrich Novy <jnovy@redhat.com> - 1.16.4-3
722518
- update source tarball
722518
- Related: #1883490
722518
722518
* Thu Oct 22 2020 Jindrich Novy <jnovy@redhat.com> - 1.16.4-2
722518
- use the mainline 1.16.4 buildah release as starting point for 8.4.0
722518
  not the content from upstream branch yet
722518
- Related: #1883490
722518
722518
* Wed Oct 21 2020 Jindrich Novy <jnovy@redhat.com> - 1.16.4-1
722518
- synchronize with stream-container-tools-rhel8
722518
- Related: #1883490
722518
722518
* Tue Aug 11 2020 Jindrich Novy <jnovy@redhat.com> - 1.15.1-2
722518
- propagate proper CFLAGS to CGO_CFLAGS to assure code hardening and optimization
722518
- Related: #1821193
722518
722518
* Mon Aug 10 2020 Jindrich Novy <jnovy@redhat.com> - 1.15.1-1
722518
- update to https://github.com/containers/buildah/releases/tag/v1.15.1
722518
- Related: #1821193
722518
722518
* Fri Jul 17 2020 Jindrich Novy <jnovy@redhat.com> - 1.15.0-2
722518
- fix "CVE-2020-14040 buildah: golang.org/x/text: possibility to trigger an infinite loop in encoding/unicode could lead to crash [rhel-8]"
722518
- Resolves: #1854717
722518
37261b
* Thu Jun 18 2020 Jindrich Novy <jnovy@redhat.com> - 1.15.0-1
37261b
- update to https://github.com/containers/buildah/releases/tag/v1.15.0
37261b
- Related: #1821193
37261b
37261b
* Wed Jun 10 2020 Jindrich Novy <jnovy@redhat.com> - 1.14.9-2
37261b
- exclude i686 arch
37261b
- Related: #1821193
37261b
37261b
* Tue May 19 2020 Jindrich Novy <jnovy@redhat.com> - 1.14.9-1
37261b
- update to https://github.com/containers/buildah/releases/tag/v1.14.9
37261b
- Related: #1821193
37261b
37261b
* Tue May 12 2020 Jindrich Novy <jnovy@redhat.com> - 1.14.8-1
37261b
- synchronize containter-tools 8.3.0 with 8.2.1
37261b
- Related: #1821193
37261b
37261b
* Wed Apr 01 2020 Jindrich Novy <jnovy@redhat.com> - 1.11.6-8
37261b
- fix "CVE-2020-10696 buildah: crafted input tar file may lead to local file overwriting during image build process"
37261b
- Resolves: #1819810
37261b
37261b
* Mon Feb 24 2020 Jindrich Novy <jnovy@redhat.com> - 1.11.6-7
37261b
- fix "COPY command takes long time with buildah"
37261b
- Resolves: #1806120
37261b
37261b
* Mon Feb 17 2020 Jindrich Novy <jnovy@redhat.com> - 1.11.6-6
37261b
- fix CVE-2020-1702
37261b
- Resolves: #1801926
37261b
37261b
* Thu Feb 13 2020 Jindrich Novy <jnovy@redhat.com> - 1.11.6-5
37261b
- adding the first phase of FIPS fix
37261b
- Related: #1784952
37261b
c44ea6
* Wed Dec 11 2019 Jindrich Novy <jnovy@redhat.com> - 1.11.6-4
c44ea6
- compile in FIPS mode
c44ea6
- Related: RHELPLAN-25139
c44ea6
c44ea6
* Mon Dec 09 2019 Jindrich Novy <jnovy@redhat.com> - 1.11.6-3
c44ea6
- be sure to use golang >= 1.12.12-4
c44ea6
- Related: RHELPLAN-25139
c44ea6
c44ea6
* Fri Dec 06 2019 Jindrich Novy <jnovy@redhat.com> - 1.11.6-2
c44ea6
- fix chroot: unmount with MNT_DETACH instead of UnmountMountpoints()
c44ea6
- bug reference 1772179
c44ea6
- Related: RHELPLAN-25139
c44ea6
c44ea6
* Thu Dec 05 2019 Jindrich Novy <jnovy@redhat.com> - 1.11.6-1
c44ea6
- update to buildah 1.11.6
c44ea6
- Related: RHELPLAN-25139
c44ea6
c44ea6
* Thu Nov 21 2019 Jindrich Novy <jnovy@redhat.com> - 1.11.5-1
c44ea6
- update to buildah 1.11.5
c44ea6
- Related: RHELPLAN-25139
c44ea6
c44ea6
* Thu Nov 07 2019 Jindrich Novy <jnovy@redhat.com> - 1.11.4-2
c44ea6
- fix %%gobuild macro to not to ignore BUILDTAGS
c44ea6
- Related: RHELPLAN-25139
c44ea6
c44ea6
* Thu Nov 07 2019 Jindrich Novy <jnovy@redhat.com> - 1.11.4-1
c44ea6
- update to 1.11.4
c44ea6
- Related: RHELPLAN-25139
c44ea6
c44ea6
* Tue Sep 17 2019 Jindrich Novy <jnovy@redhat.com> - 1.9.0-5
c44ea6
- Use autosetup macro again.
c44ea6
c44ea6
* Thu Sep 12 2019 Jindrich Novy <jnovy@redhat.com> - 1.9.0-4
c44ea6
- Fix CVE-2019-10214 (#1734653).
c44ea6
45041a
* Sat Jun 15 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.0-3
45041a
- Resolves: #1721247 - enable fips mode
45041a
45041a
* Sat Jun 15 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.0-2
45041a
- Resolves: #1720654 - tests subpackage depends on golang explicitly
45041a
45041a
* Sat Jun 15 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.0-1
45041a
- Resolves: #1720654 - rebase to v1.9.0
45041a
45041a
* Fri Jun 14 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1.8.3-1
45041a
- Resolves: #1720654 - rebase to v1.8.3
45041a
45041a
* Tue Apr  9 2019 Eduardo Santiago <santiago@redhat.com> - 1.8-0.git021d607
45041a
- package system tests
45041a
45041a
* Tue Dec 18 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 1.5-3.gite94b4f9
45041a
- re-enable debuginfo
45041a
45041a
* Mon Dec 17 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 1.5-2.gite94b4f9
45041a
- go toolset not in scl anymore
45041a
45041a
* Fri Nov 23 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 1.5-1.gite94b4f9
45041a
- rebase
45041a
45041a
* Mon Nov 19 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 1.4-3.git608fa84
45041a
- fedora-like go compiler macro in buildrequires is enough
45041a
45041a
* Wed Oct 10 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 1.4-2.git608fa84
45041a
- rebase
45041a
45041a
* Mon Aug 13 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1.3-3.git4888163
45041a
- Resolves: #1615611 - rebuild with gobuild tag 'no_openssl'
45041a
45041a
* Wed Aug 08 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1.3-2.git4888163
45041a
- Resolves: #1614009 - built with updated scl-ized go-toolset dep
45041a
- build with %%gobuild
45041a
45041a
* Sun Aug 5 2018 Dan Walsh <dwalsh@redhat.com> - 1.3-1
45041a
- Bump to v1.3
45041a
- Vendor in lates containers/image
45041a
- build-using-dockerfile: let -t include transports again
45041a
- Block use of /proc/acpi and /proc/keys from inside containers
45041a
- Fix handling of --registries-conf
45041a
- Fix becoming a maintainer link
45041a
- add optional CI test fo darwin
45041a
- Don't pass a nil error to errors.Wrapf()
45041a
- image filter test: use kubernetes/pause as a "since"
45041a
- Add --cidfile option to from
45041a
- vendor: update containers/storage
45041a
- Contributors need to find the CONTRIBUTOR.md file easier
45041a
- Add a --loglevel option to build-with-dockerfile
45041a
- Create Development plan
45041a
- cmd: Code improvement
45041a
- allow buildah cross compile for a darwin target
45041a
- Add unused function param lint check
45041a
- docs: Follow man-pages(7) suggestions for SYNOPSIS
45041a
- Start using github.com/seccomp/containers-golang
45041a
- umount: add all option to umount all mounted containers
45041a
- runConfigureNetwork(): remove an unused parameter
45041a
- Update github.com/opencontainers/selinux
45041a
- Fix buildah bud --layers
45041a
- Force ownership of /etc/hosts and /etc/resolv.conf to 0:0
45041a
- main: if unprivileged, reexec in a user namespace
45041a
- Vendor in latest imagebuilder
45041a
- Reduce the complexity of the buildah.Run function
45041a
- mount: output it before replacing lastError
45041a
- Vendor in latest selinux-go code
45041a
- Implement basic recognition of the "--isolation" option
45041a
- Run(): try to resolve non-absolute paths using $PATH
45041a
- Run(): don't include any default environment variables
45041a
- build without seccomp
45041a
- vendor in latest runtime-tools
45041a
- bind/mount_unsupported.go: remove import errors
45041a
- Update github.com/opencontainers/runc
45041a
- Add Capabilities lists to BuilderInfo
45041a
- Tweaks for commit tests
45041a
- commit: recognize committing to second storage locations
45041a
- Fix ARGS parsing for run commands
45041a
- Add info on registries.conf to from manpage
45041a
- Switch from using docker to podman for testing in .papr
45041a
- buildah: set the HTTP User-Agent
45041a
- ONBUILD tutorial
45041a
- Add information about the configuration files to the install docs
45041a
- Makefile: add uninstall
45041a
- Add tilde info for push to troubleshooting
45041a
- mount: support multiple inputs
45041a
- Use the right formatting when adding entries to /etc/hosts
45041a
- Vendor in latest go-selinux bindings
45041a
- Allow --userns-uid-map/--userns-gid-map to be global options
45041a
- bind: factor out UnmountMountpoints
45041a
- Run(): simplify runCopyStdio()
45041a
- Run(): handle POLLNVAL results
45041a
- Run(): tweak terminal mode handling
45041a
- Run(): rename 'copyStdio' to 'copyPipes'
45041a
- Run(): don't set a Pdeathsig for the runtime
45041a
- Run(): add options for adding and removing capabilities
45041a
- Run(): don't use a callback when a slice will do
45041a
- setupSeccomp(): refactor
45041a
- Change RunOptions.Stdin/Stdout/Stderr to just be Reader/Writers
45041a
- Escape use of '_' in .md docs
45041a
- Break out getProcIDMappings()
45041a
- Break out SetupIntermediateMountNamespace()
45041a
- Add Multi From Demo
45041a
- Use the c/image conversion code instead of converting configs manually
45041a
- Don't throw away the manifest MIME type and guess again
45041a
- Consolidate loading manifest and config in initConfig
45041a
- Pass a types.Image to Builder.initConfig
45041a
- Require an image ID in importBuilderDataFromImage
45041a
- Use c/image/manifest.GuessMIMEType instead of a custom heuristic
45041a
- Do not ignore any parsing errors in initConfig
45041a
- Explicitly handle "from scratch" images in Builder.initConfig
45041a
- Fix parsing of OCI images
45041a
- Simplify dead but dangerous-looking error handling
45041a
- Don't ignore v2s1 history if docker_version is not set
45041a
- Add --rm and --force-rm to buildah bud
45041a
- Add --all,-a flag to buildah images
45041a
- Separate stdio buffering from writing
45041a
- Remove tty check from images --format
45041a
- Add environment variable BUILDAH_RUNTIME
45041a
- Add --layers and --no-cache to buildah bud
45041a
- Touch up images man
45041a
- version.md: fix DESCRIPTION
45041a
- tests: add containers test
45041a
- tests: add images test
45041a
- images: fix usage
45041a
- fix make clean error
45041a
- Change 'registries' to 'container registries' in man
45041a
- add commit test
45041a
- Add(): learn to record hashes of what we add
45041a
- Minor update to buildah config documentation for entrypoint
45041a
- Bump to v1.2-dev
45041a
- Add registries.conf link to a few man pages
45041a
45041a
* Tue Jul 24 2018 Lokesh Mandvekar <lsm5@redhat.com> - 1.2-3
45041a
- do not depend on btrfs-progs for rhel8
45041a
45041a
* Thu Jul 19 2018 Dan Walsh <dwalsh@redhat.com> - 1.2-2
45041a
- buildah does not require ostree
45041a
45041a
* Sun Jul 15 2018 Dan Walsh <dwalsh@redhat.com> 1.2-1
45041a
- Vendor in latest containers/image
45041a
- build-using-dockerfile: let -t include transports again
45041a
- Block use of /proc/acpi and /proc/keys from inside containers
45041a
- Fix handling of --registries-conf
45041a
- Fix becoming a maintainer link
45041a
- add optional CI test fo darwin
45041a
- Don't pass a nil error to errors.Wrapf()
45041a
- image filter test: use kubernetes/pause as a "since"
45041a
- Add --cidfile option to from
45041a
- vendor: update containers/storage
45041a
- Contributors need to find the CONTRIBUTOR.md file easier
45041a
- Add a --loglevel option to build-with-dockerfile
45041a
- Create Development plan
45041a
- cmd: Code improvement
45041a
- allow buildah cross compile for a darwin target
45041a
- Add unused function param lint check
45041a
- docs: Follow man-pages(7) suggestions for SYNOPSIS
45041a
- Start using github.com/seccomp/containers-golang
45041a
- umount: add all option to umount all mounted containers
45041a
- runConfigureNetwork(): remove an unused parameter
45041a
- Update github.com/opencontainers/selinux
45041a
- Fix buildah bud --layers
45041a
- Force ownership of /etc/hosts and /etc/resolv.conf to 0:0
45041a
- main: if unprivileged, reexec in a user namespace
45041a
- Vendor in latest imagebuilder
45041a
- Reduce the complexity of the buildah.Run function
45041a
- mount: output it before replacing lastError
45041a
- Vendor in latest selinux-go code
45041a
- Implement basic recognition of the "--isolation" option
45041a
- Run(): try to resolve non-absolute paths using $PATH
45041a
- Run(): don't include any default environment variables
45041a
- build without seccomp
45041a
- vendor in latest runtime-tools
45041a
- bind/mount_unsupported.go: remove import errors
45041a
- Update github.com/opencontainers/runc
45041a
- Add Capabilities lists to BuilderInfo
45041a
- Tweaks for commit tests
45041a
- commit: recognize committing to second storage locations
45041a
- Fix ARGS parsing for run commands
45041a
- Add info on registries.conf to from manpage
45041a
- Switch from using docker to podman for testing in .papr
45041a
- buildah: set the HTTP User-Agent
45041a
- ONBUILD tutorial
45041a
- Add information about the configuration files to the install docs
45041a
- Makefile: add uninstall
45041a
- Add tilde info for push to troubleshooting
45041a
- mount: support multiple inputs
45041a
- Use the right formatting when adding entries to /etc/hosts
45041a
- Vendor in latest go-selinux bindings
45041a
- Allow --userns-uid-map/--userns-gid-map to be global options
45041a
- bind: factor out UnmountMountpoints
45041a
- Run(): simplify runCopyStdio()
45041a
- Run(): handle POLLNVAL results
45041a
- Run(): tweak terminal mode handling
45041a
- Run(): rename 'copyStdio' to 'copyPipes'
45041a
- Run(): don't set a Pdeathsig for the runtime
45041a
- Run(): add options for adding and removing capabilities
45041a
- Run(): don't use a callback when a slice will do
45041a
- setupSeccomp(): refactor
45041a
- Change RunOptions.Stdin/Stdout/Stderr to just be Reader/Writers
45041a
- Escape use of '_' in .md docs
45041a
- Break out getProcIDMappings()
45041a
- Break out SetupIntermediateMountNamespace()
45041a
- Add Multi From Demo
45041a
- Use the c/image conversion code instead of converting configs manually
45041a
- Don't throw away the manifest MIME type and guess again
45041a
- Consolidate loading manifest and config in initConfig
45041a
- Pass a types.Image to Builder.initConfig
45041a
- Require an image ID in importBuilderDataFromImage
45041a
- Use c/image/manifest.GuessMIMEType instead of a custom heuristic
45041a
- Do not ignore any parsing errors in initConfig
45041a
- Explicitly handle "from scratch" images in Builder.initConfig
45041a
- Fix parsing of OCI images
45041a
- Simplify dead but dangerous-looking error handling
45041a
- Don't ignore v2s1 history if docker_version is not set
45041a
- Add --rm and --force-rm to buildah bud
45041a
- Add --all,-a flag to buildah images
45041a
- Separate stdio buffering from writing
45041a
- Remove tty check from images --format
45041a
- Add environment variable BUILDAH_RUNTIME
45041a
- Add --layers and --no-cache to buildah bud
45041a
- Touch up images man
45041a
- version.md: fix DESCRIPTION
45041a
- tests: add containers test
45041a
- tests: add images test
45041a
- images: fix usage
45041a
- fix make clean error
45041a
- Change 'registries' to 'container registries' in man
45041a
- add commit test
45041a
- Add(): learn to record hashes of what we add
45041a
- Minor update to buildah config documentation for entrypoint
45041a
- Add registries.conf link to a few man pages
45041a
45041a
* Sun Jun 10 2018 Dan Walsh <dwalsh@redhat.com> 1.1-1
45041a
- Drop capabilities if running container processes as non root
45041a
- Print Warning message if cmd will not be used based on entrypoint
45041a
- Update 01-intro.md
45041a
- Shouldn't add insecure registries to list of search registries
45041a
- Report errors on bad transports specification when pushing images
45041a
- Move parsing code out of common for namespaces and into pkg/parse.go
45041a
- Add disable-content-trust noop flag to bud
45041a
- Change freenode chan to buildah
45041a
- runCopyStdio(): don't close stdin unless we saw POLLHUP
45041a
- Add registry errors for pull
45041a
- runCollectOutput(): just read until the pipes are closed on us
45041a
- Run(): provide redirection for stdio
45041a
- rmi, rm: add test
45041a
- add mount test
45041a
- Add parameter judgment for commands that do not require parameters
45041a
- Add context dir to bud command in baseline test
45041a
- run.bats: check that we can run with symlinks in the bundle path
45041a
- Give better messages to users when image can not be found
45041a
- use absolute path for bundlePath
45041a
- Add environment variable to buildah --format
45041a
- rm: add validation to args and all option
45041a
- Accept json array input for config entrypoint
45041a
- Run(): process RunOptions.Mounts, and its flags
45041a
- Run(): only collect error output from stdio pipes if we created some
45041a
- Add OnBuild support for Dockerfiles
45041a
- Quick fix on demo readme
45041a
- run: fix validate flags
45041a
- buildah bud should require a context directory or URL
45041a
- Touchup tutorial for run changes
45041a
- Validate common bud and from flags
45041a
- images: Error if the specified imagename does not exist
45041a
- inspect: Increase err judgments to avoid panic
45041a
- add test to inspect
45041a
- buildah bud picks up ENV from base image
45041a
- Extend the amount of time travis_wait should wait
45041a
- Add a make target for Installing CNI plugins
45041a
- Add tests for namespace control flags
45041a
- copy.bats: check ownerships in the container
45041a
- Fix SELinux test errors when SELinux is enabled
45041a
- Add example CNI configurations
45041a
- Run: set supplemental group IDs
45041a
- Run: use a temporary mount namespace
45041a
- Use CNI to configure container networks
45041a
- add/secrets/commit: Use mappings when setting permissions on added content
45041a
- Add CLI options for specifying namespace and cgroup setup
45041a
- Always set mappings when using user namespaces
45041a
- Run(): break out creation of stdio pipe descriptors
45041a
- Read UID/GID mapping information from containers and images
45041a
- Additional bud CI tests
45041a
- Run integration tests under travis_wait in Travis
45041a
- build-using-dockerfile: add --annotation
45041a
- Implement --squash for build-using-dockerfile and commit
45041a
- Vendor in latest container/storage for devicemapper support
45041a
- add test to inspect
45041a
- Vendor github.com/onsi/ginkgo and github.com/onsi/gomega
45041a
- Test with Go 1.10, too
45041a
- Add console syntax highlighting to troubleshooting page
45041a
- bud.bats: print "$output" before checking its contents
45041a
- Manage "Run" containers more closely
45041a
- Break Builder.Run()'s "run runc" bits out
45041a
- util.ResolveName(): handle completion for tagged/digested image names
45041a
- Handle /etc/hosts and /etc/resolv.conf properly in container
45041a
- Documentation fixes
45041a
- Make it easier to parse our temporary directory as an image name
45041a
- Makefile: list new pkg/ subdirectoris as dependencies for buildah
45041a
- containerImageSource: return more-correct errors
45041a
- API cleanup: PullPolicy and TerminalPolicy should be types
45041a
- Make "run --terminal" and "run -t" aliases for "run --tty"
45041a
- Vendor github.com/containernetworking/cni v0.6.0
45041a
- Update github.com/containers/storage
45041a
- Update github.com/projectatomic/libpod
45041a
- Add support for buildah bud --label
45041a
- buildah push/from can push and pull images with no reference
45041a
- Vendor in latest containers/image
45041a
- Update gometalinter to fix install.tools error
45041a
- Update troubleshooting with new run workaround
45041a
- Added a bud demo and tidied up
45041a
- Attempt to download file from url, if fails assume Dockerfile
45041a
- Add buildah bud CI tests for ENV variables
45041a
- Re-enable rpm .spec version check and new commit test
45041a
- Update buildah scratch demo to support el7
45041a
- Added Docker compatibility demo
45041a
- Update to F28 and new run format in baseline test
45041a
- Touchup man page short options across man pages
45041a
- Added demo dir and a demo. chged distrorlease
45041a
- builder-inspect: fix format option
45041a
- Add cpu-shares short flag (-c) and cpu-shares CI tests
45041a
- Minor fixes to formatting in rpm spec changelog
45041a
- Fix rpm .spec changelog formatting
45041a
- CI tests and minor fix for cache related noop flags
45041a
- buildah-from: add effective value to mount propagation
45041a
45041a
* Mon May 7 2018 Dan Walsh <dwalsh@redhat.com> 1.0-1
45041a
- Remove buildah run cmd and entrypoint execution
45041a
- Add Files section with registries.conf to pertinent man pages
45041a
- Force "localhost" as a default registry
45041a
- Add --compress, --rm, --squash flags as a noop for bud
45041a
- Add FIPS mode secret to buildah run and bud
45041a
- Add config --comment/--domainname/--history-comment/--hostname
45041a
- Add support for --iidfile to bud and commit
45041a
- Add /bin/sh -c to entrypoint in config
45041a
- buildah images and podman images are listing different sizes
45041a
- Remove tarball as an option from buildah push --help
45041a
- Update entrypoint behaviour to match docker
45041a
- Display imageId after commit
45041a
- config: add support for StopSignal
45041a
- Allow referencing stages as index and names
45041a
- Add multi-stage builds support
45041a
- Vendor in latest imagebuilder, to get mixed case AS support
45041a
- Allow umount to have multi-containers
45041a
- Update buildah push doc
45041a
- buildah bud walks symlinks
45041a
- Imagename is required for commit atm, update manpage
45041a
45041a
* Thu May 03 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.16-3.git532e267
45041a
- Resolves: #1573681
45041a
- built commit 532e267
45041a
45041a
* Tue Apr 10 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.16.0-2.git6f7d05b
45041a
- built commit 6f7d05b
45041a
45041a
* Wed Apr 4 2018 Dan Walsh <dwalsh@redhat.com> 0.16-1
45041a
-   Add support for shell
45041a
-   Vendor in latest containers/image
45041a
-    	 docker-archive generates docker legacy compatible images
45041a
-	 Do not create $DiffID subdirectories for layers with no configs
45041a
- 	 Ensure the layer IDs in legacy docker/tarfile metadata are unique
45041a
-	 docker-archive: repeated layers are symlinked in the tar file
45041a
-	 sysregistries: remove all trailing slashes
45041a
-	 Improve docker/* error messages
45041a
-	 Fix failure to make auth directory
45041a
-	 Create a new slice in Schema1.UpdateLayerInfos
45041a
-	 Drop unused storageImageDestination.{image,systemContext}
45041a
-	 Load a *storage.Image only once in storageImageSource
45041a
-	 Support gzip for docker-archive files
45041a
-	 Remove .tar extension from blob and config file names
45041a
-	 ostree, src: support copy of compressed layers
45041a
-	 ostree: re-pull layer if it misses uncompressed_digest|uncompressed_size
45041a
-	 image: fix docker schema v1 -> OCI conversion
45041a
-	 Add /etc/containers/certs.d as default certs directory
45041a
-  Change image time to locale, add troubleshooting.md, add logo to other mds
45041a
-   Allow --cmd parameter to have commands as values
45041a
-   Document the mounts.conf file
45041a
-   Fix man pages to format correctly
45041a
-   buildah from now supports pulling images using the following transports:
45041a
-   docker-archive, oci-archive, and dir.
45041a
-   If the user overrides the storage driver, the options should be dropped
45041a
-   Show Config/Manifest as JSON string in inspect when format is not set
45041a
-   Adds feature to pull compressed docker-archive files
45041a
45041a
* Tue Feb 27 2018 Dan Walsh <dwalsh@redhat.com> 0.15-1
45041a
- Fix handling of buildah run command options
45041a
45041a
* Mon Feb 26 2018 Dan Walsh <dwalsh@redhat.com> 0.14-1
45041a
- If commonOpts do not exist, we should return rather then segfault
45041a
- Display full error string instead of just status
45041a
- Implement --volume and --shm-size for bud and from
45041a
- Fix secrets patch for buildah bud
45041a
- Fixes the naming issue of blobs and config for the dir transport by removing the .tar extension
45041a
45041a
* Mon Feb 26 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.13-1.git99066e0
45041a
- use correct version
45041a
45041a
* Mon Feb 26 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.12-4.git99066e0
45041a
- enable debuginfo
45041a
45041a
* Mon Feb 26 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.12-3.git99066e0
45041a
- BR: libseccomp-devel
45041a
45041a
* Mon Feb 26 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.12-2.git99066e0
45041a
- Resolves: #1548535
45041a
- built commit 99066e0
45041a
45041a
* Mon Feb 12 2018 Dan Walsh <dwalsh@redhat.com> 0.12-1
45041a
- Added handing for simpler error message for Unknown Dockerfile instructions.
45041a
- Change default certs directory to /etc/containers/certs.dir
45041a
- Vendor in latest containers/image
45041a
- Vendor in latest containers/storage
45041a
- build-using-dockerfile: set the 'author' field for MAINTAINER
45041a
- Return exit code 1 when buildah-rmi fails
45041a
- Trim the image reference to just its name before calling getImageName
45041a
- Touch up rmi -f usage statement
45041a
- Add --format and --filter to buildah containers
45041a
- Add --prune,-p option to rmi command
45041a
- Add authfile param to commit
45041a
- Fix --runtime-flag for buildah run and bud
45041a
- format should override quiet for images
45041a
- Allow all auth params to work with bud
45041a
- Do not overwrite directory permissions on --chown
45041a
- Unescape HTML characters output into the terminal
45041a
- Fix: setting the container name to the image
45041a
- Prompt for un/pwd if not supplied with --creds
45041a
- Make bud be really quiet
45041a
- Return a better error message when failed to resolve an image
45041a
- Update auth tests and fix bud man page
45041a
45041a
* Mon Feb 05 2018 Lokesh Mandvekar <lsm5@redhat.com> - 0.11-3.git49095a8
45041a
- Resolves: #1542236 - add ostree and bump runc dep
45041a
45041a
* Thu Feb 01 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.11-2.git49095a8
45041a
- rebased to 49095a83f8622cf69532352d183337635562e261
45041a
45041a
* Tue Jan 16 2018 Dan Walsh <dwalsh@redhat.com> 0.11-1
45041a
- Add --all to remove containers
45041a
- Add --all functionality to rmi
45041a
- Show ctrid when doing rm -all
45041a
- Ignore sequential duplicate layers when reading v2s1
45041a
- Lots of minor bug fixes
45041a
- Vendor in latest containers/image and containers/storage
45041a
45041a
* Sat Dec 23 2017 Dan Walsh <dwalsh@redhat.com> 0.10-2
45041a
- Fix checkin
45041a
45041a
* Sat Dec 23 2017 Dan Walsh <dwalsh@redhat.com> 0.10-1
45041a
- Display Config and Manifest as strings
45041a
- Bump containers/image
45041a
- Use configured registries to resolve image names
45041a
- Update to work with newer image library
45041a
- Add --chown option to add/copy commands
45041a
45041a
* Tue Dec 12 2017 Lokesh Mandvekar <lsm5@redhat.com> - 0.9-2.git04ea079
45041a
- build for all arches
45041a
45041a
* Sat Dec 2 2017 Dan Walsh <dwalsh@redhat.com> 0.9-1
45041a
- Allow push to use the image id
45041a
- Make sure builtin volumes have the correct label
45041a
45041a
* Wed Nov 22 2017 Dan Walsh <dwalsh@redhat.com> 0.8-1
45041a
- Buildah bud was failing on SELinux machines, this fixes this
45041a
- Block access to certain kernel file systems inside of the container
45041a
45041a
* Thu Nov 16 2017 Dan Walsh <dwalsh@redhat.com> 0.7-1
45041a
- Ignore errors when trying to read containers buildah.json for loading SELinux reservations
45041a
-     Use credentials from kpod login for buildah
45041a
- Adds support for converting manifest types when using the dir transport
45041a
- Rework how we do UID resolution in images
45041a
- Bump github.com/vbatts/tar-split
45041a
- Set option.terminal appropriately in run
45041a
45041a
* Thu Nov 16 2017 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.5-5.gitf7dc659
45041a
- revert building for s390x, it is intended for rhel 7.5
45041a
45041a
* Wed Nov 15 2017 Dan Walsh <dwalsh@redhat.com> 0.5-4
45041a
- Add requires for container-selinux
45041a
45041a
* Mon Nov 13 2017 Frantisek Kluknavsky <fkluknav@redhat.com> - 0.5-3.gitf7dc659
45041a
- build for s390x, https://bugzilla.redhat.com/show_bug.cgi?id=1482234
45041a
45041a
* Wed Nov 08 2017 Dan Walsh <dwalsh@redhat.com> 0.5-2
45041a
-  Bump github.com/vbatts/tar-split
45041a
-  Fixes CVE That could allow a container image to cause a DOS
45041a
45041a
* Tue Nov 07 2017 Dan Walsh <dwalsh@redhat.com> 0.5-1
45041a
-  Add secrets patch to buildah
45041a
-  Add proper SELinux labeling to buildah run
45041a
-  Add tls-verify to bud command
45041a
-  Make filtering by date use the image's date
45041a
-  images: don't list unnamed images twice
45041a
-  Fix timeout issue
45041a
-  Add further tty verbiage to buildah run
45041a
-  Make inspect try an image on failure if type not specified
45041a
-  Add support for `buildah run --hostname`
45041a
-  Tons of bug fixes and code cleanup
45041a
45041a
* Tue Nov  7 2017 Nalin Dahyabhai <nalin@redhat.com> - 0.4-2.git01db066
45041a
- bump to latest version
45041a
- set GIT_COMMIT at build-time
45041a
45041a
* Fri Sep 22 2017 Dan Walsh <dwalsh@redhat.com> 0.4-1.git9cbccf88c
45041a
-   Add default transport to push if not provided
45041a
-   Avoid trying to print a nil ImageReference
45041a
-   Add authentication to commit and push
45041a
-   Add information on buildah from man page on transports
45041a
-   Remove --transport flag
45041a
-   Run: do not complain about missing volume locations
45041a
-   Add credentials to buildah from
45041a
-   Remove export command
45041a
-   Run(): create the right working directory
45041a
-   Improve "from" behavior with unnamed references
45041a
-   Avoid parsing image metadata for dates and layers
45041a
-   Read the image's creation date from public API
45041a
-   Bump containers/storage and containers/image
45041a
-   Don't panic if an image's ID can't be parsed
45041a
-   Turn on --enable-gc when running gometalinter
45041a
-   rmi: handle truncated image IDs
45041a
45041a
* Fri Sep 22 2017 Lokesh Mandvekar <lsm5@redhat.com> - 0.4-1.git9cbccf8
45041a
- bump to v0.4
45041a
45041a
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.3-4.gitb9b2a8a
45041a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
45041a
45041a
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.3-3.gitb9b2a8a
45041a
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
45041a
45041a
* Thu Jul 20 2017 Dan Walsh <dwalsh@redhat.com> 0.3-2.gitb9b2a8a7e
45041a
- Bump for inclusion of OCI 1.0 Runtime and Image Spec
45041a
45041a
* Tue Jul 18 2017 Dan Walsh <dwalsh@redhat.com> 0.2.0-1.gitac2aad6
45041a
-   buildah run: Add support for -- ending options parsing
45041a
-   buildah Add/Copy support for glob syntax
45041a
-   buildah commit: Add flag to remove containers on commit
45041a
-   buildah push: Improve man page and help information
45041a
-   buildah run: add a way to disable PTY allocation
45041a
-   Buildah docs: clarify --runtime-flag of run command
45041a
-   Update to match newer storage and image-spec APIs
45041a
-   Update containers/storage and containers/image versions
45041a
-   buildah export: add support
45041a
-   buildah images: update commands
45041a
-   buildah images: Add JSON output option
45041a
-   buildah rmi: update commands
45041a
-   buildah containers: Add JSON output option
45041a
-   buildah version: add command
45041a
-   buildah run: Handle run without an explicit command correctly
45041a
-   Ensure volume points get created, and with perms
45041a
-   buildah containers: Add a -a/--all option
45041a
45041a
* Wed Jun 14 2017 Dan Walsh <dwalsh@redhat.com> 0.1.0-2.git597d2ab9
45041a
- Release Candidate 1
45041a
- All features have now been implemented.
45041a
45041a
* Fri Apr 14 2017 Dan Walsh <dwalsh@redhat.com> 0.0.1-1.git7a0a5333
45041a
- First package for Fedora