Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to Libuv 1.43.0 #578

Merged
merged 1 commit into from
Jan 5, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .ci/bindcov.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ skipped+=(
uv_req_type_name uv_pipe_chmod uv_process_get_pid uv_get_osfhandle
uv_open_osfhandle uv_fs_get_type uv_fs_get_result uv_fs_get_ptr uv_fs_get_path uv_fs_get_statbuf
uv_ip4_addr uv_ip6_addr uv_ip4_name uv_ip6_name uv_inet_ntop uv_inet_pton uv_dlopen uv_dlclose
uv_dlsym uv_dlerror uv_udp_using_recvmmsg uv_fs_get_system_error
uv_dlsym uv_dlerror uv_udp_using_recvmmsg uv_fs_get_system_error uv_ip_name
)

if [[ ! -f deps/libuv/include/uv.h ]] ; then
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ endif()
project (luv C ASM)

set(LUV_VERSION_MAJOR 1)
set(LUV_VERSION_MINOR 42)
set(LUV_VERSION_MINOR 43)
set(LUV_VERSION_PATCH 0)
set(LUV_VERSION ${LUV_VERSION_MAJOR}.${LUV_VERSION_MINOR}.${LUV_VERSION_PATCH})

Expand Down
2 changes: 1 addition & 1 deletion deps/libuv
Submodule libuv updated 60 files
+3 −4 .github/stale.yml
+49 −0 .github/workflows/CI.yml
+14 −5 .github/workflows/sanitizer.yml
+4 −0 .mailmap
+17 −0 AUTHORS
+49 −38 CMakeLists.txt
+90 −1 ChangeLog
+4 −6 Makefile.am
+1 −1 README.md
+1 −1 SUPPORTED_PLATFORMS.md
+1 −1 configure.ac
+1 −1 docs/src/guide/basics.rst
+2 −2 docs/src/index.rst
+5 −1 docs/src/misc.rst
+3 −0 include/uv.h
+2 −4 include/uv/unix.h
+1 −1 include/uv/version.h
+7 −0 include/uv/win.h
+7 −0 src/threadpool.c
+1 −3 src/unix/bsd-proctitle.c
+10 −6 src/unix/darwin.c
+1 −1 src/unix/dl.c
+79 −40 src/unix/fs.c
+2 −3 src/unix/kqueue.c
+96 −5 src/unix/linux-core.c
+5 −0 src/unix/os390-syscalls.c
+1 −0 src/unix/os390-syscalls.h
+54 −37 src/unix/process.c
+3 −7 src/unix/stream.c
+54 −8 src/unix/udp.c
+19 −0 src/uv-common.c
+3 −3 src/win/fs-event.c
+15 −3 src/win/fs.c
+0 −2 src/win/pipe.c
+3 −1 src/win/process.c
+2 −3 src/win/tcp.c
+13 −2 src/win/thread.c
+1 −1 src/win/udp.c
+4 −1 src/win/util.c
+10 −0 src/win/winapi.c
+7 −0 src/win/winapi.h
+0 −1 test/benchmark-list.h
+0 −340 test/dns-server.c
+1 −1 test/task.h
+0 −3 test/test-fs-copyfile.c
+48 −4 test/test-fs-event.c
+19 −19 test/test-fs-open-flags.c
+0 −3 test/test-fs-readdir.c
+1 −7 test/test-fs.c
+65 −0 test/test-ip-name.c
+3 −3 test/test-ip6-addr.c
+11 −3 test/test-list.h
+3 −0 test/test-ping-pong.c
+0 −3 test/test-pipe-connect-error.c
+34 −26 test/test-readable-on-eof.c
+1 −1 test/test-tcp-connect-timeout.c
+6 −0 test/test-thread-equal.c
+13 −3 test/test-tty-escape-sequence-processing.c
+1 −1 test/test-udp-connect.c
+200 −0 test/test-udp-connect6.c