Skip to content

Commit 6a25a76

Browse files
deps: update libuv to 1.52.0
1 parent 9cc7fcc commit 6a25a76

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+2504
-1328
lines changed

deps/uv/.mailmap

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,10 @@ Jesse Gorzinski <jgorzinski@gmail.com>
2727
Jesse Gorzinski <jgorzinski@gmail.com> <jgorzins@us.ibm.com>
2828
Juan José Arboleda <soyjuanarbol@gmail.com>
2929
Justin Venus <justin.venus@gmail.com> <justin.venus@orbitz.com>
30+
Keno Fischer <kenof@stanford.edu> <keno@juliahub.com>
3031
Keno Fischer <kenof@stanford.edu> <kfischer+github@college.harvard.edu>
3132
Keno Fischer <kenof@stanford.edu> <kfischer@college.harvard.edu>
33+
Lawrence Stubbs <technoexpressnet@gmail.com> <lstubbs@techno.express>
3234
Leith Bade <leith@leithalweapon.geek.nz> <leith@mapbox.com>
3335
Leonard Hecker <leonard.hecker91@gmail.com> <leonard@hecker.io>
3436
Lewis Russell <me@lewisr.dev> <lewis6991@gmail.com>
@@ -42,7 +44,8 @@ Nick Logan <ugexe@cpan.org> <nlogan@gmail.com>
4244
Olivier Valentin <ovalenti@redhat.com> <valentio@free.fr>
4345
Rasmus Christian Pedersen <zerhacken@yahoo.com>
4446
Rasmus Christian Pedersen <zerhacken@yahoo.com> <ruysch@outlook.com>
45-
Richard Lau <rlau@redhat.com> <riclau@uk.ibm.com>
47+
Richard Lau <richard.lau@ibm.com> <riclau@uk.ibm.com>
48+
Richard Lau <richard.lau@ibm.com> <rlau@redhat.com>
4649
Robert Mustacchi <rm@joyent.com> <rm@fingolfin.org>
4750
Ryan Dahl <ryan@joyent.com> <ry@tinyclouds.org>
4851
Ryan Emery <seebees@gmail.com>

deps/uv/AUTHORS

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ guworks <ground.up.works@gmail.com>
210210
RossBencina <rossb@audiomulch.com>
211211
Roger A. Light <roger@atchoo.org>
212212
chenttuuvv <chenttuuvv@yahoo.com>
213-
Richard Lau <rlau@redhat.com>
213+
Richard Lau <richard.lau@ibm.com>
214214
ronkorving <rkorving@wizcorp.jp>
215215
Corbin Simpson <MostAwesomeDude@gmail.com>
216216
Zachary Hamm <zsh@imipolexg.org>
@@ -604,3 +604,30 @@ mugitya03 <mugitya233@outlook.com>
604604
Itay Bookstein <ibookstein@gmail.com>
605605
crupest <crupest@outlook.com>
606606
AE1020 <68134252+AE1020@users.noreply.github.com>
607+
dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
608+
jhnh204 <51738134+jhnh204@users.noreply.github.com>
609+
chemodax <53048645+chemodax@users.noreply.github.com>
610+
Deep C <dchordia@blackberry.com>
611+
Luca Saccarola <96259932+saccarosium@users.noreply.github.com>
612+
wisemanny <118970226+wisemanny@users.noreply.github.com>
613+
Sean Dewar <6256228+seandewar@users.noreply.github.com>
614+
Lawrence Stubbs <technoexpressnet@gmail.com>
615+
Emily <hello@emily.moe>
616+
Anton Kirilov <anton.kirilov@arm.com>
617+
Savas Sahin <savashn@proton.me>
618+
m0cg <mane9999@gmail.com>
619+
moe li <creeperblin@outlook.com>
620+
green-br <thomas.green@bristol.ac.uk>
621+
Christian Guinard <28689358+christiangnrd@users.noreply.github.com>
622+
Gang Zhuo <gang.zhuo@gmail.com>
623+
Ayush Kumar <ayushkumarkvs160@gmail.com>
624+
Ambuj Vashistha <ambujva123@gmail.com>
625+
Bart Louwers <bart.louwers@gmail.com>
626+
Kartik Puri <84309847+BOXER78@users.noreply.github.com>
627+
Oblivionsage <126214490+Oblivionsage@users.noreply.github.com>
628+
Cody Tapscott <84105208+topolarity@users.noreply.github.com>
629+
tobil4sk <tobil4sk@outlook.com>
630+
Han Gao <rabenda.cn@gmail.com>
631+
mischief <mischief@offblast.org>
632+
StefanStojanovic <stefan.stojanovic@janeasystems.com>
633+
Przemysław Sobala <przemyslaw.sobala@grupawp.pl>

