Skip to content

Commit c59370a

Browse files
cjihrigMylesBorins
authored andcommitted
deps: upgrade libuv to 1.10.1
Fixes: #9542 Fixes: #9546 PR-URL: #9647 Reviewed-By: Imran Iqbal <[email protected]> Reviewed-By: Santiago Gimeno <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: Myles Borins <[email protected]> Reviewed-By: Johan Bergström <[email protected]>
1 parent 3585ffa commit c59370a

File tree

14 files changed

+37
-76
lines changed

14 files changed

+37
-76
lines changed

deps/uv/AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -277,3 +277,4 @@ Alex Hultman <[email protected]>
277277
Brad King <[email protected]>
278278
Philippe Laferriere <[email protected]>
279279
Will Speak <[email protected]>
280+
Hitesh Kanwathirtha <[email protected]>

deps/uv/ChangeLog

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,25 @@
1-
2016.10.25, Version 1.10.0 (Stable)
1+
2016.11.17, Version 1.10.1 (Stable), 2e49e332bdede6db7cf17fa784a902e8386d5d86
2+
3+
Changes since version 1.10.0:
4+
5+
* Now working on version 1.10.1 (cjihrig)
6+
7+
* win: fix anonymous union syntax (Brad King)
8+
9+
* unix: use uv__is_closing everywhere (Santiago Gimeno)
10+
11+
* win: add missing break statement (cjihrig)
12+
13+
* doc: fix wrong man page link for uv_fs_lstat() (Michele Caini)
14+
15+
* win, tty: handle empty buffer in uv_tty_write_bufs (Hitesh Kanwathirtha)
16+
17+
* doc: add cjihrig alternative GPG ID (cjihrig)
18+
19+
* Revert "win,tty: add support for ANSI codes in win10 v1511" (Ben Noordhuis)
20+
21+
22+
2016.10.25, Version 1.10.0 (Stable), c8a373c729b4c9392e0e14fc53cd6b67b3051ab9
223

324
Changes since version 1.9.1:
425

deps/uv/MAINTAINERS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ libuv is currently managed by the following individuals:
88
* **Bert Belder** ([@piscisaureus](https://github.com/piscisaureus))
99
* **Colin Ihrig** ([@cjihrig](https://github.com/cjihrig))
1010
- GPG key: 94AE 3667 5C46 4D64 BAFA 68DD 7434 390B DBE9 B9C5 (pubkey-cjihrig)
11+
- GPG key: 5735 3E0D BDAA A7E8 39B6 6A1A FF47 D5E4 AD8B 4FDC (pubkey-cjihrig-kb)
1112
* **Fedor Indutny** ([@indutny](https://github.com/indutny))
1213
- GPG key: AF2E EA41 EC34 47BF DD86 FED9 D706 3CCE 19B7 E890 (pubkey-indutny)
1314
* **Imran Iqbal** ([@iWuzHere](https://github.com/iWuzHere))

deps/uv/appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: v1.10.0.build{build}
1+
version: v1.10.1.build{build}
22

33
install:
44
- cinst -y nsis

deps/uv/configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1414

1515
AC_PREREQ(2.57)
16-
AC_INIT([libuv], [1.10.0], [https://github.com/libuv/libuv/issues])
16+
AC_INIT([libuv], [1.10.1], [https://github.com/libuv/libuv/issues])
1717
AC_CONFIG_MACRO_DIR([m4])
1818
m4_include([m4/libuv-extra-automake-flags.m4])
1919
m4_include([m4/as_case.m4])

deps/uv/docs/src/fs.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ API
223223
.. c:function:: int uv_fs_fstat(uv_loop_t* loop, uv_fs_t* req, uv_file file, uv_fs_cb cb)
224224
.. c:function:: int uv_fs_lstat(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_fs_cb cb)
225225
226-
Equivalent to :man:`stat(2)`, :man:`fstat(2)` and :man:`fstat(2)` respectively.
226+
Equivalent to :man:`stat(2)`, :man:`fstat(2)` and :man:`lstat(2)` respectively.
227227
228228
.. c:function:: int uv_fs_rename(uv_loop_t* loop, uv_fs_t* req, const char* path, const char* new_path, uv_fs_cb cb)
229229

deps/uv/include/uv-version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
#define UV_VERSION_MAJOR 1
3434
#define UV_VERSION_MINOR 10
35-
#define UV_VERSION_PATCH 0
35+
#define UV_VERSION_PATCH 1
3636
#define UV_VERSION_IS_RELEASE 1
3737
#define UV_VERSION_SUFFIX ""
3838

deps/uv/src/unix/core.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ uint64_t uv_hrtime(void) {
9898

9999

100100
void uv_close(uv_handle_t* handle, uv_close_cb close_cb) {
101-
assert(!(handle->flags & (UV_CLOSING | UV_CLOSED)));
101+
assert(!uv__is_closing(handle));
102102

103103
handle->flags |= UV_CLOSING;
104104
handle->close_cb = close_cb;

deps/uv/src/unix/poll.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ static void uv__poll_stop(uv_poll_t* handle) {
9292

9393

9494
int uv_poll_stop(uv_poll_t* handle) {
95-
assert(!(handle->flags & (UV_CLOSING | UV_CLOSED)));
95+
assert(!uv__is_closing(handle));
9696
uv__poll_stop(handle);
9797
return 0;
9898
}
@@ -102,7 +102,7 @@ int uv_poll_start(uv_poll_t* handle, int pevents, uv_poll_cb poll_cb) {
102102
int events;
103103

104104
assert((pevents & ~(UV_READABLE | UV_WRITABLE | UV_DISCONNECT)) == 0);
105-
assert(!(handle->flags & (UV_CLOSING | UV_CLOSED)));
105+
assert(!uv__is_closing(handle));
106106

107107
uv__poll_stop(handle);
108108

deps/uv/src/unix/signal.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ int uv_signal_start(uv_signal_t* handle, uv_signal_cb signal_cb, int signum) {
290290
sigset_t saved_sigmask;
291291
int err;
292292

293-
assert(!(handle->flags & (UV_CLOSING | UV_CLOSED)));
293+
assert(!uv__is_closing(handle));
294294

295295
/* If the user supplies signum == 0, then return an error already. If the
296296
* signum is otherwise invalid then uv__signal_register will find out
@@ -434,7 +434,7 @@ static int uv__signal_compare(uv_signal_t* w1, uv_signal_t* w2) {
434434

435435

436436
int uv_signal_stop(uv_signal_t* handle) {
437-
assert(!(handle->flags & (UV_CLOSING | UV_CLOSED)));
437+
assert(!uv__is_closing(handle));
438438
uv__signal_stop(handle);
439439
return 0;
440440
}

0 commit comments

Comments
 (0)