| |
@@ -7,7 +7,7 @@
|
| |
|
| |
# https://github.com/containerd/containerd
|
| |
%global goipath github.com/containerd/containerd
|
| |
- Version: 1.5.8
|
| |
+ Version: 1.5.9
|
| |
|
| |
%gometa
|
| |
|
| |
@@ -26,7 +26,7 @@
|
| |
BUILDING.md README.md RELEASES.md
|
| |
|
| |
Name: %{goname}
|
| |
- Release: 2%{?dist}
|
| |
+ Release: 1%{?dist}
|
| |
Summary: Open and reliable container runtime
|
| |
|
| |
# Upstream license specification: Apache-2.0
|
| |
@@ -168,7 +168,7 @@
|
| |
%gopkg
|
| |
|
| |
%prep
|
| |
- %goprep
|
| |
+ %goprep -k
|
| |
%autopatch -p1
|
| |
# Used only for generation:
|
| |
rm -rf cmd/protoc-gen-gogoctrd
|
| |
@@ -234,6 +234,11 @@
|
| |
%gopkgfiles
|
| |
|
| |
%changelog
|
| |
+ * Mon Jan 31 2022 Maxwell G <gotmax@e.email> - 1.5.9-1
|
| |
+ - Update to 1.5.9. Fixes FTBFS. Closes rhbz#2045277.
|
| |
+ - Mitigates CVE-2021-43816. Closes rhbz#2044434. Closes rhbz#2044436.
|
| |
+ - Temporarily build using vendored dependencies.
|
| |
+
|
| |
* Wed Jan 19 2022 Fedora Release Engineering <releng@fedoraproject.org> - 1.5.8-2
|
| |
- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild
|
| |
|
| |
Does this look okay to you, @eclipseo? I started updating the dependencies in preparation for Containerd 1.6.0, but apparently, the CVE was fixed in this release. As you know, the package was already FTBFS before then. Passing
-k
to%goprep
keeps the bundled deps andgo build
uses them for building instead of the ones in$GOPATH
, but it does not effect the contents or the generatedrequires
of the finalcontainerd-devel
package.