deps/uv/CMakeLists.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -700,6 +700,7 @@ if(LIBUV_BUILD_TESTS)
700700
test/test-udp-send-immediate.c
701701
test/test-udp-sendmmsg-error.c
702702
test/test-udp-send-unreachable.c
703+
test/test-udp-recvmsg-unreachable-error.c
703704
test/test-udp-try-send.c
704705
test/test-udp-recv-in-a-row.c
705706
test/test-udp-reuseport.c
@@ -747,6 +748,14 @@ if(LIBUV_BUILD_TESTS)
747748
"$<TARGET_FILE:uv_run_tests_a>"
748749
"$<TARGET_FILE_DIR:uv_run_tests_a>/uv_run_tests_a_no_ext")
749750
endif()
751+
752+
if(QNX)
753+
install(TARGETS uv_run_tests uv_run_tests_a uv_run_benchmarks_a
754+
DESTINATION ${CMAKE_INSTALL_BINDIR}/libuv_tests)
755+
756+
install(DIRECTORY test/fixtures
757+
DESTINATION ${CMAKE_INSTALL_BINDIR}/libuv_tests)
758+
endif()
750759
endif()
751760

752761
# Now for some gibbering horrors from beyond the stars...
@@ -774,6 +783,11 @@ install(TARGETS uv_a EXPORT libuvConfig
774783
install(EXPORT libuvConfig
775784
DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/libuv
776785
NAMESPACE libuv::)
786+
write_basic_package_version_file(libuvConfigVersion.cmake
787+
VERSION ${PACKAGE_VERSION}
788+
COMPATIBILITY SameMajorVersion)
789+
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/libuvConfigVersion.cmake
790+
DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/libuv)
777791

778792
if(LIBUV_BUILD_SHARED)
779793
# The version in the filename is mirroring the behaviour of autotools.

deps/uv/ChangeLog

