157e09
# https://bugzilla.redhat.com/show_bug.cgi?id=1904567
157e09
%global _lto_cflags %%{nil}
157e09
157e09
%global _find_debuginfo_dwz_opts %{nil}
157e09
%global _dwz_low_mem_die_limit 0
157e09
157e09
%if 0%{?rhel} > 7 && ! 0%{?fedora}
157e09
%define gobuild(o:) \
157e09
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 %{?**};
157e09
%else
157e09
%if ! 0%{?gobuild:1}
157e09
%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 %{?**};
157e09
%endif
157e09
%endif
157e09
157e09
%global import_path github.com/containers/buildah
157e09
%global branch release-1.22
157e09
%global commit0 4d2022278696ad2f39b5c95029d8c699db404f37
157e09
%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
157e09
157e09
Name: buildah
157e09
Version: 1.22.3
157e09
Release: 2%{?dist}
157e09
Summary: A command line tool used for creating OCI Images
157e09
License: ASL 2.0
157e09
URL: https://%{name}.io
157e09
# https://fedoraproject.org/wiki/PackagingDrafts/Go#Go_Language_Architectures
157e09
ExclusiveArch: %{go_arches}
157e09
%if 0%{?branch:1}
157e09
Source0: https://%{import_path}/tarball/%{commit0}/%{branch}-%{shortcommit0}.tar.gz
157e09
%else
157e09
Source0: https://%{import_path}/archive/%{commit0}/%{name}-%{version}-%%{shortcommit0}.tar.gz
157e09
%endif
157e09
BuildRequires: golang >= 1.16.6
157e09
BuildRequires: git
157e09
BuildRequires: glib2-devel
157e09
BuildRequires: libseccomp-devel
157e09
BuildRequires: ostree-devel
157e09
BuildRequires: glibc-static
157e09
BuildRequires: go-md2man
157e09
BuildRequires: gpgme-devel
157e09
BuildRequires: device-mapper-devel
157e09
BuildRequires: libassuan-devel
157e09
BuildRequires: make
157e09
Requires: runc >= 1.0.0-26
157e09
Requires: containers-common >= 2:1-2
157e09
Recommends: container-selinux
157e09
Requires: slirp4netns >= 0.3-0
157e09
157e09
%description
157e09
The %{name} package provides a command line tool which can be used to
157e09
* create a working container from scratch
157e09
or
157e09
* create a working container from an image as a starting point
157e09
* mount/umount a working container's root file system for manipulation
157e09
* save container's root file system layer to create a new image
157e09
* delete a working container or an image
157e09
157e09
%package tests
157e09
Summary: Tests for %{name}
157e09
Requires: %{name} = %{version}-%{release}
157e09
Requires: bzip2
157e09
Requires: podman
157e09
Requires: golang
157e09
Requires: jq
157e09
Requires: httpd-tools
157e09
Requires: openssl
157e09
Requires: nmap-ncat
157e09
157e09
%description tests
157e09
%{summary}
157e09
157e09
This package contains system tests for %{name}
157e09
157e09
%prep
157e09
%if 0%{?branch:1}
157e09
%autosetup -Sgit -n containers-%{name}-%{shortcommit0}
157e09
%else
157e09
%autosetup -Sgit -n %%{name}-%{commit0}
157e09
%endif
157e09
sed -i 's/GOMD2MAN =/GOMD2MAN ?=/' docs/Makefile
157e09
sed -i '/docs install/d' Makefile
157e09
157e09
%build
157e09
mkdir _build
157e09
pushd _build
157e09
mkdir -p src/github.com/containers
157e09
ln -s $(dirs +1 -l) src/%{import_path}
157e09
popd
157e09
157e09
mv vendor src
157e09
157e09
export GOPATH=$(pwd)/_build:$(pwd)
157e09
export BUILDTAGS='seccomp selinux btrfs_noversion exclude_graphdriver_btrfs'
157e09
export GO111MODULE=off
157e09
export CGO_CFLAGS="%{optflags} -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64"
157e09
export CNI_VERSION=`grep '^# github.com/containernetworking/cni ' src/modules.txt | sed 's,.* ,,'`
157e09
export LDFLAGS="$LDFLAGS -X main.buildInfo=`date +%s` -X main.cniVersion=${CNI_VERSION}"
157e09
rm -f src/github.com/containers/storage/drivers/register/register_btrfs.go
157e09
%gobuild -o bin/%{name} %{import_path}/cmd/%{name}
157e09
%gobuild -o imgtype %{import_path}/tests/imgtype
157e09
%gobuild -o bin/copy %{import_path}/tests/copy
157e09
GOMD2MAN=go-md2man %{__make} -C docs
157e09
157e09
%install
157e09
export GOPATH=$(pwd)/_build:$(pwd):%{gopath}
157e09
make DESTDIR=%{buildroot} PREFIX=%{_prefix} install install.completions
157e09
install -d -p %{buildroot}/%{_datadir}/%{name}/test/system
157e09
cp -pav tests/. %{buildroot}/%{_datadir}/%{name}/test/system
157e09
cp imgtype %{buildroot}/%{_bindir}/%{name}-imgtype
157e09
cp bin/copy %{buildroot}/%{_bindir}/%{name}-copy
157e09
make DESTDIR=%{buildroot} PREFIX=%{_prefix} -C docs install
157e09
157e09
#define license tag if not already defined
157e09
%{!?_licensedir:%global license %doc}
157e09
157e09
%files
157e09
%license LICENSE
157e09
%doc README.md
157e09
%{_bindir}/%{name}
157e09
%{_mandir}/man1/%{name}*
157e09
%dir %{_datadir}/bash-completion
157e09
%dir %{_datadir}/bash-completion/completions
157e09
%{_datadir}/bash-completion/completions/%{name}
157e09
157e09
%files tests
157e09
%license LICENSE
157e09
%{_bindir}/%{name}-imgtype
157e09
%{_bindir}/%{name}-copy
157e09
%{_datadir}/%{name}/test
157e09
157e09
%changelog
157e09
* Wed Aug 25 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.3-2
157e09
- update to the latest content of https://github.com/containers/buildah/tree/release-1.22
157e09
  (https://github.com/containers/buildah/commit/4d20222)
157e09
- Related: #1970747
157e09
157e09
* Fri Aug 20 2021 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.22.3-1
157e09
- Bump to v1.22.3
157e09
- Related: #1970747
157e09
157e09
* Fri Aug 20 2021 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.22.2-2
157e09
- Bump containers-common >= 2:1-2
157e09
- Related: #1970747
157e09
157e09
* Fri Aug 20 2021 Lokesh Mandvekar <lsm5@redhat.com> - 1.22.2-1
157e09
- bump to v1.22.2
157e09
- Related: #1970747
157e09
157e09
* Mon Aug 16 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.4
157e09
- update to the latest content of https://github.com/containers/buildah/tree/release-1.22
157e09
  (https://github.com/containers/buildah/commit/98960f2)
157e09
- Related: #1970747
157e09
157e09
* Wed Aug 04 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.3
157e09
- update to the latest content of https://github.com/containers/buildah/tree/release-1.22
157e09
  (https://github.com/containers/buildah/commit/71b8003)
157e09
- Related: #1970747
157e09
157e09
* Mon Aug 02 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.2
157e09
- update to the latest content of https://github.com/containers/buildah/tree/main
157e09
  (https://github.com/containers/buildah/commit/56ff12f)
157e09
- Related: #1970747
157e09
157e09
* Thu Jul 29 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.1
157e09
- update to the latest content of https://github.com/containers/buildah/tree/main
157e09
  (https://github.com/containers/buildah/commit/f517d85)
157e09
- Related: #1970747
157e09
157e09
* Wed Jul 28 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.0-1
157e09
- update to the latest content of https://github.com/containers/buildah/tree/main
157e09
  (https://github.com/containers/buildah/commit/42dbc97)
157e09
- Related: #1970747
157e09
157e09
* Tue Jul 27 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.1
157e09
- switch to main branch
157e09
- Related: #1970747
157e09
157e09
* Mon Jul 26 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.4-2
157e09
- add buildah-copy helper
157e09
- Related: #1970747
157e09
157e09
* Mon Jul 26 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.4-1
157e09
- update to the latest content of https://github.com/containers/buildah/tree/release-1.21
157e09
  (https://github.com/containers/buildah/commit/9c83683)
157e09
- Related: #1970747
157e09
157e09
* Tue Jul 20 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.3-2
157e09
- update to the latest content of https://github.com/containers/buildah/tree/release-1.21
157e09
  (https://github.com/containers/buildah/commit/30a10f3)
157e09
- Related: #1970747
157e09
157e09
* Thu Jul 15 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.3-1
157e09
- update to the latest content of https://github.com/containers/buildah/tree/release-1.21
157e09
  (https://github.com/containers/buildah/commit/7f9540d)
157e09
- Related: #1970747
157e09
157e09
* Thu Jul 01 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.1-0.17
157e09
- update to buildah 1.21.1 from the release-1.21 upstream branch
157e09
- Related: #1970747
157e09
157e09
* Tue Jun 29 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.16
157e09
- update to the latest content of https://github.com/containers/buildah/tree/main
157e09
  (https://github.com/containers/buildah/commit/3ed5d8e)
157e09
- Related: #1970747
157e09
157e09
* Mon Jun 28 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.15
157e09
- update to the latest content of https://github.com/containers/buildah/tree/main
157e09
  (https://github.com/containers/buildah/commit/c7d828f)
157e09
- Related: #1970747
157e09
157e09
* Fri Jun 25 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.14
157e09
- "buildah version" produces correct output
157e09
- Resolves: #1976099
157e09
157e09
* Fri Jun 25 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.13
157e09
- update to the latest content of https://github.com/containers/buildah/tree/main
157e09
  (https://github.com/containers/buildah/commit/6bc611d)
157e09
- Related: #1970747
157e09
157e09
* Thu Jun 24 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.12
157e09
- update to the latest content of https://github.com/containers/buildah/tree/main
157e09
  (https://github.com/containers/buildah/commit/3a0b52f)
157e09
- Related: #1970747
157e09
157e09
* Wed Jun 23 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.11
157e09
- update to the latest content of https://github.com/containers/buildah/tree/master
157e09
  (https://github.com/containers/buildah/commit/6d5d1ae)
157e09
- Related: #1970747
157e09
157e09
* Tue Jun 22 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.10
157e09
- update to the latest content of https://github.com/containers/buildah/tree/master
157e09
  (https://github.com/containers/buildah/commit/802a904)
157e09
- Related: #1970747
157e09
157e09
* Mon Jun 21 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.9
157e09
- update to the latest content of https://github.com/containers/buildah/tree/master
157e09
  (https://github.com/containers/buildah/commit/5181b9c)
157e09
- Related: #1970747
157e09
157e09
* Fri Jun 18 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.8
157e09
- update to the latest content of https://github.com/containers/buildah/tree/master
157e09
  (https://github.com/containers/buildah/commit/db16262)
157e09
- Related: #1970747
157e09
157e09
* Thu Jun 17 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.7
157e09
- update to the latest content of https://github.com/containers/buildah/tree/master
157e09
  (https://github.com/containers/buildah/commit/30c07b7)
157e09
- Related: #1970747
157e09
157e09
* Wed Jun 16 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.6
157e09
- update to the latest content of https://github.com/containers/buildah/tree/master
157e09
  (https://github.com/containers/buildah/commit/d99221f)
157e09
- Related: #1970747
157e09
157e09
* Tue Jun 15 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.5
157e09
- update to the latest content of https://github.com/containers/buildah/tree/master
157e09
  (https://github.com/containers/buildah/commit/8d08247)
157e09
- Related: #1970747
157e09
157e09
* Thu Jun 10 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.4
157e09
- update to the latest content of https://github.com/containers/buildah/tree/master
157e09
  (https://github.com/containers/buildah/commit/9c7f50b)
157e09
157e09
* Mon Jun 07 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.3
157e09
- update to the latest content of https://github.com/containers/buildah/tree/master
157e09
  (https://github.com/containers/buildah/commit/d08dbe7)
157e09
157e09
* Thu Jun 03 2021 Jindrich Novy <jnovy@redhat.com> - 1.22.0-0.2
157e09
- update to the latest content of https://github.com/containers/buildah/tree/master
157e09
  (https://github.com/containers/buildah/commit/bbbe10a)
157e09
157e09
* Wed Jun 02 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.1-0.8
157e09
- update to the latest content of https://github.com/containers/buildah/tree/master
157e09
  (https://github.com/containers/buildah/commit/4fa566e)
157e09
157e09
* Mon May 31 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.1-0.7
157e09
- update to the latest content of https://github.com/containers/buildah/tree/master
157e09
  (https://github.com/containers/buildah/commit/8a6d840)
157e09
157e09
* Wed May 26 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.1-0.6
157e09
- update to the latest content of https://github.com/containers/buildah/tree/master
157e09
  (https://github.com/containers/buildah/commit/d677bf0)
157e09
157e09
* Tue May 25 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.1-0.5
157e09
- update to the latest content of https://github.com/containers/buildah/tree/master
157e09
  (https://github.com/containers/buildah/commit/df14b1c)
157e09
157e09
* Fri May 21 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.1-0.4
157e09
- update to the latest content of https://github.com/containers/buildah/tree/master
157e09
  (https://github.com/containers/buildah/commit/19d3065)
157e09
157e09
* Fri May 21 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.1-0.3
157e09
- update to the latest content of https://github.com/containers/buildah/tree/master
157e09
  (https://github.com/containers/buildah/commit/2a83637)
157e09
157e09
* Thu May 20 2021 Jindrich Novy <jnovy@redhat.com> - 1.21.1-0.2
157e09
- update to the latest content of https://github.com/containers/buildah/tree/master
157e09
  (https://github.com/containers/buildah/commit/f629ded)
157e09
157e09
* Wed May 19 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.2-0.7
157e09
- update to the latest content of https://github.com/containers/buildah/tree/master
157e09
  (https://github.com/containers/buildah/commit/c3a3fe8)
157e09
157e09
* Wed May 19 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.2-0.6
157e09
- update to the latest content of https://github.com/containers/buildah/tree/master
157e09
  (https://github.com/containers/buildah/commit/f30b420)
157e09
157e09
* Mon May 17 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.2-0.5
157e09
- update to the latest content of https://github.com/containers/buildah/tree/master
157e09
  (https://github.com/containers/buildah/commit/162fbaf)
157e09
157e09
* Thu May 13 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.2-0.4
157e09
- update to the latest content of https://github.com/containers/buildah/tree/master
157e09
  (https://github.com/containers/buildah/commit/5119393)
157e09
157e09
* Wed May 12 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.2-0.3
157e09
- update to the latest content of https://github.com/containers/buildah/tree/master
157e09
  (https://github.com/containers/buildah/commit/a0853c3)
157e09
157e09
* Tue May 11 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.2-0.2
157e09
- update to the latest content of https://github.com/containers/buildah/tree/master
157e09
  (https://github.com/containers/buildah/commit/135d63d)
157e09
157e09
* Tue May 11 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.2-0.1
157e09
- update to the latest content of https://github.com/containers/buildah/tree/master
157e09
  (https://github.com/containers/buildah/commit/22fc573)
157e09
157e09
* Fri May 07 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.1-2
157e09
- re-add setting LTO CFLAGS to empty
157e09
157e09
* Fri May 07 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.1-1
157e09
- still depend on runc explicitly
157e09
157e09
* Fri Mar 26 2021 Jindrich Novy <jnovy@redhat.com> - 1.20.0-1
157e09
- update to https://github.com/containers/buildah/releases/tag/v1.20.0
157e09
157e09
* Tue Mar 09 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.8-1
157e09
- update to https://github.com/containers/buildah/releases/tag/v1.19.8
157e09
157e09
* Fri Mar 05 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.7-1
157e09
- update to https://github.com/containers/buildah/releases/tag/v1.19.7
157e09
157e09
* Mon Feb 22 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.6-2
157e09
- disable LTO to allow the build to pass successfully
157e09
157e09
* Fri Feb 19 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.6-1
157e09
- update to https://github.com/containers/buildah/releases/tag/v1.19.6
157e09
157e09
* Tue Feb 09 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.4-1
157e09
- update to https://github.com/containers/buildah/releases/tag/v1.19.4
157e09
157e09
* Sun Jan 31 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.3-1
157e09
- update to https://github.com/containers/buildah/releases/tag/v1.19.3
157e09
157e09
* Wed Jan 20 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.2-1
157e09
- update to https://github.com/containers/buildah/releases/tag/v1.19.2
157e09
157e09
* Thu Jan 14 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.0-2
157e09
- fix gating test issue with openssl cert
157e09
- Related: #1914884
157e09
157e09
* Tue Jan 12 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.0-1
157e09
- update to https://github.com/containers/buildah/releases/tag/v1.19.0
157e09
157e09
* Sat Dec 05 2020 Jindrich Novy <jnovy@redhat.com> - 1.18.0-3
157e09
- remove any LTO CFLAGS to avoid build failure
157e09
- Related: #1904567
157e09
157e09
* Fri Dec 04 2020 Jindrich Novy <jnovy@redhat.com> - 1.18.0-2
157e09
- do not harden binaries for now given bug in golang, e.g.
157e09
  error: variable '_cgoexp_ebd00b0772db_StorageDevmapperLogCallback' redeclared as function
157e09
- make build log more readable
157e09
157e09
* Mon Nov 23 2020 Jindrich Novy <jnovy@redhat.com> - 1.18.0-1
157e09
- update to https://github.com/containers/buildah/releases/tag/v1.18.0
157e09
157e09
* Fri Sep 25 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.23.dev.gitb3f6ed8
157e09
- autobuilt b3f6ed8
157e09
157e09
* Mon Sep 21 23:12:37 UTC 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.22.dev.git0e06e45
157e09
- autobuilt 0e06e45
157e09
157e09
* Mon Sep 21 22:12:43 UTC 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.21.dev.gitf2f857a
157e09
- autobuilt f2f857a
157e09
157e09
* Mon Sep 21 21:12:08 UTC 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.20.dev.git0f4a259
157e09
- autobuilt 0f4a259
157e09
157e09
* Mon Sep 21 20:13:18 UTC 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.19.dev.gitd273b9e
157e09
- autobuilt d273b9e
157e09
157e09
* Mon Sep 21 18:12:11 UTC 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.18.dev.git411a885
157e09
- autobuilt 411a885
157e09
157e09
* Mon Sep 21 2020 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.17.0-0.17.dev.git678da1d
157e09
- adjust centos deps
157e09
157e09
* Thu Sep 17  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.16.dev.git678da1d
157e09
- autobuilt 678da1d
157e09
157e09
* Thu Sep 17  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.15.dev.git58541a3
157e09
- autobuilt 58541a3
157e09
157e09
* Thu Sep 17  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.14.dev.git17bb22f
157e09
- autobuilt 17bb22f
157e09
157e09
* Wed Sep 16  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.13.dev.git552cbd3
157e09
- autobuilt 552cbd3
157e09
157e09
* Tue Sep 15  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.12.dev.gitd0f43a0
157e09
- autobuilt d0f43a0
157e09
157e09
* Tue Sep 15  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.11.dev.gitb47ffb9
157e09
- autobuilt b47ffb9
157e09
157e09
* Fri Sep 11  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.10.dev.git1f8bf4d
157e09
- autobuilt 1f8bf4d
157e09
157e09
* Thu Sep 10  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.9.dev.git33768fc
157e09
- autobuilt 33768fc
157e09
157e09
* Wed Sep  9  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.8.dev.gitaa3128e
157e09
- autobuilt aa3128e
157e09
157e09
* Wed Sep  9  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.7.dev.gitefc5ec2
157e09
- autobuilt efc5ec2
157e09
157e09
* Tue Sep  8  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.6.dev.gitbfe6da5
157e09
- autobuilt bfe6da5
157e09
157e09
* Tue Sep  8  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.5.dev.git2928303
157e09
- autobuilt 2928303
157e09
157e09
* Tue Sep  8  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.4.dev.git555eb26
157e09
- autobuilt 555eb26
157e09
157e09
* Tue Sep  8  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.3.dev.git49a5768
157e09
- autobuilt 49a5768
157e09
157e09
* Mon Sep  7  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.2.dev.gitd83657c
157e09
- autobuilt d83657c
157e09
157e09
* Sat Sep  5  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.17.0-0.1.dev.git28d7d44
157e09
- bump to 1.17.0
157e09
- autobuilt 28d7d44
157e09
157e09
* Thu Sep  3  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.16.0-0.4.dev.git58e6b4f
157e09
- autobuilt 58e6b4f
157e09
157e09
* Thu Sep 03 2020 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.16.0-0.3.dev.gitfce9668
157e09
- tests package requires openssl
157e09
157e09
* Thu Sep  3  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.16.0-0.2.dev.gitfce9668
157e09
- autobuilt fce9668
157e09
157e09
* Thu Sep  3  2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.16.0-0.1.dev.gitac0182c
157e09
- bump to 1.16.0
157e09
- autobuilt ac0182c
157e09
157e09
* Mon Jul 27 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1.15.0-0.68.dev.git2c46b4b
157e09
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
157e09
157e09
* Tue May 26 2020 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.15.0-0.67.dev.git2c46b4b
157e09
- update deps for centos
157e09
157e09
* Tue May 26 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.66.dev.git2c46b4b
157e09
- autobuilt 2c46b4b
157e09
157e09
* Tue May 26 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.65.dev.gitf7a3515
157e09
- autobuilt f7a3515
157e09
157e09
* Mon May 25 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.64.dev.git0ac2a67
157e09
- autobuilt 0ac2a67
157e09
157e09
* Sun May 24 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.63.dev.gitdbf0777
157e09
- autobuilt dbf0777
157e09
157e09
* Sat May 23 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.62.dev.gitde0f541
157e09
- autobuilt de0f541
157e09
157e09
* Thu May 21 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.61.dev.git75e94a2
157e09
- autobuilt 75e94a2
157e09
157e09
* Thu May 21 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.60.dev.gitab1adf1
157e09
- autobuilt ab1adf1
157e09
157e09
* Wed May 20 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.59.dev.git4fc49ce
157e09
- autobuilt 4fc49ce
157e09
157e09
* Mon May 18 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.58.dev.git7957c13
157e09
- autobuilt 7957c13
157e09
157e09
* Wed May 13 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.57.dev.git9bd70ac
157e09
- autobuilt 9bd70ac
157e09
157e09
* Tue May 12 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.56.dev.git3184920
157e09
- autobuilt 3184920
157e09
157e09
* Mon May 11 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.55.dev.git0f6c2a9
157e09
- autobuilt 0f6c2a9
157e09
157e09
* Mon May 11 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.54.dev.gitf80da42
157e09
- autobuilt f80da42
157e09
157e09
* Fri May 08 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.53.dev.git6a7ace0
157e09
- autobuilt 6a7ace0
157e09
157e09
* Tue May 05 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.52.dev.gitb438050
157e09
- autobuilt b438050
157e09
157e09
* Mon May 04 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.51.dev.git828035f
157e09
- autobuilt 828035f
157e09
157e09
* Mon May 04 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.50.dev.git7610123
157e09
- autobuilt 7610123
157e09
157e09
* Mon May 04 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.49.dev.git7b0dfb8
157e09
- autobuilt 7b0dfb8
157e09
157e09
* Fri May 01 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.48.dev.gitf35e7d4
157e09
- autobuilt f35e7d4
157e09
157e09
* Fri May 01 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.47.dev.git42a48f9
157e09
- autobuilt 42a48f9
157e09
157e09
* Fri May 01 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.46.dev.git63567cb
157e09
- autobuilt 63567cb
157e09
157e09
* Fri May 01 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.45.dev.git3af27b4
157e09
- autobuilt 3af27b4
157e09
157e09
* Tue Apr 28 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.44.dev.git8169acd
157e09
- autobuilt 8169acd
157e09
157e09
* Tue Apr 28 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.43.dev.gitbea8692
157e09
- autobuilt bea8692
157e09
157e09
* Fri Apr 24 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.42.dev.git0b9a534
157e09
- autobuilt 0b9a534
157e09
157e09
* Fri Apr 24 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.41.dev.git0d5ab1d
157e09
- autobuilt 0d5ab1d
157e09
157e09
* Thu Apr 23 2020 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.15.0-0.40.dev.gitf4970e6
157e09
- use latest commit
157e09
157e09
* Thu Apr 23 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.39.dev.git843d15d
157e09
- autobuilt 843d15d
157e09
157e09
* Mon Apr 20 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.38.dev.gitf4970e6
157e09
- autobuilt f4970e6
157e09
157e09
* Thu Apr 16 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.37.dev.git81e2659
157e09
- autobuilt 81e2659
157e09
157e09
* Tue Apr 14 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.36.dev.gitdb3ced9
157e09
- autobuilt db3ced9
157e09
157e09
* Mon Apr 13 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.35.dev.gitc404c89
157e09
- autobuilt c404c89
157e09
157e09
* Mon Apr 13 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.34.dev.git7a88d7e
157e09
- autobuilt 7a88d7e
157e09
157e09
* Thu Apr 09 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.33.dev.gitf7ff4c1
157e09
- autobuilt f7ff4c1
157e09
157e09
* Thu Apr 09 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.32.dev.gite48fa75
157e09
- autobuilt e48fa75
157e09
157e09
* Tue Apr 07 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.31.dev.gitc554675
157e09
- autobuilt c554675
157e09
157e09
* Tue Apr 07 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.30.dev.gitf5dbfc1
157e09
- autobuilt f5dbfc1
157e09
157e09
* Tue Apr 07 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.29.dev.git310c02b
157e09
- autobuilt 310c02b
157e09
157e09
* Tue Apr 07 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.28.dev.gitc3070ba
157e09
- autobuilt c3070ba
157e09
157e09
* Mon Apr 06 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.27.dev.git20e41b7
157e09
- autobuilt 20e41b7
157e09
157e09
* Mon Apr 06 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.26.dev.git9c031e0
157e09
- autobuilt 9c031e0
157e09
157e09
* Sat Apr 04 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.25.dev.git31a01b4
157e09
- autobuilt 31a01b4
157e09
157e09
* Thu Apr 02 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.24.dev.gite9a6703
157e09
- autobuilt e9a6703
157e09
157e09
* Wed Apr 01 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.23.dev.git2fc064e
157e09
- autobuilt 2fc064e
157e09
157e09
* Tue Mar 31 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.22.dev.git912ca5a
157e09
- autobuilt 912ca5a
157e09
157e09
* Tue Mar 31 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.21.dev.git25c294c
157e09
- autobuilt 25c294c
157e09
157e09
* Mon Mar 30 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.20.dev.git1db2cde
157e09
- autobuilt 1db2cde
157e09
157e09
* Sat Mar 28 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.19.dev.git17ceb60
157e09
- autobuilt 17ceb60
157e09
157e09
* Fri Mar 27 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.18.dev.gitc18e043
157e09
- autobuilt c18e043
157e09
157e09
* Fri Mar 27 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.17.dev.gitd3804fa
157e09
- autobuilt d3804fa
157e09
157e09
* Thu Mar 26 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.16.dev.git11ad04e
157e09
- autobuilt 11ad04e
157e09
157e09
* Thu Mar 26 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.15.dev.gite48ff81
157e09
- autobuilt e48ff81
157e09
157e09
* Thu Mar 26 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.14.dev.gite54da62
157e09
- autobuilt e54da62
157e09
157e09
* Wed Mar 25 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.13.dev.gita5fabab
157e09
- autobuilt a5fabab
157e09
157e09
* Wed Mar 25 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.12.dev.gitc61925b
157e09
- autobuilt c61925b
157e09
157e09
* Mon Mar 23 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.11.dev.gitaba0d4d
157e09
- autobuilt aba0d4d
157e09
157e09
* Mon Mar 23 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.10.dev.git3b9c6a3
157e09
- autobuilt 3b9c6a3
157e09
157e09
* Mon Mar 23 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.9.dev.git10542ed
157e09
- autobuilt 10542ed
157e09
157e09
* Thu Mar 19 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.8.dev.git665dc2f
157e09
- autobuilt 665dc2f
157e09
157e09
* Thu Mar 19 2020 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.15.0-0.7.dev.git843d15d
157e09
- use correct commit
157e09
157e09
* Thu Mar 19 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.6.dev.gitf1cf92b
157e09
- autobuilt 843d15d
157e09
157e09
* Thu Mar 19 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.5.dev.gitf1cf92b
157e09
- autobuilt a2285ed
157e09
157e09
* Wed Mar 18 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.4.dev.gitf1cf92b
157e09
- autobuilt a2285ed
157e09
157e09
* Wed Mar 18 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.3.dev.gitf1cf92b
157e09
- autobuilt a2285ed
157e09
157e09
* Tue Mar 17 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.2.dev.gitf1cf92b
157e09
- autobuilt 040fb4b
157e09
157e09
* Mon Mar 16 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.15.0-0.1.dev.gitf1cf92b
157e09
- bump to 1.15.0
157e09
- autobuilt d26f437
157e09
157e09
* Wed Feb 05 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.35.dev.gitf1cf92b
157e09
- autobuilt f1cf92b
157e09
157e09
* Sat Feb 01 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.34.dev.gitf89b081
157e09
- autobuilt f89b081
157e09
157e09
* Fri Jan 31 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.33.dev.git3177db5
157e09
- autobuilt 3177db5
157e09
157e09
* Thu Jan 30 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.32.dev.git4131dfa
157e09
- autobuilt 4131dfa
157e09
157e09
* Wed Jan 29 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.31.dev.git82ff48a
157e09
- autobuilt 82ff48a
157e09
157e09
* Tue Jan 28 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.30.dev.git0a063c4
157e09
- autobuilt 0a063c4
157e09
157e09
* Mon Jan 27 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.29.dev.gitec4bbe6
157e09
- autobuilt ec4bbe6
157e09
157e09
* Tue Jan 21 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.28.dev.git6e277a2
157e09
- autobuilt 6e277a2
157e09
157e09
* Tue Jan 21 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.27.dev.git6417a9a
157e09
- autobuilt 6417a9a
157e09
157e09
* Tue Jan 21 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.26.dev.git0c3234f
157e09
- autobuilt 0c3234f
157e09
157e09
* Sun Jan 19 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.25.dev.git2055fe9
157e09
- autobuilt 2055fe9
157e09
157e09
* Fri Jan 17 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.24.dev.gita925f79
157e09
- autobuilt a925f79
157e09
157e09
* Fri Jan 17 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.23.dev.gitca0819f
157e09
- autobuilt ca0819f
157e09
157e09
* Thu Jan 16 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.22.dev.gitc46f6e0
157e09
- autobuilt c46f6e0
157e09
157e09
* Thu Jan 16 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.21.dev.gitb09fdc3
157e09
- autobuilt b09fdc3
157e09
157e09
* Wed Jan 15 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.20.dev.git09d1c24
157e09
- autobuilt 09d1c24
157e09
157e09
* Tue Jan 14 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.19.dev.gitbf14e6c
157e09
- autobuilt bf14e6c
157e09
157e09
* Mon Jan 13 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.18.dev.git720e5d6
157e09
- autobuilt 720e5d6
157e09
157e09
* Mon Jan 13 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.17.dev.gitb7e6731
157e09
- autobuilt b7e6731
157e09
157e09
* Mon Jan 13 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.16.dev.gitf7731c2
157e09
- autobuilt f7731c2
157e09
157e09
* Mon Jan 13 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.15.dev.git9def9c0
157e09
- autobuilt 9def9c0
157e09
157e09
* Mon Jan 13 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.14.dev.git3af1491
157e09
- autobuilt 3af1491
157e09
157e09
* Thu Jan 09 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.13.dev.git4e23b7a
157e09
- autobuilt 4e23b7a
157e09
157e09
* Thu Jan 09 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.12.dev.git55fa8f5
157e09
- autobuilt 55fa8f5
157e09
157e09
* Wed Jan 08 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.11.dev.git47ce18b
157e09
- autobuilt 47ce18b
157e09
157e09
* Wed Jan 08 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.10.dev.gita3dec02
157e09
- autobuilt a3dec02
157e09
157e09
* Wed Jan 08 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.9.dev.gitb555b7d
157e09
- autobuilt b555b7d
157e09
157e09
* Wed Jan 08 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.8.dev.gite7be041
157e09
- autobuilt e7be041
157e09
157e09
* Tue Jan 07 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.7.dev.gitdbec497
157e09
- autobuilt dbec497
157e09
157e09
* Tue Jan 07 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.6.dev.git45543bf
157e09
- autobuilt 45543bf
157e09
157e09
* Mon Jan 06 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.5.dev.gitd792c70
157e09
- autobuilt d792c70
157e09
157e09
* Mon Jan 06 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.4.dev.git20c2a54
157e09
- autobuilt 20c2a54
157e09
157e09
* Sat Jan 04 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.3.dev.gitc42f440
157e09
- autobuilt c42f440
157e09
157e09
* Fri Jan 03 2020 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.2.dev.git8d41b83
157e09
- autobuilt 8d41b83
157e09
157e09
* Tue Dec 31 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.14.0-0.1.dev.git726e24d
157e09
- bump to 1.14.0
157e09
- autobuilt 726e24d
157e09
157e09
* Sun Dec 22 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.13.0-0.10.dev.git6941254
157e09
- autobuilt 6941254
157e09
157e09
* Sun Dec 22 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.13.0-0.9.dev.git41b7852
157e09
- autobuilt 41b7852
157e09
157e09
* Fri Dec 20 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.13.0-0.8.dev.git9588a82
157e09
- autobuilt 9588a82
157e09
157e09
* Thu Dec 19 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.13.0-0.7.dev.gite6815a1
157e09
- autobuilt e6815a1
157e09
157e09
* Thu Dec 19 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.13.0-0.6.dev.git2959a6b
157e09
- autobuilt 2959a6b
157e09
157e09
* Wed Dec 18 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.13.0-0.5.dev.git188269a
157e09
- autobuilt 188269a
157e09
157e09
* Wed Dec 18 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.13.0-0.4.dev.git0662a4e
157e09
- autobuilt 0662a4e
157e09
157e09
* Tue Dec 17 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.13.0-0.3.dev.gitacc7c35
157e09
- autobuilt acc7c35
157e09
157e09
* Mon Dec 16 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.13.0-0.2.dev.git068b6f5
157e09
- autobuilt 068b6f5
157e09
157e09
* Fri Dec 13 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.13.0-0.1.dev.gite28c43d
157e09
- bump to 1.13.0
157e09
- autobuilt e28c43d
157e09
157e09
* Fri Dec 13 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.88.dev.gitdb59421
157e09
- autobuilt db59421
157e09
157e09
* Wed Dec 11 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.87.dev.git70b101f
157e09
- autobuilt 70b101f
157e09
157e09
* Wed Dec 11 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.86.dev.gitbc8feee
157e09
- autobuilt bc8feee
157e09
157e09
* Fri Dec 06 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.85.dev.git8d6869b
157e09
- autobuilt 8d6869b
157e09
157e09
* Fri Dec 06 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.84.dev.git8fc5b01
157e09
- autobuilt 8fc5b01
157e09
157e09
* Fri Dec 06 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.83.dev.gitc038827
157e09
- autobuilt c038827
157e09
157e09
* Fri Dec 06 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.82.dev.gite47145c
157e09
- autobuilt e47145c
157e09
157e09
* Thu Dec 05 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.81.dev.git2a82d07
157e09
- autobuilt 2a82d07
157e09
157e09
* Wed Dec 04 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.80.dev.git357d4ae
157e09
- autobuilt 357d4ae
157e09
157e09
* Wed Dec 04 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.79.dev.gitd55a9f8
157e09
- autobuilt d55a9f8
157e09
157e09
* Tue Dec 03 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.78.dev.gited0a329
157e09
- autobuilt ed0a329
157e09
157e09
* Mon Nov 25 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.77.dev.git4cf37c2
157e09
- autobuilt 4cf37c2
157e09
157e09
* Sat Nov 23 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.76.dev.git8fd3148
157e09
- autobuilt 8fd3148
157e09
157e09
* Thu Nov 21 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.75.dev.git92ff215
157e09
- autobuilt 92ff215
157e09
157e09
* Wed Nov 20 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.74.dev.gitcd88667
157e09
- autobuilt cd88667
157e09
157e09
* Wed Nov 20 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.73.dev.git1e6a70c
157e09
- autobuilt 1e6a70c
157e09
157e09
* Tue Nov 19 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.72.dev.git6a555a0
157e09
- autobuilt 6a555a0
157e09
157e09
* Sat Nov 16 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.71.dev.git9ff68b3
157e09
- autobuilt 9ff68b3
157e09
157e09
* Wed Nov 13 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.70.dev.gitc5244fe
157e09
- autobuilt c5244fe
157e09
157e09
* Tue Nov 12 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.69.dev.git985e8dc
157e09
- autobuilt 985e8dc
157e09
157e09
* Tue Nov 12 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.68.dev.git85ab067
157e09
- autobuilt 85ab067
157e09
157e09
* Tue Nov 12 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.67.dev.git7535655
157e09
- autobuilt 7535655
157e09
157e09
* Fri Nov 08 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.66.dev.gite3bb278
157e09
- autobuilt e3bb278
157e09
157e09
* Thu Nov 07 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.65.dev.gita880001
157e09
- autobuilt a880001
157e09
157e09
* Thu Nov 07 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.64.dev.gitf995696
157e09
- autobuilt f995696
157e09
157e09
* Thu Nov 07 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.63.dev.git147d106
157e09
- autobuilt 147d106
157e09
157e09
* Wed Nov 06 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.62.dev.git89bc2a6
157e09
- autobuilt 89bc2a6
157e09
157e09
* Wed Nov 06 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.61.dev.gitec970d5
157e09
- autobuilt ec970d5
157e09
157e09
* Tue Nov 05 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.60.dev.gitfba62fd
157e09
- autobuilt fba62fd
157e09
157e09
* Fri Nov 01 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.59.dev.git1967973
157e09
- autobuilt 1967973
157e09
157e09
* Thu Oct 31 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.58.dev.git20e92ff
157e09
- autobuilt 20e92ff
157e09
157e09
* Thu Oct 31 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.57.dev.git141b5a1
157e09
- autobuilt 141b5a1
157e09
157e09
* Thu Oct 31 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.56.dev.git332a889
157e09
- autobuilt 332a889
157e09
157e09
* Thu Oct 31 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.55.dev.git8e26456
157e09
- autobuilt 8e26456
157e09
157e09
* Wed Oct 30 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.54.dev.git1ff7043
157e09
- autobuilt 1ff7043
157e09
157e09
* Wed Oct 30 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.53.dev.giteaad6b4
157e09
- autobuilt eaad6b4
157e09
157e09
* Tue Oct 29 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.52.dev.git999fa43
157e09
- autobuilt 999fa43
157e09
157e09
* Tue Oct 29 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.51.dev.git751f92e
157e09
- autobuilt 751f92e
157e09
157e09
* Tue Oct 29 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.50.dev.gitb023cde
157e09
- autobuilt b023cde
157e09
157e09
* Tue Oct 29 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.49.dev.git66701d4
157e09
- autobuilt 66701d4
157e09
157e09
* Mon Oct 28 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.48.dev.gitc2dc46a
157e09
- autobuilt c2dc46a
157e09
157e09
* Mon Oct 28 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.47.dev.git691c394
157e09
- autobuilt 691c394
157e09
157e09
* Fri Oct 25 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.46.dev.gitcddb66e
157e09
- autobuilt cddb66e
157e09
157e09
* Wed Oct 23 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.45.dev.gitfa4eec7
157e09
- autobuilt fa4eec7
157e09
157e09
* Mon Oct 21 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.44.dev.git049fdf4
157e09
- autobuilt 049fdf4
157e09
157e09
* Mon Oct 21 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.43.dev.git1d3db17
157e09
- autobuilt 1d3db17
157e09
157e09
* Sun Oct 20 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.42.dev.git120c37f
157e09
- autobuilt 120c37f
157e09
157e09
* Wed Oct 16 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.41.dev.git0f7148b
157e09
- autobuilt 0f7148b
157e09
157e09
* Wed Oct 16 2019 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.12.0-0.40.dev.git389d49b
157e09
- install imgtype binary
157e09
157e09
* Tue Oct 15 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.39.dev.git389d49b
157e09
- autobuilt 389d49b
157e09
157e09
* Fri Oct 11 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.38.dev.gitd6f11ba
157e09
- autobuilt d6f11ba
157e09
157e09
* Fri Oct 11 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.37.dev.git68b2aa5
157e09
- autobuilt 68b2aa5
157e09
157e09
* Wed Oct 09 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.36.dev.git13330a4
157e09
- autobuilt 13330a4
157e09
157e09
* Fri Oct 04 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.35.dev.git7a7e1f0
157e09
- autobuilt 7a7e1f0
157e09
157e09
* Fri Oct 04 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.34.dev.git797e618
157e09
- autobuilt 797e618
157e09
157e09
* Thu Oct 03 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.33.dev.gitb298906
157e09
- autobuilt b298906
157e09
157e09
* Wed Oct 02 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.32.dev.gitf50b55d
157e09
- autobuilt f50b55d
157e09
157e09
* Wed Oct 02 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.31.dev.gite400691
157e09
- autobuilt e400691
157e09
157e09
* Wed Oct 02 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.30.dev.git96f9993
157e09
- autobuilt 96f9993
157e09
157e09
* Wed Oct 02 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.29.dev.gitc771c56
157e09
- autobuilt c771c56
157e09
157e09
* Tue Oct 01 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.28.dev.gite2c33f3
157e09
- autobuilt e2c33f3
157e09
157e09
* Tue Oct 01 2019 Debarshi Ray <rishi@fedoraproject.org> - 1.12.0-0.27.dev.gitcf933c8
157e09
- Require crun >= 0.10-1
157e09
157e09
* Tue Oct 01 2019 Debarshi Ray <rishi@fedoraproject.org> - 1.12.0-0.26.dev.gitcf933c8
157e09
- Switch to crun for Cgroups v2 support
157e09
157e09
* Tue Oct 01 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.25.dev.gitcf933c8
157e09
- autobuilt cf933c8
157e09
157e09
* Tue Oct 01 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.24.dev.gitbf04bf1
157e09
- autobuilt bf04bf1
157e09
157e09
* Tue Oct 01 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.23.dev.gitfc06a4d
157e09
- autobuilt fc06a4d
157e09
157e09
* Tue Oct 01 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.22.dev.gitd3d9cec
157e09
- autobuilt d3d9cec
157e09
157e09
* Mon Sep 30 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.21.dev.gita32fc96
157e09
- autobuilt a32fc96
157e09
157e09
* Sat Sep 28 2019 RH Container Bot <rhcontainerbot@fedoraproject.org> - 1.12.0-0.20.dev.git61e32a5
157e09
- autobuilt 61e32a5
157e09
157e09
* Sat Sep 21 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.19.dev.gitc3b1ec6
157e09
- autobuilt c3b1ec6
157e09
157e09
* Wed Sep 18 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.18.dev.git04150e0
157e09
- autobuilt 04150e0
157e09
157e09
* Tue Sep 17 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.17.dev.gitd2c1fd8
157e09
- autobuilt d2c1fd8
157e09
157e09
* Tue Sep 17 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.16.dev.git6abc01c
157e09
- autobuilt 6abc01c
157e09
157e09
* Mon Sep 16 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.15.dev.gite9969bc
157e09
- autobuilt e9969bc
157e09
157e09
* Fri Sep 13 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.14.dev.git10b0e7a
157e09
- autobuilt 10b0e7a
157e09
157e09
* Fri Sep 13 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.13.dev.git4ce6fba
157e09
- autobuilt 4ce6fba
157e09
157e09
* Thu Sep 12 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.12.dev.git9cac447
157e09
- autobuilt 9cac447
157e09
157e09
* Sat Sep 07 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.11.dev.git20a33e0
157e09
- autobuilt 20a33e0
157e09
157e09
* Sat Sep 07 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.10.dev.git9bf6b5e
157e09
- autobuilt 9bf6b5e
157e09
157e09
* Fri Sep 06 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.9.dev.gitf54c965
157e09
- autobuilt f54c965
157e09
157e09
* Thu Sep 05 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.8.dev.git3f6ad0f
157e09
- autobuilt 3f6ad0f
157e09
157e09
* Thu Sep 05 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.7.dev.git9f2a682
157e09
- autobuilt 9f2a682
157e09
157e09
* Thu Sep 05 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.6.dev.git4da1d5d
157e09
- autobuilt 4da1d5d
157e09
157e09
* Thu Sep 05 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.5.dev.git34f1ae6
157e09
- autobuilt 34f1ae6
157e09
157e09
* Wed Sep 04 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.4.dev.gitcc80ccc
157e09
- autobuilt cc80ccc
157e09
157e09
* Wed Sep 04 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.3.dev.gitb643073
157e09
- autobuilt b643073
157e09
157e09
* Wed Sep 04 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.2.dev.git15773bd
157e09
- autobuilt 15773bd
157e09
157e09
* Sat Aug 31 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.12.0-0.1.dev.git1a1a728
157e09
- bump to 1.12.0
157e09
- autobuilt 1a1a728
157e09
157e09
* Fri Aug 30 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.38.dev.git57db70c
157e09
- autobuilt 57db70c
157e09
157e09
* Fri Aug 30 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.37.dev.gite930951
157e09
- autobuilt e930951
157e09
157e09
* Thu Aug 29 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.36.dev.gitecf5b72
157e09
- autobuilt ecf5b72
157e09
157e09
* Thu Aug 29 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.35.dev.git5671417
157e09
- autobuilt 5671417
157e09
157e09
* Wed Aug 28 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.34.dev.git689f8ed
157e09
- autobuilt 689f8ed
157e09
157e09
* Thu Aug 22 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.33.dev.git6b5f8ba
157e09
- autobuilt 6b5f8ba
157e09
157e09
* Thu Aug 22 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.32.dev.gitff72568
157e09
- autobuilt ff72568
157e09
157e09
* Wed Aug 21 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.31.dev.git376e52e
157e09
- autobuilt 376e52e
157e09
157e09
* Wed Aug 21 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.30.dev.git5a1c733
157e09
- autobuilt 5a1c733
157e09
157e09
* Wed Aug 21 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.29.dev.git3ad937b
157e09
- autobuilt 3ad937b
157e09
157e09
* Tue Aug 20 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.28.dev.gitfa68ed6
157e09
- autobuilt fa68ed6
157e09
157e09
* Tue Aug 20 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.27.dev.gitb288b7a
157e09
- autobuilt b288b7a
157e09
157e09
* Mon Aug 19 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.26.dev.gitc1a2d4f
157e09
- autobuilt c1a2d4f
157e09
157e09
* Mon Aug 19 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.25.dev.git51415ec
157e09
- autobuilt 51415ec
157e09
157e09
* Mon Aug 19 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.24.dev.gitc2c52ba
157e09
- autobuilt c2c52ba
157e09
157e09
* Fri Aug 16 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.23.dev.gitebf6f51
157e09
- autobuilt ebf6f51
157e09
157e09
* Fri Aug 16 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.22.dev.git36dcedb
157e09
- autobuilt 36dcedb
157e09
157e09
* Fri Aug 16 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.21.dev.gitab0286f
157e09
- autobuilt ab0286f
157e09
157e09
* Thu Aug 15 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.20.dev.git1ce1130
157e09
- autobuilt 1ce1130
157e09
157e09
* Wed Aug 14 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.19.dev.gitd88c26b
157e09
- autobuilt d88c26b
157e09
157e09
* Wed Aug 14 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.18.dev.git5c98d3c
157e09
- autobuilt 5c98d3c
157e09
157e09
* Tue Aug 13 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.17.dev.git3f5436f
157e09
- autobuilt 3f5436f
157e09
157e09
* Mon Aug 12 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.16.dev.gita99139c
157e09
- autobuilt a99139c
157e09
157e09
* Mon Aug 12 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.15.dev.git2df08f0
157e09
- autobuilt 2df08f0
157e09
157e09
* Mon Aug 12 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.14.dev.git96a136e
157e09
- autobuilt 96a136e
157e09
157e09
* Sun Aug 11 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.13.dev.git7180312
157e09
- autobuilt 7180312
157e09
157e09
* Sat Aug 10 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.12.dev.git0dfb6f5
157e09
- autobuilt 0dfb6f5
157e09
157e09
* Fri Aug 09 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.11.dev.git60d5480
157e09
- autobuilt 60d5480
157e09
157e09
* Fri Aug 09 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.10.dev.git60c0088
157e09
- autobuilt 60c0088
157e09
157e09
* Fri Aug 09 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.9.dev.gitc953216
157e09
- autobuilt c953216
157e09
157e09
* Thu Aug 08 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.8.dev.gitf892eb6
157e09
- autobuilt f892eb6
157e09
157e09
* Thu Aug 08 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.7.dev.git95cb061
157e09
- autobuilt 95cb061
157e09
157e09
* Thu Aug 08 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.6.dev.gitf4cfe9c
157e09
- autobuilt f4cfe9c
157e09
157e09
* Wed Aug 07 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.5.dev.git03aa807
157e09
- autobuilt 03aa807
157e09
157e09
* Wed Aug 07 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.4.dev.gitbafcf88
157e09
- autobuilt bafcf88
157e09
157e09
* Tue Aug 06 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.3.dev.git232f7c6
157e09
- autobuilt 232f7c6
157e09
157e09
* Mon Aug 05 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.2.dev.git1de958d
157e09
- autobuilt 1de958d
157e09
157e09
* Fri Aug 02 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.11.0-0.1.dev.gitac5031d
157e09
- bump to 1.11.0
157e09
- autobuilt ac5031d
157e09
157e09
* Fri Aug 02 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.3-0.68.dev.git3117f5e
157e09
- autobuilt 3117f5e
157e09
157e09
* Thu Aug 01 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.3-0.67.dev.git4d017d6
157e09
- autobuilt 4d017d6
157e09
157e09
* Wed Jul 31 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.3-0.66.dev.gitc00f548
157e09
- autobuilt c00f548
157e09
157e09
* Wed Jul 31 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.3-0.65.dev.git677b771
157e09
- autobuilt 677b771
157e09
157e09
* Tue Jul 30 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.3-0.64.dev.gitb7a0ed0
157e09
- autobuilt b7a0ed0
157e09
157e09
* Tue Jul 30 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.3-0.63.dev.git5bab9b0
157e09
- autobuilt 5bab9b0
157e09
157e09
* Mon Jul 29 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.3-0.62.dev.git4ccb343
157e09
- autobuilt 4ccb343
157e09
157e09
* Mon Jul 29 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.3-0.61.dev.gita74bdd3
157e09
- autobuilt a74bdd3
157e09
157e09
* Sat Jul 27 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.3-0.60.dev.git6b214d2
157e09
- autobuilt 6b214d2
157e09
157e09
* Fri Jul 26 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.3-0.59.dev.git73401a4
157e09
- autobuilt 73401a4
157e09
157e09
* Wed Jul 24 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.9.3-0.58.dev.git6bd0551
157e09
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
157e09
157e09
* Tue Jul 23 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.3-0.57.dev.git6bd0551
157e09
- autobuilt 6bd0551
157e09
157e09
* Fri Jul 19 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.3-0.56.dev.git555b5a5
157e09
- autobuilt 555b5a5
157e09
157e09
* Fri Jul 19 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.3-0.55.dev.git2110f05
157e09
- bump to 1.9.3
157e09
- autobuilt 2110f05
157e09
157e09
* Fri Jul 19 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.2-0.54.dev.gitd7dec37
157e09
- autobuilt d7dec37
157e09
157e09
* Fri Jul 19 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.2-0.53.dev.git5da3c8c
157e09
- autobuilt 5da3c8c
157e09
157e09
* Thu Jul 18 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.2-0.52.dev.git4ae0e14
157e09
- autobuilt 4ae0e14
157e09
157e09
* Thu Jul 18 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.2-0.51.dev.git8da4cb4
157e09
- autobuilt 8da4cb4
157e09
157e09
* Wed Jul 17 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.2-0.50.dev.gitbe51b9b
157e09
- autobuilt be51b9b
157e09
157e09
* Wed Jul 17 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.2-0.49.dev.gitb33b87b
157e09
- autobuilt b33b87b
157e09
157e09
* Wed Jul 17 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.2-0.48.dev.git16e3010
157e09
- autobuilt 16e3010
157e09
157e09
* Tue Jul 16 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.2-0.47.dev.gitbb5cbf1
157e09
- autobuilt bb5cbf1
157e09
157e09
* Tue Jul 16 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.2-0.46.dev.git2249ba3
157e09
- autobuilt 2249ba3
157e09
157e09
* Sun Jul 14 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.2-0.45.dev.gitd419737
157e09
- bump to 1.9.2
157e09
- autobuilt d419737
157e09
157e09
* Wed Jul 10 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.1-0.44.dev.git5d723ff
157e09
- autobuilt 5d723ff
157e09
157e09
* Sun Jul 07 2019 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.1-0.43.dev.gite160a63
157e09
- built e160a63
157e09
- add centos conditionals
157e09
- use new name for go-md2man dep
157e09
157e09
* Sat Jun 22 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.1-0.42.dev.git1d11851
157e09
- autobuilt 1d11851
157e09
157e09
* Fri Jun 21 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.1-0.41.dev.git07aaf5e
157e09
- autobuilt 07aaf5e
157e09
157e09
* Thu Jun 20 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.1-0.40.dev.gitc22957b
157e09
- autobuilt c22957b
157e09
157e09
* Tue Jun 18 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.1-0.39.dev.git2c4f388
157e09
- autobuilt 2c4f388
157e09
157e09
* Sun Jun 16 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.1-0.38.dev.git0b84b23
157e09
- bump to 1.9.1
157e09
- autobuilt 0b84b23
157e09
157e09
* Sat Jun 15 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.37.dev.git77fa9dd
157e09
- autobuilt 77fa9dd
157e09
157e09
* Fri Jun 14 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.36.dev.gitdc7b50c
157e09
- autobuilt dc7b50c
157e09
157e09
* Thu Jun 13 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.35.dev.git2191ba6
157e09
- autobuilt 2191ba6
157e09
157e09
* Wed Jun 12 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.34.dev.gitdcbf193
157e09
- autobuilt dcbf193
157e09
157e09
* Tue Jun 11 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.33.dev.git78dcf2f
157e09
- autobuilt 78dcf2f
157e09
157e09
* Mon Jun 10 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.32.dev.git4ae0a69
157e09
- autobuilt 4ae0a69
157e09
157e09
* Sun Jun 09 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.31.dev.gitd172dd9
157e09
- autobuilt d172dd9
157e09
157e09
* Sat Jun 08 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.30.dev.git2da8755
157e09
- autobuilt 2da8755
157e09
157e09
* Fri Jun 07 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.29.dev.gitad4f235
157e09
- autobuilt ad4f235
157e09
157e09
* Thu Jun 06 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.28.dev.gite0306bb
157e09
- autobuilt e0306bb
157e09
157e09
* Wed Jun 05 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.27.dev.gitaa06a77
157e09
- autobuilt aa06a77
157e09
157e09
* Sun Jun 02 2019 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.0-0.26.dev.gita086ec8
157e09
- build for all arches
157e09
157e09
* Sun Jun 02 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.25.dev.git7016ce6
157e09
- autobuilt 7016ce6
157e09
157e09
* Sat Jun 01 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.24.dev.git3104ddf
157e09
- autobuilt 3104ddf
157e09
157e09
* Fri May 31 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.23.dev.git53be3d3
157e09
- autobuilt 53be3d3
157e09
157e09
* Thu May 30 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.22.dev.git2a962f1
157e09
- autobuilt 2a962f1
157e09
157e09
* Wed May 29 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.21.dev.gitfa7f030
157e09
- autobuilt fa7f030
157e09
157e09
* Tue May 28 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.20.dev.gited77a92
157e09
- autobuilt ed77a92
157e09
157e09
* Sat May 25 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.19.dev.git8e48a65
157e09
- autobuilt 8e48a65
157e09
157e09
* Fri May 24 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.18.dev.git4e1ca7c
157e09
- autobuilt 4e1ca7c
157e09
157e09
* Fri May 24 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.17.dev.git00f5164
157e09
- autobuilt 00f5164
157e09
157e09
* Thu May 23 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.16.dev.gitbc9c276
157e09
- autobuilt bc9c276
157e09
157e09
* Tue May 21 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.15.dev.gitbcc5e51
157e09
- autobuilt bcc5e51
157e09
157e09
* Sun May 19 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.14.dev.git7793c51
157e09
- autobuilt 7793c51
157e09
157e09
* Sat May 18 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.13.dev.git3bf8547
157e09
- autobuilt 3bf8547
157e09
157e09
* Fri May 17 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.12.dev.git63808f9
157e09
- autobuilt 63808f9
157e09
157e09
* Thu May 16 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.11.dev.gitc0633e3
157e09
- autobuilt c0633e3
157e09
157e09
* Wed May 15 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.10.dev.git4c6b09c
157e09
- autobuilt 4c6b09c
157e09
157e09
* Tue May 14 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.9.dev.git7ae362b
157e09
- autobuilt 7ae362b
157e09
157e09
* Mon May 13 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.8.dev.git74a3195
157e09
- autobuilt 74a3195
157e09
157e09
* Sun May 12 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.7.dev.gitab8678a
157e09
- autobuilt ab8678a
157e09
157e09
* Sat May 11 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.6.dev.gitc654b18
157e09
- autobuilt c654b18
157e09
157e09
* Sat May 04 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.5.dev.gite9184ea
157e09
- autobuilt e9184ea
157e09
157e09
* Fri May 03 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.4.dev.git59da11d
157e09
- autobuilt 59da11d
157e09
157e09
* Thu May 02 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.3.dev.git78fb869
157e09
- autobuilt 78fb869
157e09
157e09
* Tue Apr 30 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.9.0-0.2.dev.git0e30da6
157e09
- autobuilt 0e30da6
157e09
157e09
* Sun Apr 28 2019 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.9.0-0.1.dev.gitddbd805
157e09
- bump to v1.9.0-dev
157e09
- update release tag format for unreleased builds
157e09
157e09
* Wed Apr 24 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-41.dev.gitbdbedfd
157e09
- autobuilt bdbedfd
157e09
157e09
* Tue Apr 23 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-40.dev.gitb466cbd
157e09
- autobuilt b466cbd
157e09
157e09
* Sat Apr 20 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-39.dev.git2f0179f
157e09
- autobuilt 2f0179f
157e09
157e09
* Fri Apr 19 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-38.dev.git135542e
157e09
- autobuilt 135542e
157e09
157e09
* Thu Apr 18 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-37.dev.gite879079
157e09
- autobuilt e879079
157e09
157e09
* Wed Apr 17 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-36.dev.gitd8fe400
157e09
- autobuilt d8fe400
157e09
157e09
* Mon Apr 15 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-35.dev.gitfcc12bd
157e09
- autobuilt fcc12bd
157e09
157e09
* Sat Apr 13 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-34.dev.gitd43787b
157e09
- autobuilt d43787b
157e09
157e09
* Fri Apr 12 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-33.dev.git316bd0a
157e09
- autobuilt 316bd0a
157e09
157e09
* Wed Apr 10 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-32.dev.git021d607
157e09
- autobuilt 021d607
157e09
157e09
* Tue Apr 09 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-31.dev.git610eb7a
157e09
- autobuilt 610eb7a
157e09
157e09
* Sun Apr 07 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-30.dev.git25b7c11
157e09
- autobuilt 25b7c11
157e09
157e09
* Sat Apr 06 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-29.dev.git29a6c81
157e09
- autobuilt 29a6c81
157e09
157e09
* Fri Apr 05 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-28.dev.gitac66d78
157e09
- autobuilt ac66d78
157e09
157e09
* Mon Apr 01 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-27.dev.git9e1967a
157e09
- autobuilt 9e1967a
157e09
157e09
* Sat Mar 30 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-26.dev.git13d9142
157e09
- autobuilt 13d9142
157e09
157e09
* Fri Mar 29 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-25.dev.gita9bd025
157e09
- autobuilt a9bd025
157e09
157e09
* Thu Mar 28 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-24.dev.gitc933fe4
157e09
- autobuilt c933fe4
157e09
157e09
* Wed Mar 27 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-23.dev.git3d74031
157e09
- autobuilt 3d74031
157e09
157e09
* Mon Mar 25 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-22.dev.git03fae01
157e09
- autobuilt 03fae01
157e09
157e09
* Sat Mar 23 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-21.dev.gitd1c75ea
157e09
- autobuilt d1c75ea
157e09
157e09
* Fri Mar 22 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-20.dev.gitc6ae5c5
157e09
- autobuilt c6ae5c5
157e09
157e09
* Thu Mar 21 2019 Dan Walsh <dwalsh@redhat.com> - 1.8-19.dev.gitbe0c8d2
157e09
- Complile with SELinux enabled
157e09
157e09
* Thu Mar 21 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-18.dev.gitbe0c8d2
157e09
- autobuilt be0c8d2
157e09
157e09
* Wed Mar 20 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-17.dev.git9d6da3a
157e09
- autobuilt 9d6da3a
157e09
157e09
* Tue Mar 19 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-16.dev.git1ba9201
157e09
- autobuilt 1ba9201
157e09
157e09
* Sat Mar 16 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-15.dev.gita986f34
157e09
- autobuilt a986f34
157e09
157e09
* Fri Mar 15 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-14.dev.gitc691d09
157e09
- autobuilt c691d09
157e09
157e09
* Thu Mar 14 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-13.dev.git3b497ff
157e09
- autobuilt 3b497ff
157e09
157e09
* Wed Mar 13 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-12.dev.git3ba8822
157e09
- autobuilt 3ba8822
157e09
157e09
* Sun Mar 10 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-11.dev.git36605c2
157e09
- autobuilt 36605c2
157e09
157e09
* Sat Mar 09 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-10.dev.git984ea9b
157e09
- autobuilt 984ea9b
157e09
157e09
* Thu Mar 07 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-9.dev.git0a8ec97
157e09
- autobuilt 0a8ec97
157e09
157e09
* Wed Mar 06 2019 Dan Walsh <dwalsh@redhat.com> - 1.8-8.dev.git3afba37
157e09
- Add recommends for fuse-overlay and slirp4netns
157e09
157e09
* Wed Mar 06 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-7.dev.git3afba37
157e09
- autobuilt 3afba37
157e09
157e09
* Tue Mar 05 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-6.dev.git11dd219
157e09
- autobuilt 11dd219
157e09
157e09
* Fri Mar 01 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-5.dev.git8b1d11f
157e09
- autobuilt 8b1d11f
157e09
157e09
* Thu Feb 28 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-4.dev.git95a5089
157e09
- autobuilt 95a5089
157e09
157e09
* Tue Feb 26 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-3.dev.git6c1a4cc
157e09
- autobuilt 6c1a4cc
157e09
157e09
* Sat Feb 23 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.8-2.dev.git8c3d8b1
157e09
- bump to 1.8
157e09
- autobuilt 8c3d8b1
157e09
157e09
* Fri Feb 22 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-20.dev.git873f001
157e09
- autobuilt 873f001
157e09
157e09
* Thu Feb 21 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-19.dev.gitdb6e7bb
157e09
- autobuilt db6e7bb
157e09
157e09
* Wed Feb 20 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-18.dev.git1b02a7e
157e09
- autobuilt 1b02a7e
157e09
157e09
* Mon Feb 18 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-17.dev.git146a0fc
157e09
- autobuilt 146a0fc
157e09
157e09
* Sat Feb 16 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-16.dev.git80fcb24
157e09
- autobuilt 80fcb24
157e09
157e09
* Fri Feb 15 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-15.dev.git40d4d59
157e09
- autobuilt 40d4d59
157e09
157e09
* Thu Feb 14 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-14.dev.gite4c4d46
157e09
- autobuilt e4c4d46
157e09
157e09
* Sun Feb 10 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-13.dev.git711f9ea
157e09
- autobuilt 711f9ea
157e09
157e09
* Fri Feb 08 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-12.dev.git310363c
157e09
- autobuilt 310363c
157e09
157e09
* Wed Feb 06 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-11.dev.git50539b5
157e09
- autobuilt 50539b5
157e09
157e09
* Tue Feb 05 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-10.dev.gitad24f28
157e09
- autobuilt ad24f28
157e09
157e09
* Sat Feb 02 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-9.dev.git973bb88
157e09
- autobuilt 973bb88
157e09
157e09
* Fri Feb 01 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-8.dev.git03f6247
157e09
- autobuilt 03f6247
157e09
157e09
* Thu Jan 31 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1.7-7.dev.gite702872
157e09
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
157e09
157e09
* Tue Jan 29 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-6.dev.gite702872
157e09
- autobuilt e702872
157e09
157e09
* Thu Jan 24 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-5.dev.gitf1cec50
157e09
- autobuilt f1cec50
157e09
157e09
* Tue Jan 22 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-4.dev.git4bcddb7
157e09
- autobuilt 4bcddb7
157e09
157e09
* Mon Jan 21 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-3.dev.git9b9ed1d
157e09
- autobuilt 9b9ed1d
157e09
157e09
* Sun Jan 20 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-2.dev.git7a85ca7
157e09
- bump to 1.7
157e09
- autobuilt 7a85ca7
157e09
157e09
* Sat Jan 19 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-2.dev.git5f95bd9
157e09
- bump to 1.6
157e09
- autobuilt 5f95bd9
157e09
157e09
* Fri Jan 18 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.7-2.dev.git0f114e9
157e09
- bump to 1.7
157e09
- autobuilt 0f114e9
157e09
157e09
* Thu Jan 17 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-33.dev.git66ff1dd
157e09
- autobuilt 66ff1dd
157e09
157e09
* Wed Jan 16 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-32.dev.gitd7e530e
157e09
- autobuilt d7e530e
157e09
157e09
* Tue Jan 15 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-31.dev.gitfe7e09c
157e09
- autobuilt fe7e09c
157e09
157e09
* Sun Jan 13 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-30.dev.gitfa86533
157e09
- autobuilt fa86533
157e09
157e09
* Sat Jan 12 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-29.dev.gitf6a0258
157e09
- autobuilt f6a0258
157e09
157e09
* Fri Jan 11 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-28.dev.git5d22f3c
157e09
- autobuilt 5d22f3c
157e09
157e09
* Thu Jan 10 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-27.dev.git1ef527c
157e09
- autobuilt 1ef527c
157e09
157e09
* Wed Jan 09 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-26.dev.git169a923
157e09
- autobuilt 169a923
157e09
157e09
* Tue Jan 08 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-25.dev.git48b44e5
157e09
- autobuilt 48b44e5
157e09
157e09
* Mon Jan 07 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-24.dev.gita4200ae
157e09
- autobuilt a4200ae
157e09
157e09
* Sun Jan 06 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-23.dev.gitbb710f3
157e09
- autobuilt bb710f3
157e09
157e09
* Sat Jan 05 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-22.dev.git8f05aa6
157e09
- autobuilt 8f05aa6
157e09
157e09
* Fri Jan 04 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-21.dev.git579f1d5
157e09
- autobuilt 579f1d5
157e09
157e09
* Thu Jan 03 2019 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-20.dev.gite55a9f3
157e09
- autobuilt e55a9f3
157e09
157e09
* Tue Dec 25 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-1.nightly.git5f95bd99.dev.giteebbba2
157e09
- autobuilt eebbba2
157e09
157e09
* Thu Dec 20 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-1.nightly.git5f95bd98.dev.git4674656
157e09
- autobuilt 4674656
157e09
157e09
* Wed Dec 19 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-1.nightly.git5f95bd97.dev.gitdd3dff5
157e09
- autobuilt dd3dff5
157e09
157e09
* Sun Dec 16 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-1.nightly.git5f95bd96.dev.git96c68db
157e09
- autobuilt 96c68db
157e09
157e09
* Fri Dec 14 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-1.nightly.git5f95bd95.dev.gitde7f480
157e09
- autobuilt de7f480
157e09
157e09
* Wed Dec 12 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-1.nightly.git5f95bd94.dev.git90ea890
157e09
- autobuilt 90ea890
157e09
157e09
* Mon Dec 10 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-1.nightly.git5f95bd93.dev.gitdd0f4f1
157e09
- autobuilt dd0f4f1
157e09
157e09
* Sat Dec 08 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-1.nightly.git5f95bd92.dev.git1e1dc14
157e09
- autobuilt 1e1dc14
157e09
157e09
* Fri Dec 07 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-1.nightly.git5f95bd91.dev.git9c1d273
157e09
- autobuilt 9c1d273
157e09
157e09
* Thu Dec 06 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-1.nightly.git5f95bd90.dev.git5cca1d6
157e09
- autobuilt 5cca1d6
157e09
157e09
* Wed Dec 05 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-9.dev.git01f9ae2
157e09
- autobuilt 01f9ae2
157e09
157e09
* Tue Dec 04 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-8.dev.git9c65e56
157e09
- autobuilt 9c65e56
157e09
157e09
* Sun Dec 02 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-7.dev.gitb68a8e1
157e09
- autobuilt b68a8e1
157e09
157e09
* Sat Dec 01 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-6.dev.git2b582d3
157e09
- autobuilt 2b582d3
157e09
157e09
* Fri Nov 30 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-5.dev.git6e00183
157e09
- autobuilt 6e00183
157e09
157e09
* Thu Nov 29 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-4.dev.git93d8b9f
157e09
- autobuilt 93d8b9f
157e09
157e09
* Wed Nov 28 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-3.dev.git4126176
157e09
- autobuilt 4126176
157e09
157e09
* Fri Nov 23 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.6-2.dev.gitd5a3c52
157e09
- bump to 1.6
157e09
- autobuilt d5a3c52
157e09
157e09
* Thu Nov 22 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.5-12.dev.git25d89b4
157e09
- autobuilt 25d89b4
157e09
157e09
* Wed Nov 21 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.5-11.dev.git2ac987a
157e09
- autobuilt 2ac987a
157e09
157e09
* Tue Nov 20 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.5-10.dev.gitc9cb148
157e09
- autobuilt c9cb148
157e09
157e09
* Sat Nov 17 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.5-9.dev.git18309de
157e09
- autobuilt 18309de
157e09
157e09
* Fri Nov 16 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.5-8.dev.gitd7e0993
157e09
- autobuilt d7e0993
157e09
157e09
* Thu Nov 15 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.5-7.dev.gitdac7819
157e09
- autobuilt dac7819
157e09
157e09
* Tue Nov 13 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.5-6.dev.gitfb2b2bd
157e09
- autobuilt fb2b2bd
157e09
157e09
* Sat Nov 10 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.5-5.dev.git9add3c8
157e09
- autobuilt 9add3c8
157e09
157e09
* Fri Nov 09 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.5-4.dev.git74e0b6f
157e09
- autobuilt 74e0b6f
157e09
157e09
* Thu Nov 08 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.5-3.dev.git0ae8b51
157e09
- autobuilt 0ae8b51
157e09
157e09
* Wed Nov 07 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.5-2.dev.git7341758
157e09
- autobuilt 7341758
157e09
157e09
* Tue Oct 2 2018 Dan Walsh <dwalsh@redhat.com> - 1.5-1.dev.git87239ae
157e09
- bump to v1.5-dev Release
157e09
157e09
* Wed Sep 19 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.4-2.dev.git19e44f0
157e09
- autobuilt 19e44f0
157e09
157e09
* Sun Aug 12 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.4-1.dev.git0a7389c
157e09
- bump to v1.4-dev
157e09
- built 0a7389c
157e09
157e09
* Wed Aug 01 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.3-11.dev.git02f54e4
157e09
- autobuilt 02f54e4
157e09
157e09
* Tue Jul 31 2018 Florian Weimer <fweimer@redhat.com> - 1.3-10.dev.gitbe03809
157e09
- Rebuild with fixed binutils
157e09
157e09
* Sun Jul 29 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.3-9.dev.gitbe03809
157e09
- autobuilt be03809
157e09
157e09
* Sat Jul 28 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.3-8.dev.gitc18724e
157e09
- autobuilt c18724e
157e09
157e09
* Thu Jul 26 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.3-7.dev.git4976d8c
157e09
- autobuilt 4976d8c
157e09
157e09
* Wed Jul 25 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.3-6.dev.gite5f7539
157e09
- autobuilt e5f7539
157e09
157e09
* Mon Jul 23 2018 Dan Walsh <dwalsh@redhat.com> - 1.3-5.dev.dev.git826733a
157e09
- Change container-selinux Requires to Recommends
157e09
157e09
* Fri Jul 20 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.3-4.dev.git826733a
157e09
- autobuilt 826733a
157e09
157e09
* Thu Jul 19 2018 Dan Walsh <dwalsh@redhat.com> - 1.3-3.dev.git1215b16
157e09
- buildah does not require ostree
157e09
157e09
* Thu Jul 19 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.3-2.dev.git1215b16
157e09
- autobuilt 1215b16
157e09
157e09
* Tue Jul 17 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 1.3-1.dev.gita9895bd
157e09
- bump to v1.3-dev
157e09
- built a9895bd
157e09
157e09
* Thu Jul 12 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.2-25.dev.git3fb864b
157e09
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
157e09
157e09
* Mon Jul 09 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-24.git3fb864b
157e09
- autobuilt 3fb864b
157e09
157e09
* Sun Jul 08 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-23.git8be2b62
157e09
- autobuilt 8be2b62
157e09
157e09
* Sat Jul 07 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-22.gita885bc6
157e09
- autobuilt a885bc6
157e09
157e09
* Fri Jul 06 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-21.git733cd20
157e09
- autobuilt 733cd20
157e09
157e09
* Thu Jul 05 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-20.gita59fb7a
157e09
- autobuilt a59fb7a
157e09
157e09
* Tue Jul 03 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-19.git5c11c34
157e09
- autobuilt 5c11c34
157e09
157e09
* Mon Jul 02 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-18.git5cd9be6
157e09
- autobuilt 5cd9be6
157e09
157e09
* Sun Jul 01 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-17.git6f72599
157e09
- autobuilt 6f72599
157e09
157e09
* Sat Jun 30 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-16.git704adec
157e09
- autobuilt 704adec
157e09
157e09
* Fri Jun 29 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-15.gitb965fc4
157e09
- autobuilt b965fc4
157e09
157e09
* Thu Jun 28 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-14.git1acccce
157e09
- autobuilt 1acccce
157e09
157e09
* Wed Jun 27 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-13.git146c185
157e09
- autobuilt 146c185
157e09
157e09
* Tue Jun 26 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-12.git16a33bd
157e09
- autobuilt 16a33bd
157e09
157e09
* Mon Jun 25 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-11.git2ac95ea
157e09
- autobuilt 2ac95ea
157e09
157e09
* Sat Jun 23 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-10.git0143a44
157e09
- autobuilt 0143a44
157e09
157e09
* Thu Jun 21 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-9.git2441ff4
157e09
- autobuilt 2441ff4
157e09
157e09
* Wed Jun 20 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-8.gitda7be32
157e09
- autobuilt da7be32
157e09
157e09
* Tue Jun 19 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-7.git2064b29
157e09
- autobuilt 2064b29
157e09
157e09
* Mon Jun 18 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-6.git93d8606
157e09
- autobuilt 93d8606
157e09
157e09
* Fri Jun 15 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-5.gitfc438bb
157e09
- autobuilt fc438bb
157e09
157e09
* Thu Jun 14 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-4.git73820fc
157e09
- autobuilt 73820fc
157e09
157e09
* Wed Jun 13 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-3.git6c4bef7
157e09
- autobuilt 6c4bef7
157e09
157e09
* Tue Jun 12 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-2.git94c1e6d
157e09
- autobuilt 94c1e6d
157e09
157e09
* Mon Jun 11 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.2-1.gitb9983a6
157e09
- bump to 1.2
157e09
- autobuilt b9983a6
157e09
157e09
* Sun Jun 10 2018 Dan Walsh <dwalsh@redhat.com> 1.1-1
157e09
- Drop capabilities if running container processes as non root
157e09
- Print Warning message if cmd will not be used based on entrypoint
157e09
- Update 01-intro.md
157e09
- Shouldn't add insecure registries to list of search registries
157e09
- Report errors on bad transports specification when pushing images
157e09
- Move parsing code out of common for namespaces and into pkg/parse.go
157e09
- Add disable-content-trust noop flag to bud
157e09
- Change freenode chan to buildah
157e09
- runCopyStdio(): don't close stdin unless we saw POLLHUP
157e09
- Add registry errors for pull
157e09
- runCollectOutput(): just read until the pipes are closed on us
157e09
- Run(): provide redirection for stdio
157e09
- rmi, rm: add test
157e09
- add mount test
157e09
- Add parameter judgment for commands that do not require parameters
157e09
- Add context dir to bud command in baseline test
157e09
- run.bats: check that we can run with symlinks in the bundle path
157e09
- Give better messages to users when image can not be found
157e09
- use absolute path for bundlePath
157e09
- Add environment variable to buildah --format
157e09
- rm: add validation to args and all option
157e09
- Accept json array input for config entrypoint
157e09
- Run(): process RunOptions.Mounts, and its flags
157e09
- Run(): only collect error output from stdio pipes if we created some
157e09
- Add OnBuild support for Dockerfiles
157e09
- Quick fix on demo readme
157e09
- run: fix validate flags
157e09
- buildah bud should require a context directory or URL
157e09
- Touchup tutorial for run changes
157e09
- Validate common bud and from flags
157e09
- images: Error if the specified imagename does not exist
157e09
- inspect: Increase err judgments to avoid panic
157e09
- add test to inspect
157e09
- buildah bud picks up ENV from base image
157e09
- Extend the amount of time travis_wait should wait
157e09
- Add a make target for Installing CNI plugins
157e09
- Add tests for namespace control flags
157e09
- copy.bats: check ownerships in the container
157e09
- Fix SELinux test errors when SELinux is enabled
157e09
- Add example CNI configurations
157e09
- Run: set supplemental group IDs
157e09
- Run: use a temporary mount namespace
157e09
- Use CNI to configure container networks
157e09
- add/secrets/commit: Use mappings when setting permissions on added content
157e09
- Add CLI options for specifying namespace and cgroup setup
157e09
- Always set mappings when using user namespaces
157e09
- Run(): break out creation of stdio pipe descriptors
157e09
- Read UID/GID mapping information from containers and images
157e09
- Additional bud CI tests
157e09
- Run integration tests under travis_wait in Travis
157e09
- build-using-dockerfile: add --annotation
157e09
- Implement --squash for build-using-dockerfile and commit
157e09
- Vendor in latest container/storage for devicemapper support
157e09
- add test to inspect
157e09
- Vendor github.com/onsi/ginkgo and github.com/onsi/gomega
157e09
- Test with Go 1.10, too
157e09
- Add console syntax highlighting to troubleshooting page
157e09
- bud.bats: print "$output" before checking its contents
157e09
- Manage "Run" containers more closely
157e09
- Break Builder.Run()'s "run runc" bits out
157e09
- util.ResolveName(): handle completion for tagged/digested image names
157e09
- Handle /etc/hosts and /etc/resolv.conf properly in container
157e09
- Documentation fixes
157e09
- Make it easier to parse our temporary directory as an image name
157e09
- Makefile: list new pkg/ subdirectoris as dependencies for buildah
157e09
- containerImageSource: return more-correct errors
157e09
- API cleanup: PullPolicy and TerminalPolicy should be types
157e09
- Make "run --terminal" and "run -t" aliases for "run --tty"
157e09
- Vendor github.com/containernetworking/cni v0.6.0
157e09
- Update github.com/containers/storage
157e09
- Update github.com/projectatomic/libpod
157e09
- Add support for buildah bud --label
157e09
- buildah push/from can push and pull images with no reference
157e09
- Vendor in latest containers/image
157e09
- Update gometalinter to fix install.tools error
157e09
- Update troubleshooting with new run workaround
157e09
- Added a bud demo and tidied up
157e09
- Attempt to download file from url, if fails assume Dockerfile
157e09
- Add buildah bud CI tests for ENV variables
157e09
- Re-enable rpm .spec version check and new commit test
157e09
- Update buildah scratch demo to support el7
157e09
- Added Docker compatibility demo
157e09
- Update to F28 and new run format in baseline test
157e09
- Touchup man page short options across man pages
157e09
- Added demo dir and a demo. chged distrorlease
157e09
- builder-inspect: fix format option
157e09
- Add cpu-shares short flag (-c) and cpu-shares CI tests
157e09
- Minor fixes to formatting in rpm spec changelog
157e09
- Fix rpm .spec changelog formatting
157e09
- CI tests and minor fix for cache related noop flags
157e09
- buildah-from: add effective value to mount propagation
157e09
157e09
* Sat Jun 09 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-20.gitf449b28
157e09
- autobuilt f449b28
157e09
157e09
* Fri Jun 08 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-19.gitc306342
157e09
- autobuilt c306342
157e09
157e09
* Wed Jun 06 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-18.gitd3d097b
157e09
- autobuilt d3d097b
157e09
157e09
* Mon Jun 04 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-17.gitf90b6c0
157e09
- autobuilt f90b6c0
157e09
157e09
* Sun Jun 03 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-16.git70641ee
157e09
- autobuilt 70641ee
157e09
157e09
* Sat Jun 02 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-15.git03686e5
157e09
- autobuilt 03686e5
157e09
157e09
* Fri Jun 01 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-14.git73bfd79
157e09
- autobuilt 73bfd79
157e09
157e09
* Thu May 31 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-13.git5595d4d
157e09
- autobuilt 5595d4d
157e09
157e09
* Wed May 30 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-12.gitebb0d8e
157e09
- autobuilt ebb0d8e
157e09
157e09
* Tue May 29 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-11.git88affbd
157e09
- autobuilt 88affbd
157e09
157e09
* Fri May 25 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-10.git25f4e8e
157e09
- autobuilt 25f4e8e
157e09
157e09
* Thu May 17 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-9.git2749191
157e09
- autobuilt 2749191
157e09
157e09
* Wed May 16 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-8.git3e320b9
157e09
- autobuilt 3e320b9
157e09
157e09
* Tue May 15 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-7.git8515867
157e09
- autobuilt 8515867
157e09
157e09
* Sun May 13 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-6.gitce8d467
157e09
- autobuilt ce8d467
157e09
157e09
* Sat May 12 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-5.gitb9a1041
157e09
- autobuilt b9a1041
157e09
157e09
* Fri May 11 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-4.git2ea3e11
157e09
- autobuilt 2ea3e11
157e09
157e09
* Wed May 09 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-3.gitfe204e4
157e09
- autobuilt fe204e4
157e09
157e09
* Tue May 08 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 1.0-2.git906ee37
157e09
- autobuilt 906ee37
157e09
157e09
* Mon May 07 2018 Dan Walsh <dwalsh@redhat.com> 1.0-1
157e09
- Remove buildah run cmd and entrypoint execution
157e09
- Add Files section with registries.conf to pertinent man pages
157e09
- Force "localhost" as a default registry
157e09
- Add --compress, --rm, --squash flags as a noop for bud
157e09
- Add FIPS mode secret to buildah run and bud
157e09
- Add config --comment/--domainname/--history-comment/--hostname
157e09
- Add support for --iidfile to bud and commit
157e09
- Add /bin/sh -c to entrypoint in config
157e09
- buildah images and podman images are listing different sizes
157e09
- Remove tarball as an option from buildah push --help
157e09
- Update entrypoint behaviour to match docker
157e09
- Display imageId after commit
157e09
- config: add support for StopSignal
157e09
- Allow referencing stages as index and names
157e09
- Add multi-stage builds support
157e09
- Vendor in latest imagebuilder, to get mixed case AS support
157e09
- Allow umount to have multi-containers
157e09
- Update buildah push doc
157e09
- buildah bud walks symlinks
157e09
- Imagename is required for commit atm, update manpage
157e09
157e09
* Mon May 07 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-25.gitdd02e70
157e09
- autobuilt dd02e70
157e09
157e09
* Sat May 05 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-24.git45772e8
157e09
- autobuilt 45772e8
157e09
157e09
* Fri May 04 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-23.git6fe2b55
157e09
- autobuilt 6fe2b55
157e09
157e09
* Wed May 02 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-22.gita4f5707
157e09
- autobuilt a4f5707
157e09
157e09
* Wed May 02 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-21.gite130f2b
157e09
- autobuilt commit e130f2b
157e09
157e09
* Tue May 01 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-20.gitadb8e6f
157e09
- autobuilt commit adb8e6f
157e09
157e09
* Sat Apr 28 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-19.gitc50c287
157e09
- autobuilt commit c50c287
157e09
157e09
* Fri Apr 27 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-18.gitca1704f
157e09
- autobuilt commit ca1704f
157e09
157e09
* Wed Apr 25 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-17.git49abf82
157e09
- autobuilt commit 49abf82
157e09
157e09
* Tue Apr 24 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-16.gitfdc3998
157e09
- autobuilt commit fdc3998
157e09
157e09
* Tue Apr 24 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-15.gitb16a1ea
157e09
- autobuilt commit b16a1ea
157e09
157e09
* Fri Apr 20 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-14.gitd84f05a
157e09
- autobuilt commit d84f05a
157e09
157e09
* Thu Apr 19 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-13.gite008b73
157e09
- autobuilt commit e008b73
157e09
157e09
* Thu Apr 19 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-12.git28a27a3
157e09
- autobuilt commit 28a27a3
157e09
157e09
* Tue Apr 17 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-11.git45a4b81
157e09
- autobuilt commit 45a4b81
157e09
157e09
* Tue Apr 17 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-10.git45a4b81
157e09
- autobuilt commit 45a4b81
157e09
157e09
* Mon Apr 16 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-9.git6421399
157e09
- autobuilt commit 6421399
157e09
157e09
* Mon Apr 16 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-8.git83d7d10
157e09
- autobuilt commit 83d7d10
157e09
157e09
* Mon Apr 16 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-7.git83d7d10
157e09
- autobuilt commit 83d7d10
157e09
157e09
* Mon Apr 16 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-6.git83d7d10
157e09
- autobuilt commit 83d7d10
157e09
157e09
* Mon Apr 09 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-5.git4339223
157e09
- autobuilt commit 4339223
157e09
157e09
* Mon Apr 09 2018 Lokesh Mandvekar (Bot) <lsm5+bot@fedoraproject.org> - 0.16-4.git4339223
157e09
- autobuilt commit 4339223
157e09
157e09
* Mon Apr 09 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.16-3.git4339223
157e09
- autobuilt commit 4339223
157e09
157e09
* Sun Apr 08 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.16-2.git4743c2e
157e09
- autobuilt commit 4743c2e
157e09
157e09
* Wed Apr 4 2018 Dan Walsh <dwalsh@redhat.com> 0.16-1
157e09
- Add support for shell
157e09
- Vendor in latest containers/image
157e09
- docker-archive generates docker legacy compatible images
157e09
- Do not create $DiffID subdirectories for layers with no configs
157e09
- Ensure the layer IDs in legacy docker/tarfile metadata are unique
157e09
- docker-archive: repeated layers are symlinked in the tar file
157e09
- sysregistries: remove all trailing slashes
157e09
- Improve docker/* error messages
157e09
- Fix failure to make auth directory
157e09
- Create a new slice in Schema1.UpdateLayerInfos
157e09
- Drop unused storageImageDestination.{image,systemContext}
157e09
- Load a *storage.Image only once in storageImageSource
157e09
- Support gzip for docker-archive files
157e09
- Remove .tar extension from blob and config file names
157e09
- ostree, src: support copy of compressed layers
157e09
- ostree: re-pull layer if it misses uncompressed_digest|uncompressed_size
157e09
- image: fix docker schema v1 -> OCI conversion
157e09
- Add /etc/containers/certs.d as default certs directory
157e09
- Change image time to locale, add troubleshooting.md, add logo to other mds
157e09
- Allow --cmd parameter to have commands as values
157e09
- Document the mounts.conf file
157e09
- Fix man pages to format correctly
157e09
- buildah from now supports pulling images using the following transports:
157e09
- docker-archive, oci-archive, and dir.
157e09
- If the user overrides the storage driver, the options should be dropped
157e09
- Show Config/Manifest as JSON string in inspect when format is not set
157e09
- Adds feature to pull compressed docker-archive files
157e09
157e09
* Tue Feb 27 2018 Dan Walsh <dwalsh@redhat.com> 0.15-1
157e09
- Fix handling of buildah run command options
157e09
157e09
* Mon Feb 26 2018 Dan Walsh <dwalsh@redhat.com> 0.14-1
157e09
- If commonOpts do not exist, we should return rather then segfault
157e09
- Display full error string instead of just status
157e09
- Implement --volume and --shm-size for bud and from
157e09
- Fix secrets patch for buildah bud
157e09
- Fixes the naming issue of blobs and config for the dir transport by removing the .tar extension
157e09
157e09
* Sun Feb 25 2018 Peter Robinson <pbrobinson@fedoraproject.org> 0.13-2
157e09
- Build on ARMv7 too (Fedora supports containers on that arch too)
157e09
157e09
* Thu Feb 22 2018 Dan Walsh <dwalsh@redhat.com> 0.13-1
157e09
- Vendor in latest containers/storage
157e09
- This fixes a large SELinux bug.  
157e09
- run: do not open /etc/hosts if not needed
157e09
- Add the following flags to buildah bud and from
157e09
            --add-host
157e09
            --cgroup-parent
157e09
            --cpu-period
157e09
            --cpu-quota
157e09
            --cpu-shares
157e09
            --cpuset-cpus
157e09
            --cpuset-mems
157e09
            --memory
157e09
            --memory-swap
157e09
            --security-opt
157e09
            --ulimit
157e09
157e09
* Mon Feb 12 2018 Dan Walsh <dwalsh@redhat.com> 0.12-1
157e09
- Added handing for simpler error message for Unknown Dockerfile instructions.
157e09
- Change default certs directory to /etc/containers/certs.dir
157e09
- Vendor in latest containers/image
157e09
- Vendor in latest containers/storage
157e09
- build-using-dockerfile: set the 'author' field for MAINTAINER
157e09
- Return exit code 1 when buildah-rmi fails
157e09
- Trim the image reference to just its name before calling getImageName
157e09
- Touch up rmi -f usage statement
157e09
- Add --format and --filter to buildah containers
157e09
- Add --prune,-p option to rmi command
157e09
- Add authfile param to commit
157e09
- Fix --runtime-flag for buildah run and bud
157e09
- format should override quiet for images
157e09
- Allow all auth params to work with bud
157e09
- Do not overwrite directory permissions on --chown
157e09
- Unescape HTML characters output into the terminal
157e09
- Fix: setting the container name to the image
157e09
- Prompt for un/pwd if not supplied with --creds
157e09
- Make bud be really quiet
157e09
- Return a better error message when failed to resolve an image
157e09
- Update auth tests and fix bud man page
157e09
157e09
* Wed Feb 07 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.11-3.git6bad262
157e09
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
157e09
157e09
* Mon Feb 05 2018 Lokesh Mandvekar <lsm5@fedoraproject.org> - 0.11-2
157e09
- Resolves: upstream gh#432
157e09
- enable debuginfo for non-fedora packages
157e09
157e09
* Tue Jan 16 2018 Dan Walsh <dwalsh@redhat.com> 0.11-1
157e09
- Add --all to remove containers
157e09
- Add --all functionality to rmi
157e09
- Show ctrid when doing rm -all
157e09
- Ignore sequential duplicate layers when reading v2s1
157e09
- Lots of minor bug fixes
157e09
- Vendor in latest containers/image and containers/storage
157e09
157e09
* Tue Dec 26 2017 Dan Walsh <dwalsh@redhat.com> 0.10-2
157e09
- Fix checkin
157e09
157e09
* Sat Dec 23 2017 Dan Walsh <dwalsh@redhat.com> 0.10-1
157e09
- Display Config and Manifest as strings
157e09
- Bump containers/image
157e09
- Use configured registries to resolve image names
157e09
- Update to work with newer image library
157e09
- Add --chown option to add/copy commands
157e09
157e09
* Sat Dec 2 2017 Dan Walsh <dwalsh@redhat.com> 0.9-1
157e09
- Allow push to use the image id
157e09
- Make sure builtin volumes have the correct label
157e09
157e09
* Thu Nov 16 2017 Dan Walsh <dwalsh@redhat.com> 0.8-1
157e09
- Buildah bud was failing on SELinux machines, this fixes this
157e09
- Block access to certain kernel file systems inside of the container
157e09
157e09
* Thu Nov 16 2017 Dan Walsh <dwalsh@redhat.com> 0.7-1
157e09
- Ignore errors when trying to read containers buildah.json for loading SELinux reservations
157e09
- Use credentials from kpod login for buildah
157e09
157e09
* Wed Nov 15 2017 Dan Walsh <dwalsh@redhat.com> 0.6-1
157e09
- Adds support for converting manifest types when using the dir transport
157e09
- Rework how we do UID resolution in images
157e09
- Bump github.com/vbatts/tar-split
157e09
- Set option.terminal appropriately in run
157e09
157e09
* Wed Nov 08 2017 Dan Walsh <dwalsh@redhat.com> 0.5-2
157e09
- Bump github.com/vbatts/tar-split
157e09
- Fixes CVE That could allow a container image to cause a DOS
157e09
157e09
* Tue Nov 07 2017 Dan Walsh <dwalsh@redhat.com> 0.5-1
157e09
- Add secrets patch to buildah
157e09
- Add proper SELinux labeling to buildah run
157e09
- Add tls-verify to bud command
157e09
- Make filtering by date use the image's date
157e09
- images: don't list unnamed images twice
157e09
- Fix timeout issue
157e09
- Add further tty verbiage to buildah run
157e09
- Make inspect try an image on failure if type not specified
157e09
- Add support for `buildah run --hostname`
157e09
- Tons of bug fixes and code cleanup
157e09
157e09
* Fri Sep 22 2017 Dan Walsh <dwalsh@redhat.com> 0.4-1.git9cbccf88c
157e09
- Add default transport to push if not provided
157e09
- Avoid trying to print a nil ImageReference
157e09
- Add authentication to commit and push
157e09
- Add information on buildah from man page on transports
157e09
- Remove --transport flag
157e09
- Run: do not complain about missing volume locations
157e09
- Add credentials to buildah from
157e09
- Remove export command
157e09
- Run(): create the right working directory
157e09
- Improve "from" behavior with unnamed references
157e09
- Avoid parsing image metadata for dates and layers
157e09
- Read the image's creation date from public API
157e09
- Bump containers/storage and containers/image
157e09
- Don't panic if an image's ID can't be parsed
157e09
- Turn on --enable-gc when running gometalinter
157e09
- rmi: handle truncated image IDs
157e09
157e09
* Tue Aug 15 2017 Josh Boyer <jwboyer@redhat.com> - 0.3-5.gitb9b2a8a
157e09
- Build for s390x as well
157e09
157e09
* Wed Aug 02 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.3-4.gitb9b2a8a
157e09
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild
157e09
157e09
* Wed Jul 26 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.3-3.gitb9b2a8a
157e09
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
157e09
157e09
* Thu Jul 20 2017 Dan Walsh <dwalsh@redhat.com> 0.3-2.gitb9b2a8a7e
157e09
- Bump for inclusion of OCI 1.0 Runtime and Image Spec
157e09
157e09
* Tue Jul 18 2017 Dan Walsh <dwalsh@redhat.com> 0.2.0-1.gitac2aad6
157e09
- buildah run: Add support for -- ending options parsing 
157e09
- buildah Add/Copy support for glob syntax
157e09
- buildah commit: Add flag to remove containers on commit
157e09
- buildah push: Improve man page and help information
157e09
- buildah run: add a way to disable PTY allocation
157e09
- Buildah docs: clarify --runtime-flag of run command
157e09
- Update to match newer storage and image-spec APIs
157e09
- Update containers/storage and containers/image versions
157e09
- buildah export: add support
157e09
- buildah images: update commands
157e09
- buildah images: Add JSON output option
157e09
- buildah rmi: update commands
157e09
- buildah containers: Add JSON output option
157e09
- buildah version: add command
157e09
- buildah run: Handle run without an explicit command correctly
157e09
- Ensure volume points get created, and with perms
157e09
- buildah containers: Add a -a/--all option
157e09
157e09
* Wed Jun 14 2017 Dan Walsh <dwalsh@redhat.com> 0.1.0-2.git597d2ab9
157e09
- Release Candidate 1
157e09
- All features have now been implemented.
157e09
157e09
* Fri Apr 14 2017 Dan Walsh <dwalsh@redhat.com> 0.0.1-1.git7a0a5333
157e09
- First package for Fedora