Skip to content
This repository was archived by the owner on May 4, 2018. It is now read-only.

Commit ffe24f9

Browse files
committed
2014.07.32, Version 0.11.27 (Unstable)
Changes since version 0.11.26: * unix, windows: use the same threadpool implementation (Saúl Ibarra Corretgé) * unix: use struct sockaddr_storage for target UDP addr (Saúl Ibarra Corretgé) * doc: add documentation to uv_udp_start_recv (Andrius Bentkus) * common: use common uv__count_bufs code (Andrius Bentkus) * unix, win: add send_queue_size and send_queue_count to uv_udp_t (Andrius Bentkus) * unix, win: add uv_udp_try_send (Andrius Bentkus) * unix: return UV_EAGAIN if uv_try_write cannot write any data (Saúl Ibarra Corretgé) * windows: fix compatibility with cygwin pipes (Jameson Nash) * windows: count queued bytes even if request completed immediately (Saúl Ibarra Corretgé) * windows: disable CRT debug handler on MinGW32 (Saúl Ibarra Corretgé) * windows: map ERROR_INVALID_DRIVE to UV_ENOENT (Saúl Ibarra Corretgé) * unix: try to write immediately in uv_udp_send (Saúl Ibarra Corretgé) * unix: remove incorrect assert (Saúl Ibarra Corretgé) * openbsd: avoid requiring privileges for uv_resident_set_memory (Aaron Bieber) * unix: guarantee write queue cb execution order in streams (Andrius Bentkus) * img: add logo files (Saúl Ibarra Corretgé) * aix: improve AIX compatibility (Andrew Low) * windows: return bind error immediately when implicitly binding (Saúl Ibarra Corretgé) * windows: don't use atexit for cleaning up the threadpool (Saúl Ibarra Corretgé) * windows: destroy work queue elements when colsing a loop (Saúl Ibarra Corretgé) * unix, windows: add uv_fs_mkdtemp (Pavel Platto) * build: handle platforms without multiprocessing.synchronize (Saúl Ibarra Corretgé) * windows: change GENERIC_ALL to GENERIC_WRITE in fs__create_junction (Tony Kelman) * windows: relay TCP bind errors via ipc (Alexis Campailla)
1 parent 6d3a051 commit ffe24f9

File tree

3 files changed

+71
-0
lines changed

3 files changed

+71
-0
lines changed

.mailmap

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
1+
12
23
34
45
Bert Belder <[email protected]> <user@ChrUbuntu.(none)>
56
67
Brian White <[email protected]>
78
9+
Caleb James DeLisle <[email protected]> <[email protected]>
810
Christoph Iserlohn <[email protected]>
911
1012
Frank Denis <[email protected]>
@@ -15,6 +17,7 @@ Keno Fischer <[email protected]> <[email protected]>
1517
1618
1719
Rasmus Christian Pedersen <[email protected]>
20+
Rasmus Christian Pedersen <[email protected]>
1821
Rasmus Christian Pedersen <[email protected]> <[email protected]>
1922
2023

AUTHORS

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,3 +146,10 @@ HungMingWu <[email protected]>
146146
Jay Satiro <[email protected]>
147147
Leith Bade <[email protected]>
148148
Peter Atashian <[email protected]>
149+
Tim Cooper <[email protected]>
150+
Caleb James DeLisle <[email protected]>
151+
Jameson Nash <[email protected]>
152+
Graham Lee <[email protected]>
153+
Andrew Low <[email protected]>
154+
Pavel Platto <[email protected]>
155+
Tony Kelman <[email protected]>

ChangeLog

Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,64 @@
1+
2014.07.32, Version 0.11.27 (Unstable)
2+
3+
Changes since version 0.11.26:
4+
5+
* unix, windows: use the same threadpool implementation (Saúl Ibarra Corretgé)
6+
7+
* unix: use struct sockaddr_storage for target UDP addr (Saúl Ibarra Corretgé)
8+
9+
* doc: add documentation to uv_udp_start_recv (Andrius Bentkus)
10+
11+
* common: use common uv__count_bufs code (Andrius Bentkus)
12+
13+
* unix, win: add send_queue_size and send_queue_count to uv_udp_t (Andrius
14+
Bentkus)
15+
16+
* unix, win: add uv_udp_try_send (Andrius Bentkus)
17+
18+
* unix: return UV_EAGAIN if uv_try_write cannot write any data (Saúl Ibarra
19+
Corretgé)
20+
21+
* windows: fix compatibility with cygwin pipes (Jameson Nash)
22+
23+
* windows: count queued bytes even if request completed immediately (Saúl
24+
Ibarra Corretgé)
25+
26+
* windows: disable CRT debug handler on MinGW32 (Saúl Ibarra Corretgé)
27+
28+
* windows: map ERROR_INVALID_DRIVE to UV_ENOENT (Saúl Ibarra Corretgé)
29+
30+
* unix: try to write immediately in uv_udp_send (Saúl Ibarra Corretgé)
31+
32+
* unix: remove incorrect assert (Saúl Ibarra Corretgé)
33+
34+
* openbsd: avoid requiring privileges for uv_resident_set_memory (Aaron Bieber)
35+
36+
* unix: guarantee write queue cb execution order in streams (Andrius Bentkus)
37+
38+
* img: add logo files (Saúl Ibarra Corretgé)
39+
40+
* aix: improve AIX compatibility (Andrew Low)
41+
42+
* windows: return bind error immediately when implicitly binding (Saúl Ibarra
43+
Corretgé)
44+
45+
* windows: don't use atexit for cleaning up the threadpool (Saúl Ibarra
46+
Corretgé)
47+
48+
* windows: destroy work queue elements when colsing a loop (Saúl Ibarra
49+
Corretgé)
50+
51+
* unix, windows: add uv_fs_mkdtemp (Pavel Platto)
52+
53+
* build: handle platforms without multiprocessing.synchronize (Saúl Ibarra
54+
Corretgé)
55+
56+
* windows: change GENERIC_ALL to GENERIC_WRITE in fs__create_junction (Tony
57+
Kelman)
58+
59+
* windows: relay TCP bind errors via ipc (Alexis Campailla)
60+
61+
162
2014.06.28, Version 0.11.26 (Unstable), 115281a1058c4034d5c5ccedacb667fe3f6327ea
263

364
Changes since version 0.11.25:

0 commit comments

Comments
 (0)