Lines changed: 238 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,241 @@
1-
2025.04.25, Version 1.51.0 (Stable)
1+
2026.02.11, Version 1.52.0 (Stable)
2+
3+
Changes since version 1.51.0:
4+
5+
* src: remove unused include of <assert.h> in timer.c (Juan José Arboleda)
6+
7+
* test: skip `udp_multicast_join` if not system-wide available (Juan José
8+
Arboleda)
9+
10+
* test: remove unused include of <limits.h> in runner.h (Juan José Arboleda)
11+
12+
* doc: don't mention UV_LOOP_ENABLE_IO_URING_SQPOLL (Poul T Lomholt)
13+
14+
* unix: fix uv_thread_{get,set}priority error codes (Ryan Liptak)
15+
16+
* build: dedup sanitizer jobs using matrix strategy (Juan José Arboleda)
17+
18+
* doc: update ncurses link (Saúl Ibarra Corretgé)
19+
20+
* tcp: support customizing TCP_KEEPINTVL and TCP_KEEPCNT (Andy Pan)
21+
22+
* linux: fix -Wformat-truncation warning (Ben Noordhuis)
23+
24+
* src: fix nullptr dereference in uv__print_handles (jhnh204)
25+
26+
* build: make automake link libm on bsd-likes (Juan José Arboleda)
27+
28+
* include: remove unused macro undefs from uv.h (Juan José Arboleda)
29+
30+
* win: handle empty string in uv_get_process_title (Ben Noordhuis)
31+
32+
* win: use WSA_FLAG_NO_HANDLE_INHERIT in WSASocketW (chemodax)
33+
34+
* unix: handle possible `ENOMEM` in `uv__tcp_listen` (Juan José Arboleda)
35+
36+
* win: replace GetModuleHandleA with GetModuleHandleW (chemodax)
37+
38+
* qnx: add qnx 8 support (Deep C)
39+
40+
* mailmap: update email address for Richard Lau (Richard Lau)
41+
42+
* win: remove obsolete comment (Ben Noordhuis)
43+
44+
* unix: handle possible `ENOMEM` in `uv__pipe_listen` (Juan José Arboleda)
45+
46+
* unix: deduplicate uv_free_interface_addresses (Juan José Arboleda)
47+
48+
* test: pass correct string type to GetModuleHandleW (Ben Noordhuis)
49+
50+
* win: remove unnecessary inlining from fs.c (Ben Noordhuis)
51+
52+
* win: move uv__process_reqs to core.c (Ben Noordhuis)
53+
54+
* win: remove unnecessary inlining from header file (Ben Noordhuis)
55+
56+
* test: skip slow process title test on asan+macos (Ben Noordhuis)
57+
58+
* win: dissolve atomicops-inl.h (Ben Noordhuis)
59+
60+
* win: move uv__process_endgames to core.c (Ben Noordhuis)
61+
62+
* win: move uv__insert_pending_req to core.c (Ben Noordhuis)
63+
64+
* win: replace inline asm with compiler intrinsic (Ben Noordhuis)
65+
66+
* win,pipe: minimal fix to uv_read_cb->uv_read_start recursion bug (Jameson
67+
Nash)
68+
69+
* doc: make requirements work with newer python (Luca Saccarola)
70+
71+
* win: fix -Wcast-function-type warnings in winapi.c (Ben Noordhuis)
72+
73+
* win: fix -Wsign-compare warnings (Ben Noordhuis)
74+
75+
* test: simplify ASSERT_OK macro for static analysis (Jameson Nash)
76+
77+
* win: add arm64 machine type to uv_os_uname (wisemanny)
78+
79+
* win: use ProcessPrng (Ben Noordhuis)
80+
81+
* win: work around wine bug in uv_fs_{unlink,rmdir} (Keno Fischer)
82+
83+
* doc: fix return value for uv_pipe_connect2 (Sean Dewar)
84+
85+
* unix: fix udp sendmmsg fallback path (Ben Noordhuis)
86+
87+
* doc: add binding `C framework` uv_coroutine to LINKS.md (Lawrence Stubbs)
88+
89+
* linux: handle cgroups cpu.max with limit < period (Ben Noordhuis)
90+
91+
* doc: update link, repo name change to c-asio (Lawrence Stubbs)
92+
93+
* build(deps): bump actions/download-artifact from 4 to 5 (dependabot[bot])
94+
95+
* doc: remove nodeuv from LINKS.md (Ben Noordhuis)
96+
97+
* test: use relative paths for pipes and unix sockets (Emily)
98+
99+
* build(deps): bump actions/checkout from 4 to 5 (dependabot[bot])
100+
101+
* unix: improve uv__cpu_relax() on arm (Anton Kirilov)
102+
103+
* win: fix compiler warnings (Savas Sahin)
104+
105+
* unix: replace uv__io_t callback pointer with enum (Ben Noordhuis)
106+
107+
* test,win: fix -Wunused-function warnings (Ben Noordhuis)
108+
109+
* test,win: fix -Wcast-function-type warnings (Ben Noordhuis)
110+
111+
* test,win: fix -Wattributes warnings (Ben Noordhuis)
112+
113+
* win: shrink fd hash table from 2592k to 162k (Ben Noordhuis)
114+
115+
* unix: fix build on the bsds (Ben Noordhuis)
116+
117+
* netbsd: fix thread affinity compilation error (Santiago Gimeno)
118+
119+
* unix: remove UV__SIGNAL_EVENT dispatch from uv__io_cb (Juan José Arboleda)
120+
121+
* build: add -Werror when testing -Wflags (Jameson Nash)
122+
123+
* win: fix path size calculation (Ben Noordhuis)
124+
125+
* doc: correct uv_cancel return value (m0cg)
126+
127+
* unix,win: look up UV_THREADPOOL_SIZE with uv_os_getenv (moe li)
128+
129+
* build(deps): bump actions/setup-python from 5 to 6 (dependabot[bot])
130+
131+
* unix: fix uv__signal_loop_cleanup call in init (Jameson Nash)
132+
133+
* aix: fix nullptr check in uv__skip_lines (Ben Noordhuis)
134+
135+
* unix: add neoverse-v2 cpu identifier (green-br)
136+
137+
* test: make `thread_priority` robust against system default nice levels
138+
139+
(Juan José Arboleda)
140+
141+
* unix,win: implement `uv_udp_open_ex` (Juan José Arboleda)
142+
143+
* aix: add stub function to satisfy linker (Ben Noordhuis)
144+
145+
* linux: add MSG_ERRQUEUE ipv4/ipv6 udp support (Juan José Arboleda)
146+
147+
* ibmi: add stub function to satisfy linker (Ben Noordhuis)
148+
149+
* darwin: better heuristic for available memory (Christian Guinard)
150+
151+
* build(deps): bump actions/download-artifact from 5 to 6 (dependabot[bot])
152+
153+
* build(deps): bump actions/upload-artifact from 4 to 5 (dependabot[bot])
154+
155+
* unix: fix use of uninitialized variable (Ben Noordhuis)
156+
157+
* doc: fix documentation for uv_utf16_to_wtf8() function (Gang Zhuo)
158+
159+
* win: rename minimal_windows10_version1709() for libuv's convention (Andy Pan)
160+
161+
* build(deps): bump actions/checkout from 5 to 6 (dependabot[bot])
162+
163+
* win: fix race in uv_fs_event_start() (Ben Noordhuis)
164+
165+
* unix: support nanosecond resolution in uv__fs_to_timespec (Ayush Kumar)
166+
167+
* win: handle sshfs-win quirk in uv_fs_readdir() (Ben Noordhuis)
168+
169+
* unix,win: fix leak in uv_os_environ error path (Ambuj Vashistha)
170+
171+
* test: add macros to run fs tests with io_uring (Santiago Gimeno)
172+
173+
* linux: fix uv_fs_ftruncate io_uring implementation (Santiago Gimeno)
174+
175+
* Update OS X reference to macOS in README (Bart Louwers)
176+
177+
* ci: update macos runner images (Ben Noordhuis)
178+
179+
* doc: add example usage for uv_sleep (Kartik Puri)
180+
181+
* ci: add macos-15-intel to matrix (Ben Noordhuis)
182+
183+
* win: Optimize file/directory delete. (chemodax)
184+
185+
* build(deps): bump actions/download-artifact from 6 to 7 (dependabot[bot])
186+
187+
* build(deps): bump actions/upload-artifact from 5 to 6 (dependabot[bot])
188+
189+
* test: run more fs tests using io_uring too (Santiago Gimeno)
190+
191+
* doc: add handle and request usage guidelines (Ben Noordhuis)
192+
193+
* unix: remove handle from queue on uv_spawn() error (Oblivionsage)
194+
195+
* doc: remove hp-ux from supported platforms list (Ben Noordhuis)
196+
197+
* unix,win: add f_frsize field to uv_statfs_t (Ben Noordhuis)
198+
199+
* test: fix -Wuninitialized-const-pointer warning (Ben Noordhuis)
200+
201+
* test: fix -Wstringop-overread warning (Ben Noordhuis)
202+
203+
* test: make pty test work under asan (Ben Noordhuis)
204+
205+
* win: readlink support for IO_REPARSE_TAG_LX_SYMLINK (Cody Tapscott)
206+
207+
* unix: fix partial read handling after POLLHUP (Ben Noordhuis)
208+
209+
* unix: factor out common i/o poll code (Ben Noordhuis)
210+
211+
* test: disable udp_reuseport test under qemu (Ben Noordhuis)
212+
213+
* test: disable tcp_reuseport test under qemu (Ben Noordhuis)
214+
215+
* unix,win: check nbufs argument is reasonable (Ben Noordhuis)
216+
217+
* win: refactor to support large statfs blocks (Santiago Gimeno)
218+
219+
* unix: remove sunpro references (Ben Noordhuis)
220+
221+
* idna: fix assert in wtf8_to_utf16 conversion (tobil4sk)
222+
223+
* aix,ibmi: fix test suite build breakage (Ben Noordhuis)
224+
225+
* unix: implement cpu_relax() for riscv64 (Han Gao)
226+
227+
* doc: add setuid warning to uv_exepath (Ben Noordhuis)
228+
229+
* unix: make OpenBSD uv_exepath work (mischief)
230+
231+
* win: fix uv_get_process_title (StefanStojanovic)
232+
233+
* unix,udp: fix -Wgnu-folding-constant warning (Saúl Ibarra Corretgé)
234+
235+
* cmake: add libuvConfigVersion.cmake file (Przemysław Sobala)
236+
237+
238+
2025.04.25, Version 1.51.0 (Stable), 5152db2cbfeb5582e9c27c5ea1dba2cd9e10759b
2239

