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)
This commit is contained in:
parent
6d3a051eb4
commit
ffe24f9550
3
.mailmap
3
.mailmap
@ -1,3 +1,4 @@
|
||||
Aaron Bieber <qbit@deftly.net> <deftly@gmail.com>
|
||||
Alan Gutierrez <alan@prettyrobots.com> <alan@blogometer.com>
|
||||
Andrius Bentkus <andrius.bentkus@gmail.com> <toxedvirus@gmail.com>
|
||||
Bert Belder <bertbelder@gmail.com> <info@2bs.nl>
|
||||
@ -5,6 +6,7 @@ Bert Belder <bertbelder@gmail.com> <user@ChrUbuntu.(none)>
|
||||
Brandon Philips <brandon.philips@rackspace.com> <brandon@ifup.org>
|
||||
Brian White <mscdex@mscdex.net>
|
||||
Brian White <mscdex@mscdex.net> <mscdex@gmail.com>
|
||||
Caleb James DeLisle <cjd@hyperboria.ca> <cjd@cjdns.fr>
|
||||
Christoph Iserlohn <christoph.iserlohn@innoq.com>
|
||||
Fedor Indutny <fedor.indutny@gmail.com> <fedor@indutny.com>
|
||||
Frank Denis <github@pureftpd.org>
|
||||
@ -15,6 +17,7 @@ Keno Fischer <kenof@stanford.edu> <kfischer@college.harvard.edu>
|
||||
Maciej Małecki <maciej.malecki@notimplemented.org> <me@mmalecki.com>
|
||||
Marc Schlaich <marc.schlaich@googlemail.com> <marc.schlaich@gmail.com>
|
||||
Rasmus Christian Pedersen <ruysch@outlook.com>
|
||||
Rasmus Christian Pedersen <ruysch@outlook.com>
|
||||
Rasmus Christian Pedersen <zerhacken@yahoo.com> <ruysch@outlook.com>
|
||||
Rasmus Pedersen <ruysch@outlook.com> <zerhacken@yahoo.com>
|
||||
Robert Mustacchi <rm@joyent.com> <rm@fingolfin.org>
|
||||
|
||||
7
AUTHORS
7
AUTHORS
@ -146,3 +146,10 @@ HungMingWu <u9089000@gmail.com>
|
||||
Jay Satiro <raysatiro@yahoo.com>
|
||||
Leith Bade <leith@leithalweapon.geek.nz>
|
||||
Peter Atashian <retep998@gmail.com>
|
||||
Tim Cooper <tim.cooper@layeh.com>
|
||||
Caleb James DeLisle <cjd@hyperboria.ca>
|
||||
Jameson Nash <vtjnash@gmail.com>
|
||||
Graham Lee <ghmlee@ghmlee.com>
|
||||
Andrew Low <Andrew_Low@ca.ibm.com>
|
||||
Pavel Platto <hinidu@gmail.com>
|
||||
Tony Kelman <tony@kelman.net>
|
||||
|
||||
61
ChangeLog
61
ChangeLog
@ -1,3 +1,64 @@
|
||||
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)
|
||||
|
||||
|
||||
2014.06.28, Version 0.11.26 (Unstable), 115281a1058c4034d5c5ccedacb667fe3f6327ea
|
||||
|
||||
Changes since version 0.11.25:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user