mirror of
https://github.com/libuv/libuv
synced 2025-03-28 21:13:16 +00:00
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)
This commit is contained in:
parent
2bf782777f
commit
415a865d63
3
.mailmap
3
.mailmap
@ -11,6 +11,7 @@ Christoph Iserlohn <christoph.iserlohn@innoq.com>
|
||||
Fedor Indutny <fedor.indutny@gmail.com> <fedor@indutny.com>
|
||||
Frank Denis <github@pureftpd.org>
|
||||
Isaac Z. Schlueter <i@izs.me>
|
||||
Jason Williams <necmon@yahoo.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>
|
||||
@ -19,6 +20,7 @@ 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>
|
||||
Michael Neumann <mneumann@think.localnet> <mneumann@ntecs.de>
|
||||
Rasmus Christian Pedersen <zerhacken@yahoo.com>
|
||||
Rasmus Christian Pedersen <zerhacken@yahoo.com> <ruysch@outlook.com>
|
||||
Robert Mustacchi <rm@joyent.com> <rm@fingolfin.org>
|
||||
@ -26,6 +28,7 @@ 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>
|
||||
Santiago Gimeno <santiago.gimeno@quantion.es> <santiago.gimeno@gmail.com>
|
||||
Saúl Ibarra Corretgé <saghul@gmail.com>
|
||||
Shigeki Ohtsu <ohtsu@iij.ad.jp> <ohtsu@ohtsu.org>
|
||||
Timothy J. Fontaine <tjfontaine@gmail.com>
|
||||
|
14
AUTHORS
14
AUTHORS
@ -200,3 +200,17 @@ farblue68 <farblue68@gmail.com>
|
||||
Jason Williams <necmon@yahoo.com>
|
||||
Igor Soarez <igorsoarez@gmail.com>
|
||||
Miodrag Milanovic <mmicko@gmail.com>
|
||||
Cheng Zhao <zcbenz@gmail.com>
|
||||
Michael Neumann <mneumann@think.localnet>
|
||||
Stefano Cristiano <stefanocristiano82@gmail.com>
|
||||
heshamsafi <hesham.safi.eldeen@gmail.com>
|
||||
A. Hauptmann <andreashauptmann@t-online.de>
|
||||
John McNamee <jpm@microwiz.com>
|
||||
Yosuke Furukawa <yosuke.furukawa@gmail.com>
|
||||
Santiago Gimeno <santiago.gimeno@quantion.es>
|
||||
guworks <ground.up.works@gmail.com>
|
||||
RossBencina <rossb@audiomulch.com>
|
||||
Roger A. Light <roger@atchoo.org>
|
||||
chenttuuvv <chenttuuvv@yahoo.com>
|
||||
Richard Lau <riclau@uk.ibm.com>
|
||||
ronkorving <rkorving@wizcorp.jp>
|
||||
|
99
ChangeLog
99
ChangeLog
@ -1,3 +1,102 @@
|
||||
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.06.06, Version 1.6.1 (Stable), 30c8be07bb78a66fdee5141626bf53a49a17094a
|
||||
|
||||
Changes since version 1.6.0:
|
||||
|
@ -1,4 +1,4 @@
|
||||
version: v1.6.1.build{build}
|
||||
version: v1.7.0.build{build}
|
||||
|
||||
install:
|
||||
- cinst -y nsis
|
||||
|
@ -13,7 +13,7 @@
|
||||
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
AC_PREREQ(2.57)
|
||||
AC_INIT([libuv], [1.6.1], [https://github.com/libuv/libuv/issues])
|
||||
AC_INIT([libuv], [1.7.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 6
|
||||
#define UV_VERSION_PATCH 1
|
||||
#define UV_VERSION_MINOR 7
|
||||
#define UV_VERSION_PATCH 0
|
||||
#define UV_VERSION_IS_RELEASE 1
|
||||
#define UV_VERSION_SUFFIX ""
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user