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