3240
Changes since version 1.50.0:
4241

deps/uv/LINKS.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
* [node9](https://github.com/jvburnes/node9): A portable, hybrid, distributed OS based on Inferno, LuaJIT and Libuv
3131
* [node.js](http://www.nodejs.org/): Javascript (using Google's V8) + libuv
3232
* [node.native](https://github.com/d5/node.native): node.js-like API for C++11
33-
* [nodeuv](https://github.com/nodeuv): An organization with several c++ wrappers for libs which are used in node.js.
3433
* [phastlight](https://github.com/phastlight/phastlight): Command line tool and web server written in PHP 5.3+ inspired by Node.js
3534
* [pilight](https://www.pilight.org/): home automation ("domotica")
3635
* [pixie](https://github.com/pixie-lang/pixie): clojure-inspired lisp with a tracing JIT
@@ -109,4 +108,6 @@
109108
* Haskell
110109
* [Z.Haskell](https://z.haskell.world)
111110
* C3
112-
* [libuv.c3l](https://github.com/velikoss/libuv.c3l)
111+
* [libuv.c3l](https://github.com/velikoss/libuv.c3l)
112+
* C
113+
* [c-asio](https://github.com/zelang-dev/c-asio) A memory safe focus *C framework*, combining [c-raii](https://zelang-dev.github.io/c-raii), `libuv`, **coroutine** and other concurrency primitives.

0 commit comments

Comments
 (0)