1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00
libuv/.mailmap

48 lines
2.4 KiB
Plaintext
Raw Normal View History

2017.05.31, Version 1.12.0 (Stable) Changes since version 1.11.0: * Now working on version 1.11.1 (cjihrig) * test: fix tests on OpenBSD (Santiago Gimeno) * test: fix -Wformat warning (Santiago Gimeno) * win,fs: avoid double freeing uv_fs_event_t.dirw (Vladimir Matveev) * unix: remove unused code in `uv__io_start` (Fedor Indutny) * signal: add uv_signal_start_oneshot method (Santiago Gimeno) * unix: factor out reusable POSIX hrtime impl (Brad King) * unix,win: add uv_os_{get,set,unset}env() (cjihrig) * win: add uv__convert_utf8_to_utf16() (cjihrig) * docs: improve UV_ENOBUFS scenario documentation (cjihrig) * unix: return UV_EINVAL for NULL env name (jBarz) * unix: filter getifaddrs results consistently (Brad King) * unix: factor out getifaddrs result filter (Brad King) * unix: factor out reusable BSD ifaddrs impl (Brad King) * unix: use union to follow strict aliasing rules (jBarz) * unix: simplify async watcher dispatch logic (Ben Noordhuis) * samples: update timer callback prototype (Ben Noordhuis) * unix: make loops and watchers usable after fork() (Jason Madden) * win: free uv__loops once empty (cjihrig) * tools: add make_dist_html.py script (Ben Noordhuis) * win,sunos: stop handle on uv_fs_event_start() err (cjihrig) * unix,windows: refactor request init logic (Ben Noordhuis) * win: fix memory leak inside uv__pipe_getname (A. Hauptmann) * fsevent: support for files without short name (Bartosz Sosnowski) * doc: fix multiple doc typos (Jamie Davis) * test,osx: fix flaky kill test (Santiago Gimeno) * unix: inline uv_pipe_bind() err_bind goto target (cjihrig) * unix,test: deadstore fixes (Rasmus Christian Pedersen) * win: fix memory leak inside uv_fs_access() (A. Hauptmann) * doc: fix docs/src/fs.rst build warning (Daniel Bevenius) * doc: minor grammar fix in Installation section (Daniel Bevenius) * doc: suggestions for design page (Daniel Bevenius) * doc: libuv does not touch uv_loop_t.data (Ben Noordhuis) * github: add ISSUE_TEMPLATE.md (Ben Noordhuis) * doc: add link to libuv/help to README (Ben Noordhuis) * udp: fix fast path in uv_udp_send() on unix (Fedor Indutny) * test: add test for uv_udp_send() fix (Trevor Norris) * doc: fix documentation for uv_handle_t.type (Daniel Kahn Gillmor) * zos: use proper prototype for epoll_init() (Ben Noordhuis) * doc: rename docs to "libuv documentation" (Saúl Ibarra Corretgé) * doc: update copyright years (Saúl Ibarra Corretgé) * doc: move TOC to a dedicated document (Saúl Ibarra Corretgé) * doc: move documentation section up (Saúl Ibarra Corretgé) * doc: move "upgrading" to a standalone document (Saúl Ibarra Corretgé) * doc: add initial version of the User Guide (Saúl Ibarra Corretgé) * doc: removed unused file (Saúl Ibarra Corretgé) * doc: update guide/about and mention new maintainership (Saúl Ibarra Corretgé) * doc: remove licensing note from guide/about (Saúl Ibarra Corretgé) * doc: add warning note to user guide (Saúl Ibarra Corretgé) * doc: change license to CC BY 4.0 (Saúl Ibarra Corretgé) * doc: remove ubvook reference from README (Saúl Ibarra Corretgé) * doc: add code samples from uvbook (unadapted) (Saúl Ibarra Corretgé) * doc: update supported linux/glibc baseline (Ben Noordhuis) * win: avoid leaking pipe handles to child processes (Jameson Nash) * win,test: support stdout output larger than 1kb (Bartosz Sosnowski) * win: remove __declspec(inline) from atomic op (Keane) * test: fix VC++ compilation warning (Rasmus Christian Pedersen) * build: add -Wstrict-prototypes (Jameson Nash) * zos: implement uv__io_fork, skip fs event tests (jBarz) * unix: do not close udp sockets on bind error (Marc Schlaich) * unix: remove FSEventStreamFlushSync() call (cjihrig) * build,openbsd: remove kvm-related code (James McCoy) * test: fix flaky tcp-write-queue-order (Santiago Gimeno) * unix,win: add uv_os_gethostname() (cjihrig) * zos: increase timeout for tcp_writealot (jBarz) * zos: do not inline OOB data by default (jBarz) * test: fix -Wstrict-prototypes compiler warnings (Ben Noordhuis) * unix: factor out reusable no-proctitle impl (Brad King) * test: factor out fsevents skip explanation (Brad King) * test: skip fork fsevent cases when lacking support (Brad King) * unix: factor out reusable no-fsevents impl (Brad King) * unix: factor out reusable sysinfo memory lookup (Brad King) * unix: factor out reusable sysinfo loadavg impl (Brad King) * unix: factor out reusable procfs exepath impl (Brad King) * unix: add a uv__io_poll impl using POSIX poll(2) (Brad King) * cygwin: implement support for cygwin and msys2 (Brad King) * cygwin: recognize EOF on named pipe closure (Brad King) * cygwin: fix uv_pipe_connect report of ENOTSOCK (Brad King) * cygwin: disable non-functional ipc handle send (Brad King) * test: skip self-connecting tests on cygwin (Brad King) * doc: mark uv_loop_fork() as experimental (cjihrig) * doc: add bzoz to maintainers (Bartosz Sosnowski) * doc: fix memory leak in tcp-echo-server example (Bernardo Ramos) * win: make uv__get_osfhandle() public (Juan Cruz Viotti) * doc: use valid pipe name in pipe-echo-server (Bernardo Ramos)
2017-05-30 12:18:19 -04:00
A. Hauptmann <andreashauptmann@t-online.de>
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-07-31 10:11:01 -07:00
Aaron Bieber <qbit@deftly.net> <deftly@gmail.com>
2013-03-25 15:09:58 +01:00
Alan Gutierrez <alan@prettyrobots.com> <alan@blogometer.com>
Andrius Bentkus <andrius.bentkus@gmail.com> <toxedvirus@gmail.com>
Bert Belder <bertbelder@gmail.com> <i@bertbelder.com>
2013-03-25 15:09:58 +01:00
Bert Belder <bertbelder@gmail.com> <info@2bs.nl>
Bert Belder <bertbelder@gmail.com> <user@ChrUbuntu.(none)>
Brandon Philips <brandon.philips@rackspace.com> <brandon@ifup.org>
Brian White <mscdex@mscdex.net>
2013-03-25 15:09:58 +01:00
Brian White <mscdex@mscdex.net> <mscdex@gmail.com>
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-07-31 10:11:01 -07:00
Caleb James DeLisle <cjd@hyperboria.ca> <cjd@cjdns.fr>
Christoph Iserlohn <christoph.iserlohn@innoq.com>
Devchandra Meetei Leishangthem <dlmeetei@gmail.com>
Fedor Indutny <fedor.indutny@gmail.com> <fedor@indutny.com>
2011-11-13 20:02:46 +01:00
Frank Denis <github@pureftpd.org>
2016.05.17, Version 1.9.1 (Stable) Changes since version 1.9.0: * test: handle root home directories (cjihrig) * unix: implement uv__fs_futime for AIX 7.1 (Imran Iqbal) * test: skip early bind tests if no IPv6 is supported (Saúl Ibarra Corretgé) * win: fix var declaration to be C89 compliant (Michael Fero) * unix: use POLL{IN,OUT,etc} constants directly (Ben Noordhuis) * doc: add ability to live reload and regenerate HTML (Saúl Ibarra Corretgé) * Revert "win,build: remove unused build defines" (cjihrig) * linux: fix fd leaks in uv_cpu_info() error paths (Ben Noordhuis) * linux: don't abort on malformed /proc/stat (Ben Noordhuis) * linux: fix long lines in linux-core.c (Ben Noordhuis) * test: fix fs_event_watch_file_current_dir for AIX (Imran Iqbal) * unix,fs: code cleanup of uv_fs_event_start for AIX (Imran Iqbal) * unix: delay signal handling until after normal i/o (Ben Noordhuis) * android: pthread_sigmask() does not set errno (Oguz Bastemur) * win: work around sharepoint scandir bug (Ben Noordhuis) * unix: guard against clobbering errno in uv__free() (Ben Noordhuis) * unix: remove unneeded SAVE_ERRNO wrappers (Ben Noordhuis) * test: skip fs_event_close_in_callback on AIX (Imran Iqbal) * win: add maxrss, pagefaults to uv_getrusage() (Robert Jefe Lindstaedt) * test: set a big send buffer size for tcp_write_queue_order (Andrius Bentkus) * unix: error on realpath if PATH_MAX is undefined (Myles Borins) * unix: fix bug in barrier fallback implementation (Kári Tristan Helgason) * build: bump android ndk version (Kári Tristan Helgason) * build: always compile with -fvisibility=hidden (Ben Noordhuis) * test: fix -Wformat warnings in platform test (Ben Noordhuis) * win: clarify fsevents handling code (Saúl Ibarra Corretgé) * test: fix POLLHDRUP related failures for AIX (Imran Iqbal) * build, mingw: set LIBS in configure.ac (Tony Theodore) * win: improve uv__convert_utf16_to_utf8 (Saúl Ibarra Corretgé) * win: simplified UTF16 -> UTF8 conversions (Saúl Ibarra Corretgé) * win: remove unneeded condition (Saúl Ibarra Corretgé) * darwin: work around condition variable kernel bug (Ben Noordhuis) * darwin: make thread stack multiple of page size (Ben Noordhuis) * build,win: rename platform to msbuild_platform (João Reis) * gitignore: ignore VS temporary database files (João Reis) * test: skip emfile on AIX (Imran Iqbal) * unix: use system allocator for scandir() (cjihrig) * common: release uv_fs_scandir() array (cjihrig) * win: call uv__fs_scandir_cleanup() (cjihrig) * win,tty: fix read stop in line mode (João Reis) * win,tty: don't duplicate handle for line reads (João Reis) * win,tty: restore cursor after canceling line read (Alexis Campailla)
2016-05-16 23:22:19 +02:00
Imran Iqbal <imrani@ca.ibm.com> <imran@imraniqbal.org>
2013-03-25 15:09:58 +01:00
Isaac Z. Schlueter <i@izs.me>
2015.08.06, Version 1.7.0 (Stable) Changes since version 1.6.1: * win,stream: add slot to remember CRT fd (Bert Belder) * win,pipe: properly close when created from CRT fd (Bert Belder) * win,pipe: don't close fd 0-2 (Bert Belder) * win,tty: convert fd -> handle safely (Bert Belder) * win,tty: properly close when created from CRT fd (Bert Belder) * win,tty: don't close fd 0-2 (Bert Belder) * win,fs: don't close fd 0-2 (Bert Belder) * win: include "malloc.h" (Cheng Zhao) * windows: MSVC 2015 has C99 inline (Jason Williams) * dragonflybsd: fixes for nonblocking and cloexec (Michael Neumann) * dragonflybsd: use sendfile(2) for uv_fs_sendfile (Michael Neumann) * dragonflybsd: fix uv_exepath (Michael Neumann) * win,fs: Fixes align(8) directive on mingw (Stefano Cristiano) * unix, win: prevent replacing fd in uv_{udp,tcp,pipe}_t (Saúl Ibarra Corretgé) * win: move logic to set socket non-inheritable to uv_tcp_set_socket (Saúl Ibarra Corretgé) * unix, win: add ability to create tcp/udp sockets early (Saúl Ibarra Corretgé) * test: retry select() on EINTR, honor milliseconds (Ben Noordhuis) * unix: consolidate tcp and udp bind error (Saúl Ibarra Corretgé) * test: conditionally skip udp_ipv6_multicast_join6 (heshamsafi) * core: add UV_VERSION_HEX macro (Saúl Ibarra Corretgé) * doc: add section with version-checking macros and functions (Saúl Ibarra Corretgé) * tty: cleanup handle if uv_tty_init fails (Saúl Ibarra Corretgé) * darwin: save a fd when FSEvents is used (Saúl Ibarra Corretgé) * win: fix returning thread id in uv_thread_self (Saúl Ibarra Corretgé) * common: use offsetof for QUEUE_DATA (Saúl Ibarra Corretgé) * win: remove UV_HANDLE_CONNECTED (A. Hauptmann) * docs: add Windows specific note for uv_fs_open (Saúl Ibarra Corretgé) * doc: add note about uv_fs_scandir (Saúl Ibarra Corretgé) * test,unix: reduce stack size of watchdog threads (Ben Noordhuis) * win: add support for recursive file watching (Saúl Ibarra Corretgé) * win,tty: support consoles with non-default colors (John McNamee) * doc: add missing variable name (Yosuke Furukawa) * stream: squelch ECONNRESET error if already closed (Santiago Gimeno) * build: remove ancient condition from common.gypi (Saúl Ibarra Corretgé) * tests: skip some tests when network is unreachable (Luca Bruno) * build: proper support for android cross compilation (guworks) * android: add missing include to pthread-fixes.c (RossBencina) * test: fix compilation warning (Saúl Ibarra Corretgé) * doc: add a note about uv_dirent_t.type (Saúl Ibarra Corretgé) * win,test: fix shared library build (Saúl Ibarra Corretgé) * test: fix compilation warning (Santiago Gimeno) * build: add experimental Windows installer (Roger A. Light) * threadpool: send signal only when queue is empty (chenttuuvv) * aix: fix uv_exepath with relative paths (Richard Lau) * build: fix version syntax in AppVeyor file (Saúl Ibarra Corretgé) * unix: allow nbufs > IOV_MAX in uv_fs_{read,write} (ronkorving)
2015-08-05 22:10:09 +02:00
Jason Williams <necmon@yahoo.com>
Jesse Gorzinski <jgorzinski@gmail.com>
Justin Venus <justin.venus@gmail.com> <justin.venus@orbitz.com>
Keno Fischer <kenof@stanford.edu> <kfischer+github@college.harvard.edu>
Keno Fischer <kenof@stanford.edu> <kfischer@college.harvard.edu>
Leith Bade <leith@leithalweapon.geek.nz> <leith@mapbox.com>
Leonard Hecker <leonard.hecker91@gmail.com> <leonard@hecker.io>
Maciej Małecki <maciej.malecki@notimplemented.org> <me@mmalecki.com>
Marc Schlaich <marc.schlaich@googlemail.com> <marc.schlaich@gmail.com>
Michael <michael_dawson@ca.ibm.com>
2015.08.06, Version 1.7.0 (Stable) Changes since version 1.6.1: * win,stream: add slot to remember CRT fd (Bert Belder) * win,pipe: properly close when created from CRT fd (Bert Belder) * win,pipe: don't close fd 0-2 (Bert Belder) * win,tty: convert fd -> handle safely (Bert Belder) * win,tty: properly close when created from CRT fd (Bert Belder) * win,tty: don't close fd 0-2 (Bert Belder) * win,fs: don't close fd 0-2 (Bert Belder) * win: include "malloc.h" (Cheng Zhao) * windows: MSVC 2015 has C99 inline (Jason Williams) * dragonflybsd: fixes for nonblocking and cloexec (Michael Neumann) * dragonflybsd: use sendfile(2) for uv_fs_sendfile (Michael Neumann) * dragonflybsd: fix uv_exepath (Michael Neumann) * win,fs: Fixes align(8) directive on mingw (Stefano Cristiano) * unix, win: prevent replacing fd in uv_{udp,tcp,pipe}_t (Saúl Ibarra Corretgé) * win: move logic to set socket non-inheritable to uv_tcp_set_socket (Saúl Ibarra Corretgé) * unix, win: add ability to create tcp/udp sockets early (Saúl Ibarra Corretgé) * test: retry select() on EINTR, honor milliseconds (Ben Noordhuis) * unix: consolidate tcp and udp bind error (Saúl Ibarra Corretgé) * test: conditionally skip udp_ipv6_multicast_join6 (heshamsafi) * core: add UV_VERSION_HEX macro (Saúl Ibarra Corretgé) * doc: add section with version-checking macros and functions (Saúl Ibarra Corretgé) * tty: cleanup handle if uv_tty_init fails (Saúl Ibarra Corretgé) * darwin: save a fd when FSEvents is used (Saúl Ibarra Corretgé) * win: fix returning thread id in uv_thread_self (Saúl Ibarra Corretgé) * common: use offsetof for QUEUE_DATA (Saúl Ibarra Corretgé) * win: remove UV_HANDLE_CONNECTED (A. Hauptmann) * docs: add Windows specific note for uv_fs_open (Saúl Ibarra Corretgé) * doc: add note about uv_fs_scandir (Saúl Ibarra Corretgé) * test,unix: reduce stack size of watchdog threads (Ben Noordhuis) * win: add support for recursive file watching (Saúl Ibarra Corretgé) * win,tty: support consoles with non-default colors (John McNamee) * doc: add missing variable name (Yosuke Furukawa) * stream: squelch ECONNRESET error if already closed (Santiago Gimeno) * build: remove ancient condition from common.gypi (Saúl Ibarra Corretgé) * tests: skip some tests when network is unreachable (Luca Bruno) * build: proper support for android cross compilation (guworks) * android: add missing include to pthread-fixes.c (RossBencina) * test: fix compilation warning (Saúl Ibarra Corretgé) * doc: add a note about uv_dirent_t.type (Saúl Ibarra Corretgé) * win,test: fix shared library build (Saúl Ibarra Corretgé) * test: fix compilation warning (Santiago Gimeno) * build: add experimental Windows installer (Roger A. Light) * threadpool: send signal only when queue is empty (chenttuuvv) * aix: fix uv_exepath with relative paths (Richard Lau) * build: fix version syntax in AppVeyor file (Saúl Ibarra Corretgé) * unix: allow nbufs > IOV_MAX in uv_fs_{read,write} (ronkorving)
2015-08-05 22:10:09 +02:00
Michael Neumann <mneumann@think.localnet> <mneumann@ntecs.de>
2015.12.15, Version 1.8.0 (Stable) Changes since version 1.7.5: * unix: fix memory leak in uv_interface_addresses (Jianghua Yang) * unix: make uv_guess_handle work properly for AIX (Gireesh Punathil) * fs: undo uv__req_init when uv__malloc failed (Jianghua Yang) * build: remove unused 'component' GYP option (Saúl Ibarra Corretgé) * include: remove duplicate extern declaration (Jianghua Yang) * win: use the MSVC provided snprintf where possible (Jason Williams) * win, test: fix compilation warning (Saúl Ibarra Corretgé) * win: fix compilation with VS < 2012 (Ryan Johnston) * stream: support empty uv_try_write on unix (Fedor Indutny) * unix: fix request handle leak in uv__udp_send (Jianghua Yang) * src: replace QUEUE_SPLIT with QUEUE_MOVE (Ben Noordhuis) * unix: use QUEUE_MOVE when iterating over lists (Ben Noordhuis) * unix: squelch harmless valgrind warning (Ben Noordhuis) * test: don't abort on setrlimit() failure (Ben Noordhuis) * unix: only undo fs req registration in async mode (Ben Noordhuis) * unix: fix uv__getiovmax return value (HungMingWu) * unix: make work with Solaris Studio. (Adam Stylinski) * test: fix fs_event_watch_file_currentdir flakiness (Santiago Gimeno) * unix: skip prohibited syscalls on tvOS and watchOS (Nathan Corvino) * test: use FQDN in getaddrinfo_fail test (Wink Saville) * docs: clarify documentation of uv_tcp_init_ex (Andrius Bentkus) * win: fix comment (Miodrag Milanovic) * doc: fix typo in README (Angel Leon) * darwin: abort() if (un)locking fs mutex fails (Ben Noordhuis) * pipe: enable inprocess uv_write2 on Windows (Louis DeJardin) * win: properly return UV_EBADF when _close() fails (Nicholas Vavilov) * test: skip process_title for AIX (Imran Iqbal) * misc: expose handle print APIs (Petka Antonov) * include: add stdio.h to uv.h (Saúl Ibarra Corretgé) * misc: remove unnecessary null pointer checks (Ian Kronquist) * test,freebsd: skip udp_dual_stack if not supported (Santiago Gimeno) * linux: don't retry dup2/dup3 on EINTR (Ben Noordhuis) * unix: don't retry dup2/dup3 on EINTR (Ben Noordhuis) * test: fix -Wtautological-pointer-compare warnings (Saúl Ibarra Corretgé) * win: map ERROR_BAD_PATHNAME to UV_ENOENT (Tony Kelman) * test: fix test/test-tty.c for AIX (Imran Iqbal) * android: support api level less than 21 (kkdaemon) * fsevents: fix race on simultaneous init+close (Fedor Indutny) * linux,fs: fix p{read,write}v with a 64bit offset (Saúl Ibarra Corretgé) * fs: add uv_fs_realpath() (Yuval Brik) * win: fix path for removed and renamed fs events (Joran Dirk Greef) * win: do not read more from stream than available (Jeremy Whitlock) * test: test that uv_close() doesn't corrupt QUEUE (Andrey Mazo) * unix: fix uv_fs_event_stop() from fs_event_cb (Andrey Mazo) * test: fix self-deadlocks in thread_rwlock_trylock (Ben Noordhuis) * src: remove non ascii character (sztomi) * test: fix test udp_multicast_join6 for AIX (Imran Iqbal)
2015-12-14 20:54:30 +01:00
Nicholas Vavilov <vvnicholas@gmail.com>
Nick Logan <ugexe@cpan.org> <nlogan@gmail.com>
Rasmus Christian Pedersen <zerhacken@yahoo.com>
Rasmus Christian Pedersen <zerhacken@yahoo.com> <ruysch@outlook.com>
2013-03-25 15:09:58 +01:00
Robert Mustacchi <rm@joyent.com> <rm@fingolfin.org>
Ryan Dahl <ryan@joyent.com> <ry@tinyclouds.org>
2011-12-01 14:24:25 +01:00
Ryan Emery <seebees@gmail.com>
2017.10.03, Version 1.15.0 (Stable) Changes since version 1.14.1: * unix: limit uv__has_forked_with_cfrunloop to macOS (Kamil Rytarowski) * win: fix buffer size in uv__getpwuid_r() (tux.uudiin) * win,tty: improve SIGWINCH support (Bartosz Sosnowski) * unix: use fchmod() in uv_fs_copyfile() (cjihrig) * unix: support copying empty files (cjihrig) * unix: truncate destination in uv_fs_copyfile() (Nick Logan) * win,build: keep cwd when setting build environment (darobs) * test: add NetBSD support to test-udp-ipv6.c (Kamil Rytarowski) * unix: add NetBSD support in core.c (Kamil Rytarowski) * linux: increase thread stack size with musl libc (Ben Noordhuis) * netbsd: correct uv_exepath() on NetBSD (Kamil Rytarowski) * test: clean up semaphore after use (jBarz) * win,build: bump vswhere_usability_wrapper to 2.0.0 (Refael Ackermann) * win: let UV_PROCESS_WINDOWS_HIDE hide consoles (cjihrig) * zos: lock protect global epoll list in epoll_ctl (jBarz) * zos: change platform name to match python (jBarz) * android: fix getifaddrs() (Zheng, Lei) * netbsd: implement uv__tty_is_slave() (Kamil Rytarowski) * zos: fix readlink for mounts with system variables (jBarz) * test: sort the tests alphabetically (Sakthipriyan Vairamani) * windows: fix compilation warnings (Carlo Marcelo Arenas Belón) * build: avoid -fstrict-aliasing compile option (jBarz) * win: remove unused variables (Carlo Marcelo Arenas Belón) * unix: remove unused variables (Sakthipriyan Vairamani) * netbsd: disable poll_bad_fdtype on NetBSD (Kamil Rytarowski) * netbsd: use uv__cloexec and uv__nonblock (Kamil Rytarowski) * test: fix udp_multicast_join6 on NetBSD (Kamil Rytarowski) * unix,win: add uv_mutex_init_recursive() (Scott Parker) * netbsd: do not exclude IPv6 functionality (Kamil Rytarowski) * fsevents: watch files with fsevents on macos 10.7+ (Ben Noordhuis) * unix: retry on ENOBUFS in sendmsg(2) (Kamil Rytarowski)
2017-10-02 19:30:27 -04:00
Sakthipriyan Vairamani <thechargingvolcano@gmail.com>
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-02-26 13:33:19 -08:00
Sam Roberts <vieuxtech@gmail.com> <sam@strongloop.com>
2013-03-25 15:09:58 +01:00
San-Tai Hsu <vanilla@fatpipi.com>
2015.08.06, Version 1.7.0 (Stable) Changes since version 1.6.1: * win,stream: add slot to remember CRT fd (Bert Belder) * win,pipe: properly close when created from CRT fd (Bert Belder) * win,pipe: don't close fd 0-2 (Bert Belder) * win,tty: convert fd -> handle safely (Bert Belder) * win,tty: properly close when created from CRT fd (Bert Belder) * win,tty: don't close fd 0-2 (Bert Belder) * win,fs: don't close fd 0-2 (Bert Belder) * win: include "malloc.h" (Cheng Zhao) * windows: MSVC 2015 has C99 inline (Jason Williams) * dragonflybsd: fixes for nonblocking and cloexec (Michael Neumann) * dragonflybsd: use sendfile(2) for uv_fs_sendfile (Michael Neumann) * dragonflybsd: fix uv_exepath (Michael Neumann) * win,fs: Fixes align(8) directive on mingw (Stefano Cristiano) * unix, win: prevent replacing fd in uv_{udp,tcp,pipe}_t (Saúl Ibarra Corretgé) * win: move logic to set socket non-inheritable to uv_tcp_set_socket (Saúl Ibarra Corretgé) * unix, win: add ability to create tcp/udp sockets early (Saúl Ibarra Corretgé) * test: retry select() on EINTR, honor milliseconds (Ben Noordhuis) * unix: consolidate tcp and udp bind error (Saúl Ibarra Corretgé) * test: conditionally skip udp_ipv6_multicast_join6 (heshamsafi) * core: add UV_VERSION_HEX macro (Saúl Ibarra Corretgé) * doc: add section with version-checking macros and functions (Saúl Ibarra Corretgé) * tty: cleanup handle if uv_tty_init fails (Saúl Ibarra Corretgé) * darwin: save a fd when FSEvents is used (Saúl Ibarra Corretgé) * win: fix returning thread id in uv_thread_self (Saúl Ibarra Corretgé) * common: use offsetof for QUEUE_DATA (Saúl Ibarra Corretgé) * win: remove UV_HANDLE_CONNECTED (A. Hauptmann) * docs: add Windows specific note for uv_fs_open (Saúl Ibarra Corretgé) * doc: add note about uv_fs_scandir (Saúl Ibarra Corretgé) * test,unix: reduce stack size of watchdog threads (Ben Noordhuis) * win: add support for recursive file watching (Saúl Ibarra Corretgé) * win,tty: support consoles with non-default colors (John McNamee) * doc: add missing variable name (Yosuke Furukawa) * stream: squelch ECONNRESET error if already closed (Santiago Gimeno) * build: remove ancient condition from common.gypi (Saúl Ibarra Corretgé) * tests: skip some tests when network is unreachable (Luca Bruno) * build: proper support for android cross compilation (guworks) * android: add missing include to pthread-fixes.c (RossBencina) * test: fix compilation warning (Saúl Ibarra Corretgé) * doc: add a note about uv_dirent_t.type (Saúl Ibarra Corretgé) * win,test: fix shared library build (Saúl Ibarra Corretgé) * test: fix compilation warning (Santiago Gimeno) * build: add experimental Windows installer (Roger A. Light) * threadpool: send signal only when queue is empty (chenttuuvv) * aix: fix uv_exepath with relative paths (Richard Lau) * build: fix version syntax in AppVeyor file (Saúl Ibarra Corretgé) * unix: allow nbufs > IOV_MAX in uv_fs_{read,write} (ronkorving)
2015-08-05 22:10:09 +02:00
Santiago Gimeno <santiago.gimeno@quantion.es> <santiago.gimeno@gmail.com>
2013-03-25 15:09:58 +01:00
Saúl Ibarra Corretgé <saghul@gmail.com>
Shigeki Ohtsu <ohtsu@iij.ad.jp> <ohtsu@ohtsu.org>
Timothy J. Fontaine <tjfontaine@gmail.com>
2011-12-14 14:32:13 +01:00
Yasuhiro Matsumoto <mattn.jp@gmail.com>
Yazhong Liu <yorkiefixer@gmail.com>
2013-03-25 15:09:58 +01:00
Yuki Okumura <mjt@cltn.org>
2017.05.31, Version 1.12.0 (Stable) Changes since version 1.11.0: * Now working on version 1.11.1 (cjihrig) * test: fix tests on OpenBSD (Santiago Gimeno) * test: fix -Wformat warning (Santiago Gimeno) * win,fs: avoid double freeing uv_fs_event_t.dirw (Vladimir Matveev) * unix: remove unused code in `uv__io_start` (Fedor Indutny) * signal: add uv_signal_start_oneshot method (Santiago Gimeno) * unix: factor out reusable POSIX hrtime impl (Brad King) * unix,win: add uv_os_{get,set,unset}env() (cjihrig) * win: add uv__convert_utf8_to_utf16() (cjihrig) * docs: improve UV_ENOBUFS scenario documentation (cjihrig) * unix: return UV_EINVAL for NULL env name (jBarz) * unix: filter getifaddrs results consistently (Brad King) * unix: factor out getifaddrs result filter (Brad King) * unix: factor out reusable BSD ifaddrs impl (Brad King) * unix: use union to follow strict aliasing rules (jBarz) * unix: simplify async watcher dispatch logic (Ben Noordhuis) * samples: update timer callback prototype (Ben Noordhuis) * unix: make loops and watchers usable after fork() (Jason Madden) * win: free uv__loops once empty (cjihrig) * tools: add make_dist_html.py script (Ben Noordhuis) * win,sunos: stop handle on uv_fs_event_start() err (cjihrig) * unix,windows: refactor request init logic (Ben Noordhuis) * win: fix memory leak inside uv__pipe_getname (A. Hauptmann) * fsevent: support for files without short name (Bartosz Sosnowski) * doc: fix multiple doc typos (Jamie Davis) * test,osx: fix flaky kill test (Santiago Gimeno) * unix: inline uv_pipe_bind() err_bind goto target (cjihrig) * unix,test: deadstore fixes (Rasmus Christian Pedersen) * win: fix memory leak inside uv_fs_access() (A. Hauptmann) * doc: fix docs/src/fs.rst build warning (Daniel Bevenius) * doc: minor grammar fix in Installation section (Daniel Bevenius) * doc: suggestions for design page (Daniel Bevenius) * doc: libuv does not touch uv_loop_t.data (Ben Noordhuis) * github: add ISSUE_TEMPLATE.md (Ben Noordhuis) * doc: add link to libuv/help to README (Ben Noordhuis) * udp: fix fast path in uv_udp_send() on unix (Fedor Indutny) * test: add test for uv_udp_send() fix (Trevor Norris) * doc: fix documentation for uv_handle_t.type (Daniel Kahn Gillmor) * zos: use proper prototype for epoll_init() (Ben Noordhuis) * doc: rename docs to "libuv documentation" (Saúl Ibarra Corretgé) * doc: update copyright years (Saúl Ibarra Corretgé) * doc: move TOC to a dedicated document (Saúl Ibarra Corretgé) * doc: move documentation section up (Saúl Ibarra Corretgé) * doc: move "upgrading" to a standalone document (Saúl Ibarra Corretgé) * doc: add initial version of the User Guide (Saúl Ibarra Corretgé) * doc: removed unused file (Saúl Ibarra Corretgé) * doc: update guide/about and mention new maintainership (Saúl Ibarra Corretgé) * doc: remove licensing note from guide/about (Saúl Ibarra Corretgé) * doc: add warning note to user guide (Saúl Ibarra Corretgé) * doc: change license to CC BY 4.0 (Saúl Ibarra Corretgé) * doc: remove ubvook reference from README (Saúl Ibarra Corretgé) * doc: add code samples from uvbook (unadapted) (Saúl Ibarra Corretgé) * doc: update supported linux/glibc baseline (Ben Noordhuis) * win: avoid leaking pipe handles to child processes (Jameson Nash) * win,test: support stdout output larger than 1kb (Bartosz Sosnowski) * win: remove __declspec(inline) from atomic op (Keane) * test: fix VC++ compilation warning (Rasmus Christian Pedersen) * build: add -Wstrict-prototypes (Jameson Nash) * zos: implement uv__io_fork, skip fs event tests (jBarz) * unix: do not close udp sockets on bind error (Marc Schlaich) * unix: remove FSEventStreamFlushSync() call (cjihrig) * build,openbsd: remove kvm-related code (James McCoy) * test: fix flaky tcp-write-queue-order (Santiago Gimeno) * unix,win: add uv_os_gethostname() (cjihrig) * zos: increase timeout for tcp_writealot (jBarz) * zos: do not inline OOB data by default (jBarz) * test: fix -Wstrict-prototypes compiler warnings (Ben Noordhuis) * unix: factor out reusable no-proctitle impl (Brad King) * test: factor out fsevents skip explanation (Brad King) * test: skip fork fsevent cases when lacking support (Brad King) * unix: factor out reusable no-fsevents impl (Brad King) * unix: factor out reusable sysinfo memory lookup (Brad King) * unix: factor out reusable sysinfo loadavg impl (Brad King) * unix: factor out reusable procfs exepath impl (Brad King) * unix: add a uv__io_poll impl using POSIX poll(2) (Brad King) * cygwin: implement support for cygwin and msys2 (Brad King) * cygwin: recognize EOF on named pipe closure (Brad King) * cygwin: fix uv_pipe_connect report of ENOTSOCK (Brad King) * cygwin: disable non-functional ipc handle send (Brad King) * test: skip self-connecting tests on cygwin (Brad King) * doc: mark uv_loop_fork() as experimental (cjihrig) * doc: add bzoz to maintainers (Bartosz Sosnowski) * doc: fix memory leak in tcp-echo-server example (Bernardo Ramos) * win: make uv__get_osfhandle() public (Juan Cruz Viotti) * doc: use valid pipe name in pipe-echo-server (Bernardo Ramos)
2017-05-30 12:18:19 -04:00
jBarz <jBarz@users.noreply.github.com> <jbarboza@ca.ibm.com>
jBarz <jBarz@users.noreply.github.com> <jbarz@users.noreply.github.com>