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