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