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