Compare commits
No commits in common. "c9" and "c8" have entirely different histories.
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
|||||||
SOURCES/libuv-v1.42.0.tar.gz
|
SOURCES/libuv-v1.41.1.tar.gz
|
||||||
|
@ -1 +1 @@
|
|||||||
c78715261a1371381c8e2423995829e054daf906 SOURCES/libuv-v1.42.0.tar.gz
|
be3d7de877456af49313208b98f6aafdb6db46c0 SOURCES/libuv-v1.41.1.tar.gz
|
||||||
|
85
SOURCES/0001-Disable-failing-network-tests.patch
Normal file
85
SOURCES/0001-Disable-failing-network-tests.patch
Normal file
@ -0,0 +1,85 @@
|
|||||||
|
From a0ea40baa41a201bd3a4777a66c7eae41d2bcbc3 Mon Sep 17 00:00:00 2001
|
||||||
|
From: rpm-build <rpm-build>
|
||||||
|
Date: Wed, 5 Jun 2024 14:40:40 +0200
|
||||||
|
Subject: [PATCH] Disable failing network tests
|
||||||
|
|
||||||
|
Signed-off-by: rpm-build <rpm-build>
|
||||||
|
---
|
||||||
|
Makefile.am | 4 ----
|
||||||
|
test/test-list.h | 12 ------------
|
||||||
|
2 files changed, 16 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/Makefile.am b/Makefile.am
|
||||||
|
index e8bab49..a190637 100644
|
||||||
|
--- a/Makefile.am
|
||||||
|
+++ b/Makefile.am
|
||||||
|
@@ -250,13 +250,11 @@ test_run_tests_SOURCES = test/blackhole-server.c \
|
||||||
|
test/test-tcp-bind-error.c \
|
||||||
|
test/test-tcp-bind6-error.c \
|
||||||
|
test/test-tcp-close-accept.c \
|
||||||
|
- test/test-tcp-close-while-connecting.c \
|
||||||
|
test/test-tcp-close.c \
|
||||||
|
test/test-tcp-close-reset.c \
|
||||||
|
test/test-tcp-create-socket-early.c \
|
||||||
|
test/test-tcp-connect-error-after-write.c \
|
||||||
|
test/test-tcp-connect-error.c \
|
||||||
|
- test/test-tcp-connect-timeout.c \
|
||||||
|
test/test-tcp-connect6-error.c \
|
||||||
|
test/test-tcp-flags.c \
|
||||||
|
test/test-tcp-open.c \
|
||||||
|
@@ -293,8 +291,6 @@ test_run_tests_SOURCES = test/blackhole-server.c \
|
||||||
|
test/test-udp-mmsg.c \
|
||||||
|
test/test-udp-multicast-interface.c \
|
||||||
|
test/test-udp-multicast-interface6.c \
|
||||||
|
- test/test-udp-multicast-join.c \
|
||||||
|
- test/test-udp-multicast-join6.c \
|
||||||
|
test/test-udp-multicast-ttl.c \
|
||||||
|
test/test-udp-open.c \
|
||||||
|
test/test-udp-options.c \
|
||||||
|
diff --git a/test/test-list.h b/test/test-list.h
|
||||||
|
index 7458840..5545b2e 100644
|
||||||
|
--- a/test/test-list.h
|
||||||
|
+++ b/test/test-list.h
|
||||||
|
@@ -127,10 +127,6 @@ TEST_DECLARE (tcp_bind_invalid_flags)
|
||||||
|
TEST_DECLARE (tcp_bind_writable_flags)
|
||||||
|
TEST_DECLARE (tcp_listen_without_bind)
|
||||||
|
TEST_DECLARE (tcp_connect_error_fault)
|
||||||
|
-TEST_DECLARE (tcp_connect_timeout)
|
||||||
|
-TEST_DECLARE (tcp_local_connect_timeout)
|
||||||
|
-TEST_DECLARE (tcp6_local_connect_timeout)
|
||||||
|
-TEST_DECLARE (tcp_close_while_connecting)
|
||||||
|
TEST_DECLARE (tcp_close)
|
||||||
|
TEST_DECLARE (tcp_close_reset_accepted)
|
||||||
|
TEST_DECLARE (tcp_close_reset_accepted_after_shutdown)
|
||||||
|
@@ -167,8 +163,6 @@ TEST_DECLARE (udp_send_hang_loop)
|
||||||
|
TEST_DECLARE (udp_send_immediate)
|
||||||
|
TEST_DECLARE (udp_send_unreachable)
|
||||||
|
TEST_DECLARE (udp_mmsg)
|
||||||
|
-TEST_DECLARE (udp_multicast_join)
|
||||||
|
-TEST_DECLARE (udp_multicast_join6)
|
||||||
|
TEST_DECLARE (udp_multicast_ttl)
|
||||||
|
TEST_DECLARE (udp_multicast_interface)
|
||||||
|
TEST_DECLARE (udp_multicast_interface6)
|
||||||
|
@@ -692,10 +686,6 @@ TASK_LIST_START
|
||||||
|
TEST_ENTRY (tcp_bind_writable_flags)
|
||||||
|
TEST_ENTRY (tcp_listen_without_bind)
|
||||||
|
TEST_ENTRY (tcp_connect_error_fault)
|
||||||
|
- TEST_ENTRY (tcp_connect_timeout)
|
||||||
|
- TEST_ENTRY (tcp_local_connect_timeout)
|
||||||
|
- TEST_ENTRY (tcp6_local_connect_timeout)
|
||||||
|
- TEST_ENTRY (tcp_close_while_connecting)
|
||||||
|
TEST_ENTRY (tcp_close)
|
||||||
|
TEST_ENTRY (tcp_close_reset_accepted)
|
||||||
|
TEST_ENTRY (tcp_close_reset_accepted_after_shutdown)
|
||||||
|
@@ -744,8 +734,6 @@ TASK_LIST_START
|
||||||
|
TEST_ENTRY (udp_mmsg)
|
||||||
|
TEST_ENTRY (udp_multicast_interface)
|
||||||
|
TEST_ENTRY (udp_multicast_interface6)
|
||||||
|
- TEST_ENTRY (udp_multicast_join)
|
||||||
|
- TEST_ENTRY (udp_multicast_join6)
|
||||||
|
TEST_ENTRY (udp_multicast_ttl)
|
||||||
|
TEST_ENTRY (udp_sendmmsg_error)
|
||||||
|
TEST_ENTRY (udp_try_send)
|
||||||
|
--
|
||||||
|
2.45.1
|
||||||
|
|
@ -1,7 +1,10 @@
|
|||||||
From 4f0158bccc32c0050c6e6692d6eacd08d5f4f624 Mon Sep 17 00:00:00 2001
|
From 2990b945015b067b3dc2ab95dde9587258552295 Mon Sep 17 00:00:00 2001
|
||||||
From: rpm-build <rpm-build>
|
From: rpm-build <rpm-build>
|
||||||
Date: Wed, 5 Jun 2024 13:40:17 +0200
|
Date: Wed, 5 Jun 2024 14:46:35 +0200
|
||||||
Subject: [PATCH] Fix CVE-2024-24806
|
Subject: [PATCH] Fix for CVE-2024-24806
|
||||||
|
MIME-Version: 1.0
|
||||||
|
Content-Type: text/plain; charset=UTF-8
|
||||||
|
Content-Transfer-Encoding: 8bit
|
||||||
|
|
||||||
- fix: always zero-terminate idna output
|
- fix: always zero-terminate idna output
|
||||||
Original-Commit: https://github.com/libuv/libuv/commit/0f2d7e784a256b54b2385043438848047bc2a629
|
Original-Commit: https://github.com/libuv/libuv/commit/0f2d7e784a256b54b2385043438848047bc2a629
|
||||||
@ -13,6 +16,7 @@ Subject: [PATCH] Fix CVE-2024-24806
|
|||||||
Original-Commit: https://github.com/libuv/libuv/commit/e0327e1d508b8207c9150b6e582f0adf26213c39
|
Original-Commit: https://github.com/libuv/libuv/commit/e0327e1d508b8207c9150b6e582f0adf26213c39
|
||||||
|
|
||||||
Signed-off-by: Jan Staněk <jstanek@redhat.com>
|
Signed-off-by: Jan Staněk <jstanek@redhat.com>
|
||||||
|
Signed-off-by: rpm-build <rpm-build>
|
||||||
---
|
---
|
||||||
src/idna.c | 8 ++++++--
|
src/idna.c | 8 ++++++--
|
||||||
test/test-idna.c | 7 ++++++-
|
test/test-idna.c | 7 ++++++-
|
203
SPECS/libuv.spec
203
SPECS/libuv.spec
@ -5,9 +5,9 @@
|
|||||||
|
|
||||||
Name: libuv
|
Name: libuv
|
||||||
Epoch: 1
|
Epoch: 1
|
||||||
Version: 1.42.0
|
Version: 1.41.1
|
||||||
Release: 2%{?dist}
|
Release: 2%{?dist}
|
||||||
Summary: Platform layer for node.js
|
Summary: libuv is a multi-platform support library with a focus on asynchronous I/O.
|
||||||
|
|
||||||
# the licensing breakdown is described in detail in the LICENSE file
|
# the licensing breakdown is described in detail in the LICENSE file
|
||||||
License: MIT and BSD and ISC
|
License: MIT and BSD and ISC
|
||||||
@ -19,13 +19,16 @@ Source3: libuv.abignore
|
|||||||
BuildRequires: autoconf automake libtool
|
BuildRequires: autoconf automake libtool
|
||||||
BuildRequires: gcc make
|
BuildRequires: gcc make
|
||||||
|
|
||||||
|
%if %{with tests}
|
||||||
|
# don't remove network tests
|
||||||
|
%else
|
||||||
# -- Patches -- #
|
# -- Patches -- #
|
||||||
Patch0001: 0001-Fix-CVE-2024-24806.patch
|
Patch0001: 0001-Disable-failing-network-tests.patch
|
||||||
|
%endif
|
||||||
|
Patch0002: 0002-Fix-for-CVE-2024-24806.patch
|
||||||
|
|
||||||
%description
|
%description
|
||||||
libuv is a new platform layer for Node. Its purpose is to abstract IOCP on
|
libuv is a multi-platform support library with a focus on asynchronous I/O
|
||||||
Windows and libev on Unix systems. We intend to eventually contain all platform
|
|
||||||
differences in this library.
|
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Summary: Development libraries for libuv
|
Summary: Development libraries for libuv
|
||||||
@ -58,9 +61,12 @@ mkdir -p %{buildroot}%{_libdir}/libuv/
|
|||||||
install -Dm0644 -t %{buildroot}%{_libdir}/libuv/ %{SOURCE3}
|
install -Dm0644 -t %{buildroot}%{_libdir}/libuv/ %{SOURCE3}
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%if %{with tests}
|
# Tests are currently disabled because some require network access
|
||||||
%make_build check
|
# Working with upstream to split these out
|
||||||
%endif
|
#./run-tests
|
||||||
|
#./run-benchmarks
|
||||||
|
|
||||||
|
make check
|
||||||
|
|
||||||
%ldconfig_scriptlets
|
%ldconfig_scriptlets
|
||||||
|
|
||||||
@ -81,166 +87,49 @@ install -Dm0644 -t %{buildroot}%{_libdir}/libuv/ %{SOURCE3}
|
|||||||
%{_libdir}/%{name}.a
|
%{_libdir}/%{name}.a
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Wed Jun 05 2024 Jan Staněk <jstanek@redhat.com> - 1:1.42.0-2
|
* Wed Jun 05 2024 Jan Staněk <jstanek@redhat.com> - 1:1.41.1-2
|
||||||
- Backport fix for CVE-2024-24806
|
- Backport fixes for CVE-2024-24806
|
||||||
Resolves: RHEL-24791
|
Resolves: RHEL-24790
|
||||||
|
|
||||||
* Fri Sep 17 2021 Zuzana Svetlikova <zsvetlik@redhat.com> - 1:1.42.0-1
|
* Mon Jul 12 2021 Zuzana Svetlikova <zsvetlik@redhat.com> - 1:1.41.1-1
|
||||||
- Rebased, resolves CVE-2021-22918
|
- Rebase to 1.41.1
|
||||||
- Resolves: RHBZ#2005319, RHBZ#1979928
|
- Change description to reflect upstream
|
||||||
|
- Resolves: RHBZ#1979927
|
||||||
|
|
||||||
* Mon Aug 09 2021 Mohan Boddu <mboddu@redhat.com> - 1:1.41.0-3
|
* Mon Jan 25 2021 Zuzana Svetlikova <zsvetlik@redhat.com> - 1:1.40.0-1
|
||||||
- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags
|
- Rebase to 1.40.0
|
||||||
Related: rhbz#1991688
|
- Resolves: RHBZ#1895872
|
||||||
|
- Ship libuv-devel
|
||||||
|
|
||||||
* Fri Apr 16 2021 Mohan Boddu <mboddu@redhat.com> - 1:1.41.0-2
|
* Wed Sep 23 2020 Honza Horak <hhorak@redhat.com> - 1:1.38.0-2
|
||||||
- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937
|
- Fix max path size by not using _POSIX_PATH_MAX
|
||||||
|
Resolves: #1881870
|
||||||
|
Fixes: CVE-2020-8252
|
||||||
|
|
||||||
* Fri Feb 19 2021 Stephen Gallagher <sgallagh@redhat.com> - 1.41.0-1
|
* Tue Jun 09 2020 Zuzana Svetlikova <zsvetlik@redhat.com> - 1:1.38.0-1
|
||||||
- Update to 1.41.0
|
- Update, disable failing tests
|
||||||
|
|
||||||
* Tue Jan 26 2021 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.40.0-2
|
* Thu May 28 2020 Zuzana Svetlikova <zsvetlik@redhat.com> - 1:1.37.0-3
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild
|
- Run tests
|
||||||
|
|
||||||
* Mon Sep 28 2020 Stephen Gallagher <sgallagh@redhat.com> - 1.40.0-1
|
* Mon May 11 2020 Zuzana Svetlikova <zsvetlik@redhat.com> - 1:1.37.0-2
|
||||||
- Update to 1.40.0
|
- Resolves: RHBZ#1817821
|
||||||
|
- bump for build
|
||||||
|
|
||||||
- https://github.com/libuv/libuv/blob/v1.40.0/ChangeLog
|
* Mon May 04 2020 Zuzana Svetlikova <zsvetlik@redhat.com> - 1:1.37.0-1
|
||||||
|
- Resolves: RHBZ#1817821
|
||||||
* Tue Sep 08 2020 Stephen Gallagher <sgallagh@redhat.com> - 1.39.0-1
|
|
||||||
- Update to 1.39.0
|
|
||||||
|
|
||||||
* Fri Jul 31 2020 Stephen Gallagher <sgallagh@redhat.com> - 1.38.1-1
|
|
||||||
- Update to 1.38.1
|
|
||||||
- https://github.com/libuv/libuv/blob/v1.38.1/ChangeLog
|
|
||||||
|
|
||||||
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.38.0-3
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon May 18 2020 Stephen Gallagher <sgallagh@redhat.com> - 1.38.0-2
|
|
||||||
- Fix up gating tests
|
|
||||||
|
|
||||||
* Mon May 18 2020 Stephen Gallagher <sgallagh@redhat.com> - 1.38.0-1
|
|
||||||
- Update to 1.38.0
|
|
||||||
- https://github.com/libuv/libuv/blob/v1.38.0/ChangeLog
|
|
||||||
|
|
||||||
* Mon Apr 20 2020 Stephen Gallagher <sgallagh@redhat.com> - 1.37.0-1
|
|
||||||
- Update to 1.37.0
|
- Update to 1.37.0
|
||||||
- https://github.com/libuv/libuv/blob/v1.37.0/ChangeLog
|
- Add abidiff ignore file
|
||||||
|
|
||||||
* Fri Apr 17 2020 Stephen Gallagher <sgallagh@redhat.com> - 1.36.0-3
|
* Mon Oct 08 2018 Jan Staněk <jstanek@redhat.com> - 1:1.23.1-1
|
||||||
- Actually add gating.yaml
|
- Update to 1.23.1
|
||||||
- Fix build for EPEL 7
|
- Resolves: rhbz#1637000
|
||||||
|
|
||||||
* Fri Apr 17 2020 Stephen Gallagher <sgallagh@redhat.com> - 1.36.0-2
|
* Mon Jul 30 2018 Florian Weimer <fweimer@redhat.com> - 1:1.22.0-2
|
||||||
- Add abidiff ignore file and add ABI gating test
|
- Rebuild with fixed binutils
|
||||||
|
|
||||||
* Thu Apr 16 2020 Stephen Gallagher <sgallagh@redhat.com> - 1.36.0-1
|
* Mon Jul 30 2018 Zuzana Svetlikova ,zsvetlik@redhat.com> - 1.22.0-1
|
||||||
- Update to 1.36.0
|
|
||||||
- https://github.com/libuv/libuv/blob/v1.36.0/ChangeLog
|
|
||||||
|
|
||||||
* Thu Feb 06 2020 Stephen Gallagher <sgallagh@redhat.com> - 1.34.2-1
|
|
||||||
- Update to 1.34.2
|
|
||||||
- https://github.com/libuv/libuv/blob/v1.34.2/ChangeLog
|
|
||||||
|
|
||||||
* Wed Jan 29 2020 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.34.1-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
|
|
||||||
|
|
||||||
* Mon Jan 13 2020 Stephen Gallagher <sgallagh@redhat.com> - 1.34.1-1
|
|
||||||
- Update to 1.34.1
|
|
||||||
- https://github.com/libuv/libuv/blob/v1.34.1/ChangeLog
|
|
||||||
|
|
||||||
* Fri Dec 06 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.34.0-1
|
|
||||||
- Update to 1.34.0
|
|
||||||
- https://github.com/libuv/libuv/blob/v1.34.0/ChangeLog
|
|
||||||
|
|
||||||
* Mon Dec 02 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.33.1-1
|
|
||||||
- Update to 1.33.1
|
|
||||||
- Drop upstreamed patch
|
|
||||||
- https://github.com/libuv/libuv/blob/v1.33.1/ChangeLog
|
|
||||||
|
|
||||||
* Mon Oct 21 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.33.0-2
|
|
||||||
- Add upstream patch to fix aarch64 builds
|
|
||||||
|
|
||||||
* Fri Oct 18 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.33.0-1
|
|
||||||
- Update to 1.33.0
|
|
||||||
- https://github.com/libuv/libuv/blob/v1.33.0/ChangeLog
|
|
||||||
|
|
||||||
* Wed Oct 02 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.32.0-1
|
|
||||||
- Update to 1.32.0
|
|
||||||
- https://github.com/libuv/libuv/blob/v1.32.0/ChangeLog
|
|
||||||
|
|
||||||
* Wed Aug 21 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.31.0-0
|
|
||||||
- Update to 1.31.0
|
|
||||||
- https://github.com/libuv/libuv/blob/v1.31.0/ChangeLog
|
|
||||||
|
|
||||||
* Thu Jul 25 2019 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.30.1-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
|
|
||||||
|
|
||||||
* Tue Jul 02 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.30.1-1
|
|
||||||
- Update to 1.30.1
|
|
||||||
- https://github.com/libuv/libuv/blob/v1.30.1/ChangeLog
|
|
||||||
|
|
||||||
* Thu Jun 27 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.30.0-1
|
|
||||||
- Update to 1.30.0
|
|
||||||
- https://github.com/libuv/libuv/blob/v1.30.0/ChangeLog
|
|
||||||
|
|
||||||
* Tue May 21 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.29.1-1
|
|
||||||
- Update to 1.29.1
|
|
||||||
- https://github.com/libuv/libuv/blob/v1.29.1/ChangeLog
|
|
||||||
|
|
||||||
* Wed May 15 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.29.0-1
|
|
||||||
- Update to 1.29.0
|
|
||||||
- Drop upstreamed patch
|
|
||||||
|
|
||||||
* Fri May 03 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.28.0-2
|
|
||||||
- Fix regression in uv_fs_poll_stop() (BZ 1703935)
|
|
||||||
|
|
||||||
* Tue Apr 23 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.28.0-1
|
|
||||||
- Update to libuv 1.28.0
|
|
||||||
- https://github.com/libuv/libuv/blob/v1.28.0/ChangeLog
|
|
||||||
|
|
||||||
* Mon Mar 18 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.27.0-1
|
|
||||||
- Update to libuv 1.27.0
|
|
||||||
- https://github.com/libuv/libuv/blob/v1.27.0/ChangeLog
|
|
||||||
|
|
||||||
* Wed Feb 13 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.26.0-1
|
|
||||||
- Update to 1.26.0
|
|
||||||
- https://github.com/libuv/libuv/blob/v1.26.0/ChangeLog
|
|
||||||
|
|
||||||
* Fri Jan 18 2019 Stephen Gallagher <sgallagh@redhat.com> - 1.24.1-1
|
|
||||||
- Update to 1.24.1
|
|
||||||
- https://github.com/libuv/libuv/blob/v1.24.1/ChangeLog
|
|
||||||
|
|
||||||
* Thu Oct 11 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.23.2-1
|
|
||||||
- Update to 1.23.2
|
|
||||||
- https://github.com/libuv/libuv/blob/v1.23.2/ChangeLog
|
|
||||||
|
|
||||||
* Tue Sep 11 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.23.0-1
|
|
||||||
- Update to 1.23.0
|
|
||||||
- https://github.com/libuv/libuv/blob/v1.23.0/ChangeLog
|
|
||||||
|
|
||||||
* Mon Jul 16 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.22.0-1
|
|
||||||
- Update to 1.22.0
|
- Update to 1.22.0
|
||||||
- https://github.com/libuv/libuv/blob/v1.22.0/ChangeLog
|
|
||||||
|
|
||||||
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1:1.21.0-2
|
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
|
||||||
|
|
||||||
* Fri Jul 06 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.21.0-1
|
|
||||||
- Update to 1.21.0
|
|
||||||
- https://github.com/libuv/libuv/blob/v1.21.0/ChangeLog
|
|
||||||
|
|
||||||
* Wed May 09 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.20.3-1
|
|
||||||
- Update to 1.20.3
|
|
||||||
- https://github.com/libuv/libuv/blob/v1.20.3/ChangeLog
|
|
||||||
|
|
||||||
* Tue May 01 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.20.2-1
|
|
||||||
- Update to 1.20.2
|
|
||||||
- https://github.com/libuv/libuv/blob/v1.20.2/ChangeLog
|
|
||||||
|
|
||||||
* Tue Apr 03 2018 Igor Gnatenko <ignatenkobrain@fedoraproject.org> - 1:1.20.0-1
|
|
||||||
- Update to 1.20.0
|
|
||||||
|
|
||||||
* Mon Feb 26 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.19.2-1
|
* Mon Feb 26 2018 Stephen Gallagher <sgallagh@redhat.com> - 1.19.2-1
|
||||||
- Update to 1.19.2
|
- Update to 1.19.2
|
||||||
|
Loading…
Reference in New Issue
Block a user