Skip to content

Commit bbb8ae7

Browse files
cjihrigcodebytere
authored andcommittedMar 17, 2020
deps: upgrade to libuv 1.34.1
Notable changes: - uv_fs_copyfile() now supports CIFS share destinations. - isatty() now works on IBMi - TTYs are opened with the O_NOCTTY flag. Fixes: #31170 PR-URL: #31332 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
1 parent 9aa4fcc commit bbb8ae7

Some content is hidden

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

53 files changed

+369
-2204
lines changed
 

‎deps/uv/AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -412,3 +412,4 @@ ZYSzys <zyszys98@gmail.com>
412412
Carl Lei <xecycle@gmail.com>
413413
Stefan Bender <stefan.bender@ntnu.no>
414414
nia <nia@NetBSD.org>
415+
virtualyw <virtualyw@gmail.com>

‎deps/uv/ChangeLog

+67
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,70 @@
1+
2020.01.13, Version 1.34.1 (Stable), 8aa5636ec72990bb2856f81e14c95813024a5c2b
2+
3+
Changes since version 1.34.0:
4+
5+
* unix: fix -Wstrict-aliasing compiler warning (Ben Noordhuis)
6+
7+
* unix: cache address of dlsym("mkostemp") (Ben Noordhuis)
8+
9+
* build: remove -pedantic from compiler flags (Ben Noordhuis)
10+
11+
* Revert "darwin: assume pthread_setname_np() is available" (Ben Noordhuis)
12+
13+
* Revert "darwin: speed up uv_set_process_title()" (Ben Noordhuis)
14+
15+
* darwin: assume pthread_setname_np() is available (Ben Noordhuis)
16+
17+
* ibmi: fix the false isatty() issue on IBMi (Xu Meng)
18+
19+
* test: fix test failure under NetBSD and OpenBSD (David Carlier)
20+
21+
* test: skip some test cases on IBMi (Xu Meng)
22+
23+
* test: skip uv_(get|set)_process_title on IBMi (Xu Meng)
24+
25+
* doc: remove binaries for Windows from README (Richard Lau)
26+
27+
* unix: fix -Wunused-but-set-variable warning (George Zhao)
28+
29+
* unix: pass sysctl size arg using ARRAY_SIZE macro (David Carlier)
30+
31+
* test: disallow running the test suite as root (cjihrig)
32+
33+
* unix: suppress -Waddress-of-packed-member warning (Ben Noordhuis)
34+
35+
* misc: make more tags "not-stale" (Jameson Nash)
36+
37+
* test: fix pthread memory leak (Trevor Norris)
38+
39+
* docs: delete socks5-proxy sample (Jameson Nash)
40+
41+
* ibmi: fix the CMSG length issue (Xu Meng)
42+
43+
* docs: fix formatting (Jameson Nash)
44+
45+
* unix: squelch fchmod() EPERM on CIFS share (Ben Noordhuis)
46+
47+
* docs: fix linkcheck (Jameson Nash)
48+
49+
* docs: switch from linux.die.net to man7.org (Jameson Nash)
50+
51+
* win: remove abort when non-IFS LSP detection fails (virtualyw)
52+
53+
* docs: clarify that uv_pipe_t is a pipe (Jameson Nash)
54+
55+
* win,tty: avoid regressions in utf-8 handling (Jameson Nash)
56+
57+
* win: remove bad assert in uv_loop_close (Jameson Nash)
58+
59+
* test: fix -fno-common build errors (Ben Noordhuis)
60+
61+
* build: turn on -fno-common to catch regressions (Ben Noordhuis)
62+
63+
* test: fix fs birth time test failure (Ben Noordhuis)
64+
65+
* tty,unix: avoid affecting controlling TTY (Jameson Nash)
66+
67+
168
2019.12.05, Version 1.34.0 (Stable), 15ae750151ac9341e5945eb38f8982d59fb99201
269

370
Changes since version 1.33.1:

0 commit comments

Comments
 (0)
Please sign in to comment.