Compare commits
No commits in common. "c8-stream-1.0" and "c8-beta-stream-3.0" have entirely different histories.
c8-stream-
...
c8-beta-st
@ -1 +1 @@
|
||||
d3fcf1950a92f35210dc390cde164f6e428826d1 SOURCES/buildah-e94b4f9.tar.gz
|
||||
462a12e1d78ca0f9638fd8d1b8d61a3de1d6deb0 SOURCES/release-1.19-6d7f496.tar.gz
|
||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
SOURCES/buildah-e94b4f9.tar.gz
|
||||
SOURCES/release-1.19-6d7f496.tar.gz
|
||||
|
@ -1,48 +0,0 @@
|
||||
From 840e7dad513b86f454573ad415701c0199f78d30 Mon Sep 17 00:00:00 2001
|
||||
From: TomSweeneyRedHat <tsweeney@redhat.com>
|
||||
Date: Tue, 24 Mar 2020 20:10:22 -0400
|
||||
Subject: [PATCH] Fix potential CVE in tarfile w/ symlink
|
||||
|
||||
Stealing @nalind 's workaround to avoid refetching
|
||||
content after a file read failure. Under the right
|
||||
circumstances that could be a symlink to a file meant
|
||||
to overwrite a good file with bad data.
|
||||
|
||||
Testing:
|
||||
```
|
||||
goodstuff
|
||||
|
||||
[1] 14901
|
||||
|
||||
127.0.0.1 - - [24/Mar/2020 20:15:50] "GET / HTTP/1.1" 200 -
|
||||
127.0.0.1 - - [24/Mar/2020 20:15:50] "GET / HTTP/1.1" 200 -
|
||||
no FROM statement found
|
||||
|
||||
goodstuff
|
||||
```
|
||||
|
||||
Signed-off-by: TomSweeneyRedHat <tsweeney@redhat.com>
|
||||
---
|
||||
imagebuildah/util.go | 5 +++--
|
||||
1 file changed, 3 insertions(+), 2 deletions(-)
|
||||
|
||||
diff -up a/imagebuildah/util.go.CVE-2020-10696 b/imagebuildah/util.go
|
||||
--- a/imagebuildah/util.go.CVE-2020-10696
|
||||
+++ b/imagebuildah/util.go
|
||||
@@ -12,6 +12,7 @@ import (
|
||||
|
||||
"github.com/containers/buildah"
|
||||
"github.com/containers/storage/pkg/chrootarchive"
|
||||
+ "github.com/containers/storage/pkg/ioutils"
|
||||
"github.com/pkg/errors"
|
||||
"github.com/sirupsen/logrus"
|
||||
)
|
||||
@@ -47,7 +48,7 @@ func downloadToDirectory(url, dir string
|
||||
}
|
||||
dockerfile := filepath.Join(dir, "Dockerfile")
|
||||
// Assume this is a Dockerfile
|
||||
- if err := ioutil.WriteFile(dockerfile, body, 0600); err != nil {
|
||||
+ if err := ioutils.AtomicWriteFile(dockerfile, body, 0600); err != nil {
|
||||
return errors.Wrapf(err, "Failed to write %q to %q", url, dockerfile)
|
||||
}
|
||||
}
|
@ -1,54 +1,50 @@
|
||||
%global with_debug 1
|
||||
%global with_bundled 1
|
||||
|
||||
%if 0%{?with_debug}
|
||||
%global _find_debuginfo_dwz_opts %{nil}
|
||||
%global _dwz_low_mem_die_limit 0
|
||||
%else
|
||||
%global debug_package %{nil}
|
||||
%endif
|
||||
|
||||
%if 0%{?rhel} > 7 && ! 0%{?fedora}
|
||||
%define gobuild(o:) \
|
||||
go build -buildmode pie -compiler gc -tags="rpm_crashtraceback no_openssl ${BUILDTAGS:-}" -ldflags "${LDFLAGS:-} -compressdwarf=false -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -extldflags '%__global_ldflags'" -a -v -x %{?**};
|
||||
go build -buildmode pie -compiler gc -tags="rpm_crashtraceback libtrust_openssl ${BUILDTAGS:-}" -ldflags "${LDFLAGS:-} -compressdwarf=false -B 0x$(head -c20 /dev/urandom|od -An -tx1|tr -d ' \\n') -extldflags '%__global_ldflags'" -a -v %{?**};
|
||||
%else
|
||||
%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 %{?**};
|
||||
%endif
|
||||
%endif
|
||||
|
||||
%global provider github
|
||||
%global provider_tld com
|
||||
%global project containers
|
||||
%global repo buildah
|
||||
# https://github.com/projectatomic/buildah
|
||||
%global provider_prefix %{provider}.%{provider_tld}/%{project}/%{repo}
|
||||
%global import_path %{provider_prefix}
|
||||
%global commit e94b4f98048e7371685731b97eefd6265e2f1fb3
|
||||
%global shortcommit %(c=%{commit}; echo ${c:0:7})
|
||||
%global import_path github.com/containers/buildah
|
||||
%global branch release-1.19
|
||||
%global commit0 6d7f49677fce165a0a5fab7adb9109a87371041f
|
||||
%global shortcommit0 %(c=%{commit0}; echo ${c:0:7})
|
||||
|
||||
Name: %{repo}
|
||||
Version: 1.5
|
||||
Release: 8.git%{shortcommit}%{?dist}
|
||||
Summary: A command line tool used for creating OCI Images
|
||||
License: ASL 2.0
|
||||
URL: https://%{provider_prefix}
|
||||
Source0: https://%{provider_prefix}/archive/%{commit}/%{repo}-%{shortcommit}.tar.gz
|
||||
# tracker bug: https://bugzilla.redhat.com/show_bug.cgi?id=CVE-2020-10696
|
||||
# backported: https://github.com/containers/buildah/commit/c61925b8936e93a5e900f91b653a846f7ea3a9ed.patch
|
||||
Patch0: buildah-CVE-2020-10696.patch
|
||||
ExclusiveArch: x86_64 %{arm} aarch64 ppc64le s390x
|
||||
# If go_compiler is not set to 1, there is no virtual provide. Use golang instead.
|
||||
BuildRequires: %{?go_compiler:compiler(go-compiler)}%{!?go_compiler:golang}
|
||||
BuildRequires: git
|
||||
BuildRequires: glib2-devel
|
||||
BuildRequires: ostree-devel
|
||||
BuildRequires: glibc-static
|
||||
BuildRequires: go-md2man
|
||||
BuildRequires: gpgme-devel
|
||||
BuildRequires: device-mapper-devel
|
||||
BuildRequires: libassuan-devel
|
||||
BuildRequires: libseccomp-devel
|
||||
Requires: runc >= 1.0.0-26
|
||||
Requires: containers-common
|
||||
Requires: container-selinux
|
||||
Provides: %{repo} = %{version}-%{release}
|
||||
Name: buildah
|
||||
Version: 1.19.9
|
||||
Release: 6%{?dist}
|
||||
Summary: A command line tool used for creating OCI Images
|
||||
License: ASL 2.0
|
||||
URL: https://%{name}.io
|
||||
# https://fedoraproject.org/wiki/PackagingDrafts/Go#Go_Language_Architectures
|
||||
ExclusiveArch: %{go_arches}
|
||||
%if 0%{?branch:1}
|
||||
Source0: https://%{import_path}/tarball/%{commit0}/%{branch}-%{shortcommit0}.tar.gz
|
||||
%else
|
||||
Source0: https://%{import_path}/archive/%{commit0}/%{name}-%{version}-%{shortcommit0}.tar.gz
|
||||
%endif
|
||||
BuildRequires: golang >= 1.12.12-4
|
||||
BuildRequires: git
|
||||
BuildRequires: glib2-devel
|
||||
BuildRequires: libseccomp-devel
|
||||
BuildRequires: ostree-devel
|
||||
BuildRequires: glibc-static
|
||||
BuildRequires: go-md2man
|
||||
BuildRequires: gpgme-devel
|
||||
BuildRequires: device-mapper-devel
|
||||
BuildRequires: libassuan-devel
|
||||
BuildRequires: make
|
||||
Requires: runc >= 1.0.0-26
|
||||
Requires: containers-common
|
||||
Recommends: container-selinux
|
||||
Requires: slirp4netns >= 0.3-0
|
||||
|
||||
%description
|
||||
The %{name} package provides a command line tool which can be used to
|
||||
@ -59,26 +55,53 @@ or
|
||||
* save container's root file system layer to create a new image
|
||||
* delete a working container or an image
|
||||
|
||||
%package tests
|
||||
Summary: Tests for %{name}
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
Requires: bzip2
|
||||
Requires: podman
|
||||
Requires: golang
|
||||
Requires: httpd-tools
|
||||
|
||||
%description tests
|
||||
%{summary}
|
||||
|
||||
This package contains system tests for %{name}
|
||||
|
||||
%prep
|
||||
%autosetup -Sgit -n %{name}-%{commit}
|
||||
%if 0%{?branch:1}
|
||||
%autosetup -Sgit -n containers-%{name}-%{shortcommit0}
|
||||
%else
|
||||
%autosetup -Sgit -n %{name}-%{commit0}
|
||||
%endif
|
||||
sed -i 's/GOMD2MAN =/GOMD2MAN ?=/' docs/Makefile
|
||||
sed -i '/docs install/d' Makefile
|
||||
|
||||
%build
|
||||
mkdir _build
|
||||
pushd _build
|
||||
mkdir -p src/%{provider}.%{provider_tld}/%{project}
|
||||
mkdir -p src/github.com/containers
|
||||
ln -s $(dirs +1 -l) src/%{import_path}
|
||||
popd
|
||||
|
||||
mv vendor src
|
||||
|
||||
export GOPATH=$(pwd)/_build:$(pwd):%{gopath}
|
||||
export BUILDTAGS='seccomp exclude_graphdriver_btrfs'
|
||||
%gobuild -o %{name} %{import_path}/cmd/%{name}
|
||||
make docs
|
||||
export GOPATH=$(pwd)/_build:$(pwd)
|
||||
export BUILDTAGS='seccomp selinux btrfs_noversion exclude_graphdriver_btrfs'
|
||||
export GO111MODULE=off
|
||||
export CGO_CFLAGS="%{optflags} -D_GNU_SOURCE -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64"
|
||||
rm -f src/github.com/containers/storage/drivers/register/register_btrfs.go
|
||||
%gobuild -o bin/%{name} %{import_path}/cmd/%{name}
|
||||
%gobuild -o imgtype %{import_path}/tests/imgtype
|
||||
GOMD2MAN=go-md2man %{__make} -C docs
|
||||
|
||||
%install
|
||||
export GOPATH=$(pwd)/_build:$(pwd):%{gopath}
|
||||
make DESTDIR=%{buildroot} PREFIX=%{_prefix} install install.completions
|
||||
install -d -p %{buildroot}/%{_datadir}/%{name}/test/system
|
||||
cp -pav tests/. %{buildroot}/%{_datadir}/%{name}/test/system
|
||||
cp imgtype %{buildroot}/%{_bindir}/%{name}-imgtype
|
||||
make DESTDIR=%{buildroot} PREFIX=%{_prefix} -C docs install
|
||||
|
||||
#define license tag if not already defined
|
||||
%{!?_licensedir:%global license %doc}
|
||||
@ -92,14 +115,242 @@ make DESTDIR=%{buildroot} PREFIX=%{_prefix} install install.completions
|
||||
%dir %{_datadir}/bash-completion/completions
|
||||
%{_datadir}/bash-completion/completions/%{name}
|
||||
|
||||
%files tests
|
||||
%license LICENSE
|
||||
%{_bindir}/%{name}-imgtype
|
||||
%{_datadir}/%{name}/test
|
||||
|
||||
%changelog
|
||||
* Thu Jun 25 2020 Jindrich Novy <jnovy@redhat.com> - 1.5-8.gite94b4f9
|
||||
- bump release to preserve upgrade path
|
||||
* Thu May 12 2022 Jindrich Novy <jnovy@redhat.com> - 1.19.9-6
|
||||
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
|
||||
(https://github.com/containers/buildah/commit/6d7f496)
|
||||
- Related: #2061390
|
||||
|
||||
* Sat Apr 30 2022 Jindrich Novy <jnovy@redhat.com> - 1.19.9-5
|
||||
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
|
||||
(https://github.com/containers/buildah/commit/d69ac6e)
|
||||
- Related: #2061390
|
||||
|
||||
* Wed Apr 06 2022 Jindrich Novy <jnovy@redhat.com> - 1.19.9-4
|
||||
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
|
||||
(https://github.com/containers/buildah/commit/7c6701d)
|
||||
- Related: #2061390
|
||||
|
||||
* Fri Apr 01 2022 Jindrich Novy <jnovy@redhat.com> - 1.19.9-3
|
||||
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
|
||||
(https://github.com/containers/buildah/commit/3808e27)
|
||||
- Related: #2061390
|
||||
|
||||
* Mon Jan 10 2022 Jindrich Novy <jnovy@redhat.com> - 1.19.9-2
|
||||
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
|
||||
(https://github.com/containers/buildah/commit/ff5434f)
|
||||
- Related: #2001445
|
||||
|
||||
* Tue Aug 17 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.9-1
|
||||
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
|
||||
(https://github.com/containers/buildah/commit/c1d6200)
|
||||
- fixes CVE-2021-3602
|
||||
- Related: #1977943
|
||||
|
||||
* Fri Feb 19 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.6-1
|
||||
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
|
||||
(https://github.com/containers/buildah/commit/7aedb16)
|
||||
- Related: #1883490
|
||||
|
||||
* Thu Feb 18 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.5-5
|
||||
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
|
||||
(https://github.com/containers/buildah/commit/dcd385e)
|
||||
- Related: #1883490
|
||||
|
||||
* Tue Feb 16 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.5-4
|
||||
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
|
||||
(https://github.com/containers/buildah/commit/e5384ed)
|
||||
- Related: #1883490
|
||||
|
||||
* Mon Feb 15 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.5-3
|
||||
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
|
||||
(https://github.com/containers/buildah/commit/9dd415b)
|
||||
- Related: #1883490
|
||||
|
||||
* Fri Feb 12 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.5-2
|
||||
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
|
||||
(https://github.com/containers/buildah/commit/db783f4)
|
||||
- Related: #1883490
|
||||
|
||||
* Wed Feb 10 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.5-1
|
||||
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
|
||||
(https://github.com/containers/buildah/commit/1fb260f)
|
||||
- Related: #1883490
|
||||
|
||||
* Tue Feb 09 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.4-1
|
||||
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
|
||||
(https://github.com/containers/buildah/commit/76beccc)
|
||||
- Related: #1883490
|
||||
|
||||
* Sun Feb 07 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.3-3
|
||||
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
|
||||
(https://github.com/containers/buildah/commit/a96b716)
|
||||
- Related: #1883490
|
||||
|
||||
* Sat Feb 06 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.3-2
|
||||
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
|
||||
(https://github.com/containers/buildah/commit/17521db)
|
||||
- Related: #1883490
|
||||
|
||||
* Sun Jan 31 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.3-1
|
||||
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
|
||||
(https://github.com/containers/buildah/commit/af31e45)
|
||||
- Related: #1883490
|
||||
|
||||
* Fri Jan 29 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.2-2
|
||||
- update to the latest content of https://github.com/containers/buildah/tree/release-1.19
|
||||
(https://github.com/containers/buildah/commit/06e091b)
|
||||
- Related: #1883490
|
||||
|
||||
* Fri Jan 15 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.2-1
|
||||
- update to https://github.com/containers/buildah/releases/tag/v1.19.2
|
||||
- Related: #1883490
|
||||
|
||||
* Fri Jan 15 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.1-1
|
||||
- update to https://github.com/containers/buildah/releases/tag/v1.19.1
|
||||
- Related: #1883490
|
||||
|
||||
* Wed Jan 13 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.0-2
|
||||
- fix gating test issue with openssl cert
|
||||
- Related: #1914884
|
||||
|
||||
* Sat Jan 09 2021 Jindrich Novy <jnovy@redhat.com> - 1.19.0-1
|
||||
- update to https://github.com/containers/buildah/releases/tag/v1.19.0
|
||||
- Related: #1883490
|
||||
|
||||
* Tue Dec 08 2020 Jindrich Novy <jnovy@redhat.com> - 1.18.0-1
|
||||
- make build log more readable
|
||||
- always build with debuginfo enabled
|
||||
- Related: #1883490
|
||||
|
||||
* Thu Nov 05 2020 Jindrich Novy <jnovy@redhat.com> - 1.17.0-2
|
||||
- simplify spec file
|
||||
- use short commit ID in tarball name
|
||||
- Related: #1883490
|
||||
|
||||
* Fri Oct 30 2020 Jindrich Novy <jnovy@redhat.com> - 1.17.0-1
|
||||
- update to https://github.com/containers/buildah/releases/tag/v1.17.0
|
||||
- Related: #1883490
|
||||
|
||||
* Fri Oct 23 2020 Jindrich Novy <jnovy@redhat.com> - 1.16.5-2
|
||||
- use shortcommit ID in branch tarball name
|
||||
- Related: #1883490
|
||||
|
||||
* Thu Oct 22 2020 Jindrich Novy <jnovy@redhat.com> - 1.16.5-1
|
||||
- synchronize with stream-container-tools-rhel8
|
||||
- Related: #1883490
|
||||
|
||||
* Thu Oct 22 2020 Jindrich Novy <jnovy@redhat.com> - 1.16.4-3
|
||||
- update source tarball
|
||||
- Related: #1883490
|
||||
|
||||
* Thu Oct 22 2020 Jindrich Novy <jnovy@redhat.com> - 1.16.4-2
|
||||
- use the mainline 1.16.4 buildah release as starting point for 8.4.0
|
||||
not the content from upstream branch yet
|
||||
- Related: #1883490
|
||||
|
||||
* Wed Oct 21 2020 Jindrich Novy <jnovy@redhat.com> - 1.16.4-1
|
||||
- synchronize with stream-container-tools-rhel8
|
||||
- Related: #1883490
|
||||
|
||||
* Tue Aug 11 2020 Jindrich Novy <jnovy@redhat.com> - 1.15.1-2
|
||||
- propagate proper CFLAGS to CGO_CFLAGS to assure code hardening and optimization
|
||||
- Related: #1821193
|
||||
|
||||
* Fri Apr 03 2020 Jindrich Novy <jnovy@redhat.com> - 1.5-4.gite94b4f9
|
||||
* Mon Aug 10 2020 Jindrich Novy <jnovy@redhat.com> - 1.15.1-1
|
||||
- update to https://github.com/containers/buildah/releases/tag/v1.15.1
|
||||
- Related: #1821193
|
||||
|
||||
* Fri Jul 17 2020 Jindrich Novy <jnovy@redhat.com> - 1.15.0-2
|
||||
- fix "CVE-2020-14040 buildah: golang.org/x/text: possibility to trigger an infinite loop in encoding/unicode could lead to crash [rhel-8]"
|
||||
- Resolves: #1854717
|
||||
|
||||
* Thu Jun 18 2020 Jindrich Novy <jnovy@redhat.com> - 1.15.0-1
|
||||
- update to https://github.com/containers/buildah/releases/tag/v1.15.0
|
||||
- Related: #1821193
|
||||
|
||||
* Wed Jun 10 2020 Jindrich Novy <jnovy@redhat.com> - 1.14.9-2
|
||||
- exclude i686 arch
|
||||
- Related: #1821193
|
||||
|
||||
* Tue May 19 2020 Jindrich Novy <jnovy@redhat.com> - 1.14.9-1
|
||||
- update to https://github.com/containers/buildah/releases/tag/v1.14.9
|
||||
- Related: #1821193
|
||||
|
||||
* Tue May 12 2020 Jindrich Novy <jnovy@redhat.com> - 1.14.8-1
|
||||
- synchronize containter-tools 8.3.0 with 8.2.1
|
||||
- Related: #1821193
|
||||
|
||||
* Wed Apr 01 2020 Jindrich Novy <jnovy@redhat.com> - 1.11.6-8
|
||||
- fix "CVE-2020-10696 buildah: crafted input tar file may lead to local file overwriting during image build process"
|
||||
- Resolves: #1818127
|
||||
- Resolves: #1819810
|
||||
|
||||
* Mon Feb 24 2020 Jindrich Novy <jnovy@redhat.com> - 1.11.6-7
|
||||
- fix "COPY command takes long time with buildah"
|
||||
- Resolves: #1806120
|
||||
|
||||
* Mon Feb 17 2020 Jindrich Novy <jnovy@redhat.com> - 1.11.6-6
|
||||
- fix CVE-2020-1702
|
||||
- Resolves: #1801926
|
||||
|
||||
* Thu Feb 13 2020 Jindrich Novy <jnovy@redhat.com> - 1.11.6-5
|
||||
- adding the first phase of FIPS fix
|
||||
- Related: #1784952
|
||||
|
||||
* Wed Dec 11 2019 Jindrich Novy <jnovy@redhat.com> - 1.11.6-4
|
||||
- compile in FIPS mode
|
||||
- Related: RHELPLAN-25139
|
||||
|
||||
* Mon Dec 09 2019 Jindrich Novy <jnovy@redhat.com> - 1.11.6-3
|
||||
- be sure to use golang >= 1.12.12-4
|
||||
- Related: RHELPLAN-25139
|
||||
|
||||
* Fri Dec 06 2019 Jindrich Novy <jnovy@redhat.com> - 1.11.6-2
|
||||
- fix chroot: unmount with MNT_DETACH instead of UnmountMountpoints()
|
||||
- bug reference 1772179
|
||||
- Related: RHELPLAN-25139
|
||||
|
||||
* Thu Dec 05 2019 Jindrich Novy <jnovy@redhat.com> - 1.11.6-1
|
||||
- update to buildah 1.11.6
|
||||
- Related: RHELPLAN-25139
|
||||
|
||||
* Thu Nov 21 2019 Jindrich Novy <jnovy@redhat.com> - 1.11.5-1
|
||||
- update to buildah 1.11.5
|
||||
- Related: RHELPLAN-25139
|
||||
|
||||
* Thu Nov 07 2019 Jindrich Novy <jnovy@redhat.com> - 1.11.4-2
|
||||
- fix %%gobuild macro to not to ignore BUILDTAGS
|
||||
- Related: RHELPLAN-25139
|
||||
|
||||
* Thu Nov 07 2019 Jindrich Novy <jnovy@redhat.com> - 1.11.4-1
|
||||
- update to 1.11.4
|
||||
- Related: RHELPLAN-25139
|
||||
|
||||
* Tue Sep 17 2019 Jindrich Novy <jnovy@redhat.com> - 1.9.0-5
|
||||
- Use autosetup macro again.
|
||||
|
||||
* Thu Sep 12 2019 Jindrich Novy <jnovy@redhat.com> - 1.9.0-4
|
||||
- Fix CVE-2019-10214 (#1734653).
|
||||
|
||||
* Sat Jun 15 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.0-3
|
||||
- Resolves: #1721247 - enable fips mode
|
||||
|
||||
* Sat Jun 15 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.0-2
|
||||
- Resolves: #1720654 - tests subpackage depends on golang explicitly
|
||||
|
||||
* Sat Jun 15 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1.9.0-1
|
||||
- Resolves: #1720654 - rebase to v1.9.0
|
||||
|
||||
* Fri Jun 14 2019 Lokesh Mandvekar <lsm5@redhat.com> - 1.8.3-1
|
||||
- Resolves: #1720654 - rebase to v1.8.3
|
||||
|
||||
* Tue Apr 9 2019 Eduardo Santiago <santiago@redhat.com> - 1.8-0.git021d607
|
||||
- package system tests
|
||||
|
||||
* Tue Dec 18 2018 Frantisek Kluknavsky <fkluknav@redhat.com> - 1.5-3.gite94b4f9
|
||||
- re-enable debuginfo
|
||||
@ -619,7 +870,7 @@ make DESTDIR=%{buildroot} PREFIX=%{_prefix} install install.completions
|
||||
- Bump for inclusion of OCI 1.0 Runtime and Image Spec
|
||||
|
||||
* Tue Jul 18 2017 Dan Walsh <dwalsh@redhat.com> 0.2.0-1.gitac2aad6
|
||||
- buildah run: Add support for -- ending options parsing
|
||||
- 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
|
||||
|
Loading…
Reference in New Issue
Block a user