2015.05.07, Version 1.5.0 (Stable)
Changes since version 1.4.2:
* doc: clarify that the thread pool primites are not thread safe
(Andrius Bentkus)
* aix: always deregister closing fds from epoll (Michael)
* unix: fix glibc-2.20+ macro incompatibility (Massimiliano Torromeo)
* doc: add Sphinx plugin for generating links to man pages (Saúl Ibarra
Corretgé)
* doc: link system and library calls to man pages (Saúl Ibarra Corretgé)
* doc: document uv_getnameinfo_t.{host|service} (Saúl Ibarra Corretgé)
* build: update the location of gyp (Stephen von Takach)
* win: name all anonymous structs and unions (TomCrypto)
* linux: work around epoll bug in kernels 3.10-3.19 (Ben Noordhuis)
* darwin: fix size calculation in select() fallback (Ole André Vadla
Ravnås)
* solaris: fix setsockopt for multicast options (Julien Gilli)
* test: fix race condition in multithreaded test (Ben Noordhuis)
* doc: fix long lines in tty.rst (Ben Noordhuis)
* test: use UV_TTY_MODE_* values in tty test (Ben Noordhuis)
* unix: don't clobber errno in uv_tty_reset_mode() (Ben Noordhuis)
* unix: reject non-tty fds in uv_tty_init() (Ben Noordhuis)
* win: fix pipe blocking writes (Alexis Campailla)
* build: fix cross-compiling for iOS (Steven Kabbes)
* win: remove unnecessary malloc.h
* include: use `extern "c++"` for defining C++ code (Kazuho Oku)
* unix: reap child on execvp() failure (Ryan Phillips)
* windows: fix handle leak on EMFILE (Brian Green)
* test: fix tty_file, close handle if initialized (Saúl Ibarra Corretgé)
* doc: clarify what uv_*_open accepts (Saúl Ibarra Corretgé)
* doc: clarify that we don't maintain external doc resources (Saúl
Ibarra Corretgé)
* build: add documentation for ninja support (Devchandra Meetei
Leishangthem)
* doc: document uv_buf_t members (Corey Farrell)
* linux: fix epoll_pwait() fallback on arm64 (Ben Noordhuis)
* android: fix compilation warning (Saúl Ibarra Corretgé)
* unix: don't close the fds we just setup (Sam Roberts)
* test: spawn child replacing std{out,err} to stderr (Saúl Ibarra
Corretgé)
* unix: fix swapping fds order in uv_spawn (Saúl Ibarra Corretgé)
* unix: fix potential bug if dup2 fails in uv_spawn (Saúl Ibarra
Corretgé)
* test: remove LOG and LOGF variadic macros (Saúl Ibarra Corretgé)
* win: fix uv_fs_access on directories (Saúl Ibarra Corretgé)
* win: fix of double free in uv_uptime (Per Nilsson)
* unix: open "/dev/null" instead of "/" for emfile_fd (Alan Rogers)
* docs: add some missing words (Daryl Haresign)
* unix: clean up uv_fs_open() O_CLOEXEC logic (Ben Noordhuis)
* build: set SONAME for shared library in uv.gyp (Rui Abreu Ferreira)
* windows: define snprintf replacement as inline instead of static (Rui
Abreu Ferreira)
* win: fix unlink of readonly files (João Reis)
* doc: fix uv_run(UV_RUN_DEFAULT) description (Ben Noordhuis)
* linux: intercept syscall when running under memory sanitizer (Keno
Fischer)
* aix: fix uv_interface_addresses return value (farblue68)
* windows: defer reporting TCP write failure until next tick (Saúl
Ibarra Corretgé)
* test: add test for deferred TCP write failure (Saúl Ibarra Corretgé)
This commit is contained in:
parent
e6e8124b95
commit
4e77f74c7b
16
AUTHORS
16
AUTHORS
@ -181,3 +181,19 @@ Johan Bergström <bugs@bergstroem.nu>
|
||||
Alex Mo <almosnow@gmail.com>
|
||||
Luis Martinez de Bartolome <lasote@gmail.com>
|
||||
Michael Penick <michael.penick@datastax.com>
|
||||
Michael <michael_dawson@ca.ibm.com>
|
||||
Massimiliano Torromeo <massimiliano.torromeo@gmail.com>
|
||||
TomCrypto <thomas.beneteau@yahoo.fr>
|
||||
Brett Vickers <brett@beevik.com>
|
||||
Ole André Vadla Ravnås <oleavr@gmail.com>
|
||||
Kazuho Oku <kazuhooku@gmail.com>
|
||||
Ryan Phillips <ryan.phillips@rackspace.com>
|
||||
Brian Green <briangreenery@gmail.com>
|
||||
Devchandra Meetei Leishangthem <dlmeetei@gmail.com>
|
||||
Corey Farrell <git@cfware.com>
|
||||
Per Nilsson <pni@qlik.com>
|
||||
Alan Rogers <alanjrogers@me.com>
|
||||
Daryl Haresign <github@daryl.haresign.com>
|
||||
Rui Abreu Ferreira <raf-ep@gmx.com>
|
||||
João Reis <reis@janeasystems.com>
|
||||
farblue68 <farblue68@gmail.com>
|
||||
|
||||
104
ChangeLog
104
ChangeLog
@ -1,3 +1,107 @@
|
||||
2015.05.07, Version 1.5.0 (Stable)
|
||||
|
||||
Changes since version 1.4.2:
|
||||
|
||||
* doc: clarify that the thread pool primites are not thread safe (Andrius
|
||||
Bentkus)
|
||||
|
||||
* aix: always deregister closing fds from epoll (Michael)
|
||||
|
||||
* unix: fix glibc-2.20+ macro incompatibility (Massimiliano Torromeo)
|
||||
|
||||
* doc: add Sphinx plugin for generating links to man pages (Saúl Ibarra
|
||||
Corretgé)
|
||||
|
||||
* doc: link system and library calls to man pages (Saúl Ibarra Corretgé)
|
||||
|
||||
* doc: document uv_getnameinfo_t.{host|service} (Saúl Ibarra Corretgé)
|
||||
|
||||
* build: update the location of gyp (Stephen von Takach)
|
||||
|
||||
* win: name all anonymous structs and unions (TomCrypto)
|
||||
|
||||
* linux: work around epoll bug in kernels 3.10-3.19 (Ben Noordhuis)
|
||||
|
||||
* darwin: fix size calculation in select() fallback (Ole André Vadla Ravnås)
|
||||
|
||||
* solaris: fix setsockopt for multicast options (Julien Gilli)
|
||||
|
||||
* test: fix race condition in multithreaded test (Ben Noordhuis)
|
||||
|
||||
* doc: fix long lines in tty.rst (Ben Noordhuis)
|
||||
|
||||
* test: use UV_TTY_MODE_* values in tty test (Ben Noordhuis)
|
||||
|
||||
* unix: don't clobber errno in uv_tty_reset_mode() (Ben Noordhuis)
|
||||
|
||||
* unix: reject non-tty fds in uv_tty_init() (Ben Noordhuis)
|
||||
|
||||
* win: fix pipe blocking writes (Alexis Campailla)
|
||||
|
||||
* build: fix cross-compiling for iOS (Steven Kabbes)
|
||||
|
||||
* win: remove unnecessary malloc.h
|
||||
|
||||
* include: use `extern "c++"` for defining C++ code (Kazuho Oku)
|
||||
|
||||
* unix: reap child on execvp() failure (Ryan Phillips)
|
||||
|
||||
* windows: fix handle leak on EMFILE (Brian Green)
|
||||
|
||||
* test: fix tty_file, close handle if initialized (Saúl Ibarra Corretgé)
|
||||
|
||||
* doc: clarify what uv_*_open accepts (Saúl Ibarra Corretgé)
|
||||
|
||||
* doc: clarify that we don't maintain external doc resources (Saúl Ibarra
|
||||
Corretgé)
|
||||
|
||||
* build: add documentation for ninja support (Devchandra Meetei Leishangthem)
|
||||
|
||||
* doc: document uv_buf_t members (Corey Farrell)
|
||||
|
||||
* linux: fix epoll_pwait() fallback on arm64 (Ben Noordhuis)
|
||||
|
||||
* android: fix compilation warning (Saúl Ibarra Corretgé)
|
||||
|
||||
* unix: don't close the fds we just setup (Sam Roberts)
|
||||
|
||||
* test: spawn child replacing std{out,err} to stderr (Saúl Ibarra Corretgé)
|
||||
|
||||
* unix: fix swapping fds order in uv_spawn (Saúl Ibarra Corretgé)
|
||||
|
||||
* unix: fix potential bug if dup2 fails in uv_spawn (Saúl Ibarra Corretgé)
|
||||
|
||||
* test: remove LOG and LOGF variadic macros (Saúl Ibarra Corretgé)
|
||||
|
||||
* win: fix uv_fs_access on directories (Saúl Ibarra Corretgé)
|
||||
|
||||
* win: fix of double free in uv_uptime (Per Nilsson)
|
||||
|
||||
* unix: open "/dev/null" instead of "/" for emfile_fd (Alan Rogers)
|
||||
|
||||
* docs: add some missing words (Daryl Haresign)
|
||||
|
||||
* unix: clean up uv_fs_open() O_CLOEXEC logic (Ben Noordhuis)
|
||||
|
||||
* build: set SONAME for shared library in uv.gyp (Rui Abreu Ferreira)
|
||||
|
||||
* windows: define snprintf replacement as inline instead of static (Rui Abreu
|
||||
Ferreira)
|
||||
|
||||
* win: fix unlink of readonly files (João Reis)
|
||||
|
||||
* doc: fix uv_run(UV_RUN_DEFAULT) description (Ben Noordhuis)
|
||||
|
||||
* linux: intercept syscall when running under memory sanitizer (Keno Fischer)
|
||||
|
||||
* aix: fix uv_interface_addresses return value (farblue68)
|
||||
|
||||
* windows: defer reporting TCP write failure until next tick (Saúl Ibarra
|
||||
Corretgé)
|
||||
|
||||
* test: add test for deferred TCP write failure (Saúl Ibarra Corretgé)
|
||||
|
||||
|
||||
2015.02.27, Version 1.4.2 (Stable), 1a7391348a11d5450c0f69c828d5302e2cb842eb
|
||||
|
||||
Changes since version 1.4.1:
|
||||
|
||||
@ -13,7 +13,7 @@
|
||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
AC_PREREQ(2.57)
|
||||
AC_INIT([libuv], [1.4.2], [https://github.com/libuv/libuv/issues])
|
||||
AC_INIT([libuv], [1.5.0], [https://github.com/libuv/libuv/issues])
|
||||
AC_CONFIG_MACRO_DIR([m4])
|
||||
m4_include([m4/libuv-extra-automake-flags.m4])
|
||||
m4_include([m4/as_case.m4])
|
||||
|
||||
@ -31,8 +31,8 @@
|
||||
*/
|
||||
|
||||
#define UV_VERSION_MAJOR 1
|
||||
#define UV_VERSION_MINOR 4
|
||||
#define UV_VERSION_PATCH 2
|
||||
#define UV_VERSION_MINOR 5
|
||||
#define UV_VERSION_PATCH 0
|
||||
#define UV_VERSION_IS_RELEASE 1
|
||||
#define UV_VERSION_SUFFIX ""
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user