mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00
2014.02.27, Version 0.11.20 (Unstable)
Changes since version 0.11.19: * stream: start thread after assignments (Oguz Bastemur) * fs: `uv__cloexec()` opened fd (Fedor Indutny) * gyp: qualify `library` variable (Fedor Indutny) * unix, win: add uv_udp_set_multicast_interface() (Austin Foxley) * unix: fix uv_tcp_nodelay return value in case of error (Saúl Ibarra Corretgé) * unix: call setgoups before calling setuid/setgid (Saúl Ibarra Corretgé) * include: mark close_cb field as private (Saúl Ibarra Corretgé) * unix, windows: map EFBIG errno (Saúl Ibarra Corretgé) * unix: correct error when calling uv_shutdown twice (Keno Fischer) * windows: fix building on MinGW (Alex Crichton) * windows: always initialize uv_process_t (Alex Crichton) * include: expose libuv version in header files (Saúl Ibarra Corretgé) * fs: vectored IO API for filesystem read/write (Benjamin Saunders) * windows: freeze in uv_tcp_endgame (Alexis Campailla) * sunos: handle rearm errors (Fedor Indutny) * unix: use a heap for timers (Ben Noordhuis) * linux: always deregister closing fds from epoll (Geoffry Song) * linux: include grp.h for setgroups() (William Light) * unix, windows: add uv_loop_init and uv_loop_close (Saúl Ibarra Corretgé) * unix, windows: add uv_getrusage() function (Oleg Efimov) * win: minor error handle fix to uv_pipe_write_impl (Rasmus Pedersen) * heap: fix node removal (Keno Fischer) * win: fix C99/C++ comment (Rasmus Pedersen) * fs: vectored IO API for filesystem read/write (Benjamin Saunders) * unix, windows: add uv_pipe_getsockname (Saúl Ibarra Corretgé) * unix, windows: map ENOPROTOOPT errno (Saúl Ibarra Corretgé) * errno: add ETXTBSY (Fedor Indutny) * fsevent: rename filename field to path (Saúl Ibarra Corretgé) * unix, windows: add uv_fs_event_getpath (Saúl Ibarra Corretgé) * unix, windows: add uv_fs_poll_getpath (Saúl Ibarra Corretgé) * unix, windows: map ERANGE errno (Saúl Ibarra Corretgé) * unix, windows: set required size on UV_ENOBUFS (Saúl Ibarra Corretgé) * unix, windows: clarify what uv_stream_set_blocking does (Saúl Ibarra Corretgé) * fs: use preadv on Linux if available (Brian White)
This commit is contained in:
parent
2f6d4b4b58
commit
88355e081b
2
.mailmap
2
.mailmap
@ -12,9 +12,11 @@ Keno Fischer <kenof@stanford.edu> <kfischer+github@college.harvard.edu>
|
||||
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 Pedersen <ruysch@outlook.com> <zerhacken@yahoo.com>
|
||||
Robert Mustacchi <rm@joyent.com> <rm@fingolfin.org>
|
||||
Ryan Dahl <ryan@joyent.com> <ry@tinyclouds.org>
|
||||
Ryan Emery <seebees@gmail.com>
|
||||
Sam Roberts <vieuxtech@gmail.com> <sam@strongloop.com>
|
||||
San-Tai Hsu <vanilla@fatpipi.com>
|
||||
Saúl Ibarra Corretgé <saghul@gmail.com>
|
||||
Shigeki Ohtsu <ohtsu@iij.ad.jp> <ohtsu@ohtsu.org>
|
||||
|
10
AUTHORS
10
AUTHORS
@ -114,3 +114,13 @@ Nathan Sweet <nathanjsweet@gmail.com>
|
||||
Alex Crichton <alex@alexcrichton.com>
|
||||
Luca Bruno <lucab@debian.org>
|
||||
Trevor Norris <trev.norris@gmail.com>
|
||||
Oguz Bastemur <obastemur@gmail.com>
|
||||
Dylan Cali <calid1984@gmail.com>
|
||||
Austin Foxley <austinf@cetoncorp.com>
|
||||
Benjamin Saunders <ben.e.saunders@gmail.com>
|
||||
Geoffry Song <goffrie@gmail.com>
|
||||
Rasmus Pedersen <ruysch@outlook.com>
|
||||
William Light <wrl@illest.net>
|
||||
Oleg Efimov <o.efimov@corp.badoo.com>
|
||||
Lars Gierth <larsg@systemli.org>
|
||||
rcp <zerhacken@yahoo.com>
|
||||
|
74
ChangeLog
74
ChangeLog
@ -1,3 +1,77 @@
|
||||
2014.02.27, Version 0.11.20 (Unstable)
|
||||
|
||||
Changes since version 0.11.19:
|
||||
|
||||
* stream: start thread after assignments (Oguz Bastemur)
|
||||
|
||||
* fs: `uv__cloexec()` opened fd (Fedor Indutny)
|
||||
|
||||
* gyp: qualify `library` variable (Fedor Indutny)
|
||||
|
||||
* unix, win: add uv_udp_set_multicast_interface() (Austin Foxley)
|
||||
|
||||
* unix: fix uv_tcp_nodelay return value in case of error (Saúl Ibarra Corretgé)
|
||||
|
||||
* unix: call setgoups before calling setuid/setgid (Saúl Ibarra Corretgé)
|
||||
|
||||
* include: mark close_cb field as private (Saúl Ibarra Corretgé)
|
||||
|
||||
* unix, windows: map EFBIG errno (Saúl Ibarra Corretgé)
|
||||
|
||||
* unix: correct error when calling uv_shutdown twice (Keno Fischer)
|
||||
|
||||
* windows: fix building on MinGW (Alex Crichton)
|
||||
|
||||
* windows: always initialize uv_process_t (Alex Crichton)
|
||||
|
||||
* include: expose libuv version in header files (Saúl Ibarra Corretgé)
|
||||
|
||||
* fs: vectored IO API for filesystem read/write (Benjamin Saunders)
|
||||
|
||||
* windows: freeze in uv_tcp_endgame (Alexis Campailla)
|
||||
|
||||
* sunos: handle rearm errors (Fedor Indutny)
|
||||
|
||||
* unix: use a heap for timers (Ben Noordhuis)
|
||||
|
||||
* linux: always deregister closing fds from epoll (Geoffry Song)
|
||||
|
||||
* linux: include grp.h for setgroups() (William Light)
|
||||
|
||||
* unix, windows: add uv_loop_init and uv_loop_close (Saúl Ibarra Corretgé)
|
||||
|
||||
* unix, windows: add uv_getrusage() function (Oleg Efimov)
|
||||
|
||||
* win: minor error handle fix to uv_pipe_write_impl (Rasmus Pedersen)
|
||||
|
||||
* heap: fix node removal (Keno Fischer)
|
||||
|
||||
* win: fix C99/C++ comment (Rasmus Pedersen)
|
||||
|
||||
* fs: vectored IO API for filesystem read/write (Benjamin Saunders)
|
||||
|
||||
* unix, windows: add uv_pipe_getsockname (Saúl Ibarra Corretgé)
|
||||
|
||||
* unix, windows: map ENOPROTOOPT errno (Saúl Ibarra Corretgé)
|
||||
|
||||
* errno: add ETXTBSY (Fedor Indutny)
|
||||
|
||||
* fsevent: rename filename field to path (Saúl Ibarra Corretgé)
|
||||
|
||||
* unix, windows: add uv_fs_event_getpath (Saúl Ibarra Corretgé)
|
||||
|
||||
* unix, windows: add uv_fs_poll_getpath (Saúl Ibarra Corretgé)
|
||||
|
||||
* unix, windows: map ERANGE errno (Saúl Ibarra Corretgé)
|
||||
|
||||
* unix, windows: set required size on UV_ENOBUFS (Saúl Ibarra Corretgé)
|
||||
|
||||
* unix, windows: clarify what uv_stream_set_blocking does (Saúl Ibarra
|
||||
Corretgé)
|
||||
|
||||
* fs: use preadv on Linux if available (Brian White)
|
||||
|
||||
|
||||
2014.01.30, Version 0.11.19 (Unstable), 336a1825309744f920230ec3e427e78571772347
|
||||
|
||||
Changes since version 0.11.18:
|
||||
|
Loading…
x
Reference in New Issue
Block a user