passenger 5.0.8 → 5.0.9
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of passenger might be problematic. Click here for more details.
- checksums.yaml +8 -8
- checksums.yaml.gz.asc +7 -7
- data.tar.gz.asc +7 -7
- data/.editorconfig +20 -0
- data/CHANGELOG +21 -0
- data/bin/passenger-install-apache2-module +3 -1
- data/build/agents.rb +7 -5
- data/build/basics.rb +3 -3
- data/build/common_library.rb +52 -30
- data/build/cxx_tests.rb +20 -13
- data/build/misc.rb +5 -5
- data/doc/Design and Architecture.html +1 -1
- data/doc/Design and Architecture.txt +1 -1
- data/doc/Packaging.html +4 -4
- data/doc/Packaging.txt.md +4 -4
- data/doc/Users guide Apache.html +22 -9
- data/doc/Users guide Apache.idmap.txt +4 -2
- data/doc/Users guide Apache.txt +2 -0
- data/doc/Users guide Nginx.html +22 -9
- data/doc/Users guide Nginx.idmap.txt +4 -2
- data/doc/Users guide Nginx.txt +2 -0
- data/doc/Users guide Standalone.html +14 -9
- data/doc/Users guide Standalone.idmap.txt +4 -2
- data/doc/users_guide_snippets/installation.txt +10 -6
- data/ext/apache2/Hooks.cpp +13 -2
- data/ext/common/ApplicationPool2/Pool/Inspection.h +8 -3
- data/ext/common/BackgroundEventLoop.cpp +249 -67
- data/ext/common/BackgroundEventLoop.h +5 -5
- data/ext/common/Constants.h +1 -1
- data/ext/common/InstanceDirectory.h +8 -6
- data/ext/common/ServerKit/Context.h +8 -2
- data/ext/common/ServerKit/FileBufferedChannel.h +262 -226
- data/ext/common/ServerKit/HeaderTable.h +28 -3
- data/ext/common/ServerKit/HttpHeaderParser.h +37 -13
- data/ext/common/ServerKit/HttpServer.h +17 -1
- data/ext/common/ServerKit/Implementation.cpp +2 -0
- data/ext/common/ServerKit/Server.h +25 -28
- data/ext/common/Utils/IOUtils.cpp +11 -0
- data/ext/common/Utils/ProcessMetricsCollector.h +4 -0
- data/ext/common/Utils/StrIntUtils.cpp +11 -7
- data/ext/common/Utils/StrIntUtils.h +1 -1
- data/ext/common/Utils/StrIntUtilsNoStrictAliasing.cpp +21 -16
- data/ext/common/agents/Base.cpp +6 -0
- data/ext/common/agents/Base.h +2 -0
- data/ext/common/agents/HelperAgent/AdminServer.h +25 -25
- data/ext/common/agents/HelperAgent/Main.cpp +37 -12
- data/ext/common/agents/HelperAgent/RequestHandler.h +18 -20
- data/ext/common/agents/HelperAgent/RequestHandler/AppResponse.h +4 -0
- data/ext/common/agents/HelperAgent/RequestHandler/ForwardResponse.cpp +10 -6
- data/ext/common/agents/HelperAgent/RequestHandler/Hooks.cpp +2 -0
- data/ext/common/agents/HelperAgent/RequestHandler/InitRequest.cpp +1 -1
- data/ext/common/agents/HelperAgent/RequestHandler/SendRequest.cpp +1 -1
- data/ext/common/agents/HelperAgent/RequestHandler/Utils.cpp +9 -2
- data/ext/common/agents/HelperAgent/ResponseCache.h +11 -11
- data/ext/common/agents/LoggingAgent/AdminServer.h +8 -8
- data/ext/common/agents/LoggingAgent/Main.cpp +6 -5
- data/ext/common/agents/Watchdog/AdminServer.h +13 -13
- data/ext/common/agents/Watchdog/Main.cpp +8 -3
- data/ext/libuv/.gitignore +72 -0
- data/ext/libuv/AUTHORS +199 -0
- data/ext/libuv/ChangeLog +2023 -0
- data/ext/libuv/LICENSE +46 -0
- data/ext/libuv/Makefile.am +336 -0
- data/ext/libuv/README.md +197 -0
- data/ext/libuv/checksparse.sh +233 -0
- data/ext/libuv/common.gypi +210 -0
- data/ext/libuv/configure.ac +67 -0
- data/ext/libuv/gyp_uv.py +96 -0
- data/ext/libuv/include/android-ifaddrs.h +54 -0
- data/ext/libuv/include/pthread-fixes.h +72 -0
- data/ext/libuv/include/tree.h +768 -0
- data/ext/libuv/include/uv-aix.h +32 -0
- data/ext/libuv/include/uv-bsd.h +34 -0
- data/ext/libuv/include/uv-darwin.h +61 -0
- data/ext/libuv/include/uv-errno.h +418 -0
- data/ext/libuv/include/uv-linux.h +34 -0
- data/ext/libuv/include/uv-sunos.h +44 -0
- data/ext/libuv/include/uv-threadpool.h +37 -0
- data/ext/libuv/include/uv-unix.h +383 -0
- data/ext/libuv/include/uv-version.h +39 -0
- data/ext/libuv/include/uv.h +1455 -0
- data/ext/libuv/libuv.pc.in +11 -0
- data/ext/libuv/m4/.gitignore +4 -0
- data/ext/libuv/m4/as_case.m4 +21 -0
- data/ext/libuv/m4/libuv-check-flags.m4 +319 -0
- data/ext/libuv/src/fs-poll.c +255 -0
- data/ext/libuv/src/heap-inl.h +245 -0
- data/ext/libuv/src/inet.c +313 -0
- data/ext/libuv/src/queue.h +92 -0
- data/ext/libuv/src/threadpool.c +303 -0
- data/ext/libuv/src/unix/aix.c +1240 -0
- data/ext/libuv/src/unix/android-ifaddrs.c +703 -0
- data/ext/libuv/src/unix/async.c +284 -0
- data/ext/libuv/src/unix/atomic-ops.h +60 -0
- data/ext/libuv/src/unix/core.c +985 -0
- data/ext/libuv/src/unix/darwin-proctitle.c +206 -0
- data/ext/libuv/src/unix/darwin.c +331 -0
- data/ext/libuv/src/unix/dl.c +83 -0
- data/ext/libuv/src/unix/freebsd.c +435 -0
- data/ext/libuv/src/unix/fs.c +1189 -0
- data/ext/libuv/src/unix/fsevents.c +899 -0
- data/ext/libuv/src/unix/getaddrinfo.c +202 -0
- data/ext/libuv/src/unix/getnameinfo.c +120 -0
- data/ext/libuv/src/unix/internal.h +314 -0
- data/ext/libuv/src/unix/kqueue.c +418 -0
- data/ext/libuv/src/unix/linux-core.c +876 -0
- data/ext/libuv/src/unix/linux-inotify.c +257 -0
- data/ext/libuv/src/unix/linux-syscalls.c +471 -0
- data/ext/libuv/src/unix/linux-syscalls.h +158 -0
- data/ext/libuv/src/unix/loop-watcher.c +63 -0
- data/ext/libuv/src/unix/loop.c +135 -0
- data/ext/libuv/src/unix/netbsd.c +368 -0
- data/ext/libuv/src/unix/openbsd.c +384 -0
- data/ext/libuv/src/unix/pipe.c +288 -0
- data/ext/libuv/src/unix/poll.c +113 -0
- data/ext/libuv/src/unix/process.c +551 -0
- data/ext/libuv/src/unix/proctitle.c +102 -0
- data/ext/libuv/src/unix/pthread-fixes.c +103 -0
- data/ext/libuv/src/unix/signal.c +465 -0
- data/ext/libuv/src/unix/spinlock.h +53 -0
- data/ext/libuv/src/unix/stream.c +1598 -0
- data/ext/libuv/src/unix/sunos.c +763 -0
- data/ext/libuv/src/unix/tcp.c +327 -0
- data/ext/libuv/src/unix/thread.c +519 -0
- data/ext/libuv/src/unix/timer.c +172 -0
- data/ext/libuv/src/unix/tty.c +265 -0
- data/ext/libuv/src/unix/udp.c +833 -0
- data/ext/libuv/src/uv-common.c +544 -0
- data/ext/libuv/src/uv-common.h +214 -0
- data/ext/libuv/src/version.c +49 -0
- data/ext/libuv/uv.gyp +487 -0
- data/ext/nginx/ContentHandler.c +21 -10
- data/ext/nginx/ngx_http_passenger_module.c +7 -0
- data/ext/oxt/implementation.cpp +9 -2
- data/ext/oxt/initialize.hpp +5 -1
- data/lib/phusion_passenger.rb +3 -3
- data/lib/phusion_passenger/admin_tools/instance.rb +10 -6
- data/lib/phusion_passenger/admin_tools/instance_registry.rb +6 -2
- data/lib/phusion_passenger/packaging.rb +3 -4
- data/lib/phusion_passenger/platform_info.rb +13 -1
- data/lib/phusion_passenger/platform_info/apache.rb +15 -4
- data/lib/phusion_passenger/platform_info/apache_detector.rb +5 -1
- data/lib/phusion_passenger/rack/thread_handler_extension.rb +184 -99
- data/lib/phusion_passenger/request_handler/thread_handler.rb +13 -6
- data/lib/phusion_passenger/standalone/start_command.rb +2 -2
- data/resources/templates/apache2/apache_install_broken.txt.erb +2 -1
- metadata +99 -22
- metadata.gz.asc +7 -7
- data/ext/libeio/Changes +0 -76
- data/ext/libeio/LICENSE +0 -36
- data/ext/libeio/Makefile.am +0 -15
- data/ext/libeio/Makefile.in +0 -694
- data/ext/libeio/aclocal.m4 +0 -9418
- data/ext/libeio/autogen.sh +0 -3
- data/ext/libeio/config.guess +0 -1540
- data/ext/libeio/config.h.in +0 -136
- data/ext/libeio/config.sub +0 -1779
- data/ext/libeio/configure +0 -14822
- data/ext/libeio/configure.ac +0 -22
- data/ext/libeio/demo.c +0 -194
- data/ext/libeio/ecb.h +0 -714
- data/ext/libeio/eio.c +0 -2818
- data/ext/libeio/eio.h +0 -414
- data/ext/libeio/install-sh +0 -520
- data/ext/libeio/libeio.m4 +0 -195
- data/ext/libeio/ltmain.sh +0 -9636
- data/ext/libeio/missing +0 -376
- data/ext/libeio/xthread.h +0 -166
data/ext/libuv/ChangeLog
ADDED
@@ -0,0 +1,2023 @@
|
|
1
|
+
2015.05.07, Version 1.5.0 (Stable)
|
2
|
+
|
3
|
+
Changes since version 1.4.2:
|
4
|
+
|
5
|
+
* doc: clarify that the thread pool primites are not thread safe (Andrius
|
6
|
+
Bentkus)
|
7
|
+
|
8
|
+
* aix: always deregister closing fds from epoll (Michael)
|
9
|
+
|
10
|
+
* unix: fix glibc-2.20+ macro incompatibility (Massimiliano Torromeo)
|
11
|
+
|
12
|
+
* doc: add Sphinx plugin for generating links to man pages (Saúl Ibarra
|
13
|
+
Corretgé)
|
14
|
+
|
15
|
+
* doc: link system and library calls to man pages (Saúl Ibarra Corretgé)
|
16
|
+
|
17
|
+
* doc: document uv_getnameinfo_t.{host|service} (Saúl Ibarra Corretgé)
|
18
|
+
|
19
|
+
* build: update the location of gyp (Stephen von Takach)
|
20
|
+
|
21
|
+
* win: name all anonymous structs and unions (TomCrypto)
|
22
|
+
|
23
|
+
* linux: work around epoll bug in kernels 3.10-3.19 (Ben Noordhuis)
|
24
|
+
|
25
|
+
* darwin: fix size calculation in select() fallback (Ole André Vadla Ravnås)
|
26
|
+
|
27
|
+
* solaris: fix setsockopt for multicast options (Julien Gilli)
|
28
|
+
|
29
|
+
* test: fix race condition in multithreaded test (Ben Noordhuis)
|
30
|
+
|
31
|
+
* doc: fix long lines in tty.rst (Ben Noordhuis)
|
32
|
+
|
33
|
+
* test: use UV_TTY_MODE_* values in tty test (Ben Noordhuis)
|
34
|
+
|
35
|
+
* unix: don't clobber errno in uv_tty_reset_mode() (Ben Noordhuis)
|
36
|
+
|
37
|
+
* unix: reject non-tty fds in uv_tty_init() (Ben Noordhuis)
|
38
|
+
|
39
|
+
* win: fix pipe blocking writes (Alexis Campailla)
|
40
|
+
|
41
|
+
* build: fix cross-compiling for iOS (Steven Kabbes)
|
42
|
+
|
43
|
+
* win: remove unnecessary malloc.h
|
44
|
+
|
45
|
+
* include: use `extern "c++"` for defining C++ code (Kazuho Oku)
|
46
|
+
|
47
|
+
* unix: reap child on execvp() failure (Ryan Phillips)
|
48
|
+
|
49
|
+
* windows: fix handle leak on EMFILE (Brian Green)
|
50
|
+
|
51
|
+
* test: fix tty_file, close handle if initialized (Saúl Ibarra Corretgé)
|
52
|
+
|
53
|
+
* doc: clarify what uv_*_open accepts (Saúl Ibarra Corretgé)
|
54
|
+
|
55
|
+
* doc: clarify that we don't maintain external doc resources (Saúl Ibarra
|
56
|
+
Corretgé)
|
57
|
+
|
58
|
+
* build: add documentation for ninja support (Devchandra Meetei Leishangthem)
|
59
|
+
|
60
|
+
* doc: document uv_buf_t members (Corey Farrell)
|
61
|
+
|
62
|
+
* linux: fix epoll_pwait() fallback on arm64 (Ben Noordhuis)
|
63
|
+
|
64
|
+
* android: fix compilation warning (Saúl Ibarra Corretgé)
|
65
|
+
|
66
|
+
* unix: don't close the fds we just setup (Sam Roberts)
|
67
|
+
|
68
|
+
* test: spawn child replacing std{out,err} to stderr (Saúl Ibarra Corretgé)
|
69
|
+
|
70
|
+
* unix: fix swapping fds order in uv_spawn (Saúl Ibarra Corretgé)
|
71
|
+
|
72
|
+
* unix: fix potential bug if dup2 fails in uv_spawn (Saúl Ibarra Corretgé)
|
73
|
+
|
74
|
+
* test: remove LOG and LOGF variadic macros (Saúl Ibarra Corretgé)
|
75
|
+
|
76
|
+
* win: fix uv_fs_access on directories (Saúl Ibarra Corretgé)
|
77
|
+
|
78
|
+
* win: fix of double free in uv_uptime (Per Nilsson)
|
79
|
+
|
80
|
+
* unix: open "/dev/null" instead of "/" for emfile_fd (Alan Rogers)
|
81
|
+
|
82
|
+
* docs: add some missing words (Daryl Haresign)
|
83
|
+
|
84
|
+
* unix: clean up uv_fs_open() O_CLOEXEC logic (Ben Noordhuis)
|
85
|
+
|
86
|
+
* build: set SONAME for shared library in uv.gyp (Rui Abreu Ferreira)
|
87
|
+
|
88
|
+
* windows: define snprintf replacement as inline instead of static (Rui Abreu
|
89
|
+
Ferreira)
|
90
|
+
|
91
|
+
* win: fix unlink of readonly files (João Reis)
|
92
|
+
|
93
|
+
* doc: fix uv_run(UV_RUN_DEFAULT) description (Ben Noordhuis)
|
94
|
+
|
95
|
+
* linux: intercept syscall when running under memory sanitizer (Keno Fischer)
|
96
|
+
|
97
|
+
* aix: fix uv_interface_addresses return value (farblue68)
|
98
|
+
|
99
|
+
* windows: defer reporting TCP write failure until next tick (Saúl Ibarra
|
100
|
+
Corretgé)
|
101
|
+
|
102
|
+
* test: add test for deferred TCP write failure (Saúl Ibarra Corretgé)
|
103
|
+
|
104
|
+
|
105
|
+
2015.02.27, Version 1.4.2 (Stable), 1a7391348a11d5450c0f69c828d5302e2cb842eb
|
106
|
+
|
107
|
+
Changes since version 1.4.1:
|
108
|
+
|
109
|
+
* stream: ignore EINVAL for SO_OOBINLINE on OS X (Fedor Indutny)
|
110
|
+
|
111
|
+
|
112
|
+
2015.02.25, Version 1.4.1 (Stable), e8e3fc5789cc0f02937879d141cca0411274093c
|
113
|
+
|
114
|
+
Changes since version 1.4.0:
|
115
|
+
|
116
|
+
* win: don't use inline keyword in thread.c (Ben Noordhuis)
|
117
|
+
|
118
|
+
* windows: fix setting dirent types on uv_fs_scandir_next (Saúl Ibarra
|
119
|
+
Corretgé)
|
120
|
+
|
121
|
+
* unix,windows: make uv_thread_create() return errno (Ben Noordhuis)
|
122
|
+
|
123
|
+
* tty: fix build for SmartOS (Julien Gilli)
|
124
|
+
|
125
|
+
* unix: fix for uv_async data race (Michael Penick)
|
126
|
+
|
127
|
+
* unix, windows: map EHOSTDOWN errno (Ben Noordhuis)
|
128
|
+
|
129
|
+
* stream: use SO_OOBINLINE on OS X (Fedor Indutny)
|
130
|
+
|
131
|
+
|
132
|
+
2015.02.10, Version 1.4.0 (Stable), 19fb8a90648f3763240db004b77ab984264409be
|
133
|
+
|
134
|
+
Changes since version 1.3.0:
|
135
|
+
|
136
|
+
* unix: check Android support for pthread_cond_timedwait_monotonic_np (Leith
|
137
|
+
Bade)
|
138
|
+
|
139
|
+
* test: use modified path in test (cjihrig)
|
140
|
+
|
141
|
+
* unix: implement uv_stream_set_blocking() (Ben Noordhuis)
|
142
|
+
|
143
|
+
|
144
|
+
2015.01.29, Version 1.3.0 (Stable), 165685b2a9a42cf96501d79cd6d48a18aaa16e3b
|
145
|
+
|
146
|
+
Changes since version 1.2.1:
|
147
|
+
|
148
|
+
* unix, windows: set non-block mode in uv_poll_init (Saúl Ibarra Corretgé)
|
149
|
+
|
150
|
+
* doc: clarify which flags are supported in uv_fs_event_start (Saúl Ibarra
|
151
|
+
Corretgé)
|
152
|
+
|
153
|
+
* win,unix: move loop functions which have identical implementations (Andrius
|
154
|
+
Bentkus)
|
155
|
+
|
156
|
+
* doc: explain how the threadpool is allocated (Alex Mo)
|
157
|
+
|
158
|
+
* doc: clarify uv_default_loop (Saúl Ibarra Corretgé)
|
159
|
+
|
160
|
+
* unix: fix implicit declaration compiler warning (Ben Noordhuis)
|
161
|
+
|
162
|
+
* unix: fix long line introduced in commit 94e628fa (Ben Noordhuis)
|
163
|
+
|
164
|
+
* unix, win: add synchronous uv_get{addr,name}info (Saúl Ibarra Corretgé)
|
165
|
+
|
166
|
+
* linux: fix epoll_pwait() regression with < 2.6.19 (Ben Noordhuis)
|
167
|
+
|
168
|
+
* build: compile -D_GNU_SOURCE on linux (Ben Noordhuis)
|
169
|
+
|
170
|
+
* build: use -fvisibility=hidden in autotools build (Ben Noordhuis)
|
171
|
+
|
172
|
+
* fs, pipe: no trailing terminator in exact sized buffers (Andrius Bentkus)
|
173
|
+
|
174
|
+
* style: rename buf to buffer and len to size for consistency (Andrius Bentkus)
|
175
|
+
|
176
|
+
* test: fix test-spawn on MinGW32 (Luis Martinez de Bartolome)
|
177
|
+
|
178
|
+
* win, pipe: fix assertion when destroying timer (Andrius Bentkus)
|
179
|
+
|
180
|
+
* win, unix: add pipe_peername implementation (Andrius Bentkus)
|
181
|
+
|
182
|
+
|
183
|
+
2015.01.29, Version 0.10.33 (Stable), 7a2253d33ad8215a26c1b34f1952aee7242dd687
|
184
|
+
|
185
|
+
Changes since version 0.10.32:
|
186
|
+
|
187
|
+
* linux: fix epoll_pwait() regression with < 2.6.19 (Ben Noordhuis)
|
188
|
+
|
189
|
+
* test: back-port uv_loop_configure() test (Ben Noordhuis)
|
190
|
+
|
191
|
+
|
192
|
+
2015.01.15, Version 1.2.1 (Stable), 4ca78e989062a1099dc4b9ad182a98e8374134b1
|
193
|
+
|
194
|
+
Changes since version 1.2.0:
|
195
|
+
|
196
|
+
* unix: remove unused dtrace file (Saúl Ibarra Corretgé)
|
197
|
+
|
198
|
+
* test: skip TTY select test if /dev/tty can't be opened (Saúl Ibarra Corretgé)
|
199
|
+
|
200
|
+
* doc: clarify the behavior of uv_tty_init (Saúl Ibarra Corretgé)
|
201
|
+
|
202
|
+
* doc: clarify how uv_async_send behaves (Saúl Ibarra Corretgé)
|
203
|
+
|
204
|
+
* build: make dist now generates a full tarball (Johan Bergström)
|
205
|
+
|
206
|
+
* freebsd: make uv_exepath more resilient (Saúl Ibarra Corretgé)
|
207
|
+
|
208
|
+
* unix: make setting the tty mode to the same value a no-op (Saúl Ibarra
|
209
|
+
Corretgé)
|
210
|
+
|
211
|
+
* win,tcp: support uv_try_write (Bert Belder)
|
212
|
+
|
213
|
+
* test: enable test-tcp-try-write on windows (Bert Belder)
|
214
|
+
|
215
|
+
* win,tty: support uv_try_write (Bert Belder)
|
216
|
+
|
217
|
+
* unix: set non-block mode in uv_{pipe,tcp,udp}_open (Ben Noordhuis)
|
218
|
+
|
219
|
+
|
220
|
+
2015.01.06, Version 1.2.0 (Stable), 09f25b13cd149c7981108fc1a75611daf1277f83
|
221
|
+
|
222
|
+
Changes since version 1.1.0:
|
223
|
+
|
224
|
+
* linux: fix epoll_pwait() sigmask size calculation (Ben Noordhuis)
|
225
|
+
|
226
|
+
* tty: implement binary I/O terminal mode (Yuri D'Elia)
|
227
|
+
|
228
|
+
* test: fix spawn test with autotools build (Ben Noordhuis)
|
229
|
+
|
230
|
+
* test: skip ipv6 tests when ipv6 is not supported (Ben Noordhuis)
|
231
|
+
|
232
|
+
* common: move STATIC_ASSERT to uv-common.h (Alexey Melnichuk)
|
233
|
+
|
234
|
+
* win/thread: store thread handle in a TLS slot (Alexey Melnichuk)
|
235
|
+
|
236
|
+
* unix: fix ttl, multicast ttl and loop options on IPv6 (Saúl Ibarra Corretgé)
|
237
|
+
|
238
|
+
* linux: fix support for preadv/pwritev-less kernels (Ben Noordhuis)
|
239
|
+
|
240
|
+
* unix: make uv_exepath(size=0) return UV_EINVAL (Ben Noordhuis)
|
241
|
+
|
242
|
+
* darwin: fix uv_exepath(smallbuf) UV_EPERM error (Ben Noordhuis)
|
243
|
+
|
244
|
+
* openbsd: fix uv_exepath(smallbuf) UV_EINVAL error (Ben Noordhuis)
|
245
|
+
|
246
|
+
* linux: fix uv_exepath(size=1) UV_EINVAL error (Ben Noordhuis)
|
247
|
+
|
248
|
+
* sunos: preemptively fix uv_exepath(size=1) (Ben Noordhuis)
|
249
|
+
|
250
|
+
* win: fix and clarify comments in winapi.h (Bert Belder)
|
251
|
+
|
252
|
+
* win: make available NtQueryDirectoryFile (Bert Belder)
|
253
|
+
|
254
|
+
* win: add definitions for directory information types (Bert Belder)
|
255
|
+
|
256
|
+
* win: use NtQueryDirectoryFile to implement uv_fs_scandir (Bert Belder)
|
257
|
+
|
258
|
+
* unix: don't unlink unix socket on bind error (Ben Noordhuis)
|
259
|
+
|
260
|
+
* build: fix bad comment in autogen.sh (Ben Noordhuis)
|
261
|
+
|
262
|
+
* build: add AC_PROG_LIBTOOL to configure.ac (Ben Noordhuis)
|
263
|
+
|
264
|
+
* test: skip udp_options6 if there no IPv6 support (Saúl Ibarra Corretgé)
|
265
|
+
|
266
|
+
* win: add definitions for MUI errors mingw lacks (Bert Belder)
|
267
|
+
|
268
|
+
* build: enable warnings in autotools build (Ben Noordhuis)
|
269
|
+
|
270
|
+
* build: remove -Wno-dollar-in-identifier-extension (Ben Noordhuis)
|
271
|
+
|
272
|
+
* build: move flags from Makefile.am to configure.ac (Ben Noordhuis)
|
273
|
+
|
274
|
+
|
275
|
+
2015.01.06, Version 0.10.32 (Stable), 378de30c59aef5fdb6d130fa5cfcb0a68fce571c
|
276
|
+
|
277
|
+
Changes since version 0.10.31:
|
278
|
+
|
279
|
+
* linux: fix epoll_pwait() sigmask size calculation (Ben Noordhuis)
|
280
|
+
|
281
|
+
|
282
|
+
2014.12.25, Version 1.1.0 (Stable), 9572f3e74a167f59a8017e57ca3ebe91ffd88e18
|
283
|
+
|
284
|
+
Changes since version 1.0.2:
|
285
|
+
|
286
|
+
* test: test that closing a poll handle doesn't corrupt the stack (Bert Belder)
|
287
|
+
|
288
|
+
* win: fix compilation of tests (Marc Schlaich)
|
289
|
+
|
290
|
+
* Revert "win: keep a reference to AFD_POLL_INFO in cancel poll" (Bert Belder)
|
291
|
+
|
292
|
+
* win: avoid stack corruption when closing a poll handle (Bert Belder)
|
293
|
+
|
294
|
+
* test: fix test-fs-file-loop on Windows (Bert Belder)
|
295
|
+
|
296
|
+
* test: fix test-cwd-and-chdir (Bert Belder)
|
297
|
+
|
298
|
+
* doc: indicate what version uv_loop_configure was added on (Saúl Ibarra
|
299
|
+
Corretgé)
|
300
|
+
|
301
|
+
* doc: fix sphinx warning (Saúl Ibarra Corretgé)
|
302
|
+
|
303
|
+
* test: skip spawn_setuid_setgid if we get EACCES (Saúl Ibarra Corretgé)
|
304
|
+
|
305
|
+
* test: silence some Clang warnings (Saúl Ibarra Corretgé)
|
306
|
+
|
307
|
+
* test: relax osx_select_many_fds (Saúl Ibarra Corretgé)
|
308
|
+
|
309
|
+
* test: fix compilation warnings when building with Clang (Saúl Ibarra
|
310
|
+
Corretgé)
|
311
|
+
|
312
|
+
* win: fix autotools build of tests (Luis Lavena)
|
313
|
+
|
314
|
+
* gitignore: ignore Visual Studio files (Marc Schlaich)
|
315
|
+
|
316
|
+
* win: set fallback message if FormatMessage fails (Marc Schlaich)
|
317
|
+
|
318
|
+
* win: fall back to default language in uv_dlerror (Marc Schlaich)
|
319
|
+
|
320
|
+
* test: improve compatibility for dlerror test (Marc Schlaich)
|
321
|
+
|
322
|
+
* test: check dlerror is "no error" in no error case (Marc Schlaich)
|
323
|
+
|
324
|
+
* unix: change uv_cwd not to return a trailing slash (Saúl Ibarra Corretgé)
|
325
|
+
|
326
|
+
* test: fix cwd_and_chdir test on Unix (Saúl Ibarra Corretgé)
|
327
|
+
|
328
|
+
* test: add uv_cwd output to platform_output test (Saúl Ibarra Corretgé)
|
329
|
+
|
330
|
+
* build: fix dragonflybsd autotools build (John Marino)
|
331
|
+
|
332
|
+
* win: scandir use 'ls' for formatting long strings (Kenneth Perry)
|
333
|
+
|
334
|
+
* build: remove clang and gcc_version gyp defines (Ben Noordhuis)
|
335
|
+
|
336
|
+
* unix, windows: don't treat uv_run_mode as a bitmask (Saúl Ibarra Corretgé)
|
337
|
+
|
338
|
+
* unix, windows: fix UV_RUN_ONCE mode if progress was made (Saúl Ibarra
|
339
|
+
Corretgé)
|
340
|
+
|
341
|
+
|
342
|
+
2014.12.25, Version 0.10.31 (Stable), 4dbd27e2219069a6daa769fb37f98673b77b4261
|
343
|
+
|
344
|
+
Changes since version 0.10.30:
|
345
|
+
|
346
|
+
* test: test that closing a poll handle doesn't corrupt the stack (Bert Belder)
|
347
|
+
|
348
|
+
* win: fix compilation of tests (Marc Schlaich)
|
349
|
+
|
350
|
+
* Revert "win: keep a reference to AFD_POLL_INFO in cancel poll" (Bert Belder)
|
351
|
+
|
352
|
+
* win: avoid stack corruption when closing a poll handle (Bert Belder)
|
353
|
+
|
354
|
+
* gitignore: ignore Visual Studio files (Marc Schlaich)
|
355
|
+
|
356
|
+
* win: set fallback message if FormatMessage fails (Marc Schlaich)
|
357
|
+
|
358
|
+
* win: fall back to default language in uv_dlerror (Marc Schlaich)
|
359
|
+
|
360
|
+
* test: improve compatibility for dlerror test (Marc Schlaich)
|
361
|
+
|
362
|
+
* test: check dlerror is "no error" in no error case (Marc Schlaich)
|
363
|
+
|
364
|
+
* build: link against -pthread (Logan Rosen)
|
365
|
+
|
366
|
+
* win: scandir use 'ls' for formatting long strings (Kenneth Perry)
|
367
|
+
|
368
|
+
|
369
|
+
2014.12.10, Version 1.0.2 (Stable), eec671f0059953505f9a3c9aeb7f9f31466dd7cd
|
370
|
+
|
371
|
+
Changes since version 1.0.1:
|
372
|
+
|
373
|
+
* linux: fix sigmask size arg in epoll_pwait() call (Ben Noordhuis)
|
374
|
+
|
375
|
+
* linux: handle O_NONBLOCK != SOCK_NONBLOCK case (Helge Deller)
|
376
|
+
|
377
|
+
* doc: fix spelling (Joey Geralnik)
|
378
|
+
|
379
|
+
* unix, windows: fix typos in comments (Joey Geralnik)
|
380
|
+
|
381
|
+
* test: canonicalize test runner path (Ben Noordhuis)
|
382
|
+
|
383
|
+
* test: fix compilation warnings (Saúl Ibarra Corretgé)
|
384
|
+
|
385
|
+
* test: skip tty test if detected width and height are 0 (Saúl Ibarra Corretgé)
|
386
|
+
|
387
|
+
* doc: update README with IRC channel (Saúl Ibarra Corretgé)
|
388
|
+
|
389
|
+
* Revert "unix: use cfmakeraw() for setting raw TTY mode" (Ben Noordhuis)
|
390
|
+
|
391
|
+
* doc: document how to get result of uv_fs_mkdtemp (Tim Caswell)
|
392
|
+
|
393
|
+
* unix: add flag for blocking SIGPROF during poll (Ben Noordhuis)
|
394
|
+
|
395
|
+
* unix, windows: add uv_loop_configure() function (Ben Noordhuis)
|
396
|
+
|
397
|
+
* win: keep a reference to AFD_POLL_INFO in cancel poll (Marc Schlaich)
|
398
|
+
|
399
|
+
* test: raise fd limit for OSX select test (Saúl Ibarra Corretgé)
|
400
|
+
|
401
|
+
* unix: remove overzealous assert in uv_read_stop (Saúl Ibarra Corretgé)
|
402
|
+
|
403
|
+
* unix: reset the reading flag when a stream gets EOF (Saúl Ibarra Corretgé)
|
404
|
+
|
405
|
+
* unix: stop reading if an error is produced (Saúl Ibarra Corretgé)
|
406
|
+
|
407
|
+
* cleanup: remove all dead assignments (Maciej Małecki)
|
408
|
+
|
409
|
+
* linux: return early if we have no interfaces (Maciej Małecki)
|
410
|
+
|
411
|
+
* cleanup: remove a dead increment (Maciej Małecki)
|
412
|
+
|
413
|
+
|
414
|
+
2014.12.10, Version 0.10.30 (Stable), 5a63f5e9546dca482eeebc3054139b21f509f21f
|
415
|
+
|
416
|
+
Changes since version 0.10.29:
|
417
|
+
|
418
|
+
* linux: fix sigmask size arg in epoll_pwait() call (Ben Noordhuis)
|
419
|
+
|
420
|
+
* linux: handle O_NONBLOCK != SOCK_NONBLOCK case (Helge Deller)
|
421
|
+
|
422
|
+
* doc: update project links (Ben Noordhuis)
|
423
|
+
|
424
|
+
* windows: fix compilation of tests (Marc Schlaich)
|
425
|
+
|
426
|
+
* unix: add flag for blocking SIGPROF during poll (Ben Noordhuis)
|
427
|
+
|
428
|
+
* unix, windows: add uv_loop_configure() function (Ben Noordhuis)
|
429
|
+
|
430
|
+
* win: keep a reference to AFD_POLL_INFO in cancel poll (Marc Schlaich)
|
431
|
+
|
432
|
+
|
433
|
+
2014.11.27, Version 1.0.1 (Stable), 0a8e81374e861d425b56c45c8599595d848911d2
|
434
|
+
|
435
|
+
Changes since version 1.0.0:
|
436
|
+
|
437
|
+
* readme: remove Rust from users (Elijah Andrews)
|
438
|
+
|
439
|
+
* doc,build,include: update project links (Ben Noordhuis)
|
440
|
+
|
441
|
+
* doc: fix typo: Strcutures -> Structures (Michael Ira Krufky)
|
442
|
+
|
443
|
+
* unix: fix processing process handles queue (Saúl Ibarra Corretgé)
|
444
|
+
|
445
|
+
* win: replace non-ansi characters in source file (Bert Belder)
|
446
|
+
|
447
|
+
|
448
|
+
2014.11.21, Version 1.0.0 (Stable), feb2a9e6947d892f449b2770c4090f7d8c88381b
|
449
|
+
|
450
|
+
Changes since version 1.0.0-rc2:
|
451
|
+
|
452
|
+
* doc: fix git/svn url for gyp repo in README (Emmanuel Odeke)
|
453
|
+
|
454
|
+
* windows: fix fs_read with nbufs > 1 and offset (Unknown W. Brackets)
|
455
|
+
|
456
|
+
* win: add missing IP_ADAPTER_UNICAST_ADDRESS_LH definition for MinGW
|
457
|
+
(huxingyi)
|
458
|
+
|
459
|
+
* doc: mention homebrew in README (Mikhail Mukovnikov)
|
460
|
+
|
461
|
+
* doc: add learnuv workshop to README (Thorsten Lorenz)
|
462
|
+
|
463
|
+
* doc: fix parameter name in uv_fs_access (Saúl Ibarra Corretgé)
|
464
|
+
|
465
|
+
* unix: use cfmakeraw() for setting raw TTY mode (Yuri D'Elia)
|
466
|
+
|
467
|
+
* win: fix uv_thread_self() (Alexis Campailla)
|
468
|
+
|
469
|
+
* build: add x32 support to gyp build (Ben Noordhuis)
|
470
|
+
|
471
|
+
* build: remove dtrace probes (Ben Noordhuis)
|
472
|
+
|
473
|
+
* doc: fix link in misc.rst (Manos Nikolaidis)
|
474
|
+
|
475
|
+
* mailmap: remove duplicated entries (Saúl Ibarra Corretgé)
|
476
|
+
|
477
|
+
* gyp: fix comment regarding version info location (Saúl Ibarra Corretgé)
|
478
|
+
|
479
|
+
|
480
|
+
2014.10.21, Version 1.0.0-rc2 (Pre-release)
|
481
|
+
|
482
|
+
Changes since version 1.0.0-rc1:
|
483
|
+
|
484
|
+
* build: add missing fixtures to distribution tarball (Rob Adams)
|
485
|
+
|
486
|
+
* doc: update references to current stable branch (Zachary Newman)
|
487
|
+
|
488
|
+
* fs: fix readdir on empty directory (Fedor Indutny)
|
489
|
+
|
490
|
+
* fs: rename uv_fs_readdir to uv_fs_scandir (Saúl Ibarra Corretgé)
|
491
|
+
|
492
|
+
* doc: document uv_alloc_cb (Saúl Ibarra Corretgé)
|
493
|
+
|
494
|
+
* doc: add migration guide from version 0.10 (Saúl Ibarra Corretgé)
|
495
|
+
|
496
|
+
* build: add DragonFly BSD support in autotools (Robin Hahling)
|
497
|
+
|
498
|
+
* doc: document missing stream related structures (Saúl Ibarra Corretgé)
|
499
|
+
|
500
|
+
* doc: clarify uv_loop_t.data field lifetime (Saúl Ibarra Corretgé)
|
501
|
+
|
502
|
+
* doc: add documentation for missing functions and structures (Saúl Ibarra
|
503
|
+
Corretgé)
|
504
|
+
|
505
|
+
* doc: fix punctuation and grammar in README (Jeff Widman)
|
506
|
+
|
507
|
+
* windows: return libuv error codes in uv_poll_init() (cjihrig)
|
508
|
+
|
509
|
+
* unix, windows: add uv_fs_access() (cjihrig)
|
510
|
+
|
511
|
+
* windows: fix netmask detection (Alexis Campailla)
|
512
|
+
|
513
|
+
* unix, windows: don't include null byte in uv_cwd size (Saúl Ibarra Corretgé)
|
514
|
+
|
515
|
+
* unix, windows: add uv_thread_equal (Tomasz Kołodziejski)
|
516
|
+
|
517
|
+
* windows: fix fs_write with nbufs > 1 and offset (Unknown W. Brackets)
|
518
|
+
|
519
|
+
|
520
|
+
2014.10.21, Version 0.10.29 (Stable), 2d728542d3790183417f8f122a110693cd85db14
|
521
|
+
|
522
|
+
Changes since version 0.10.28:
|
523
|
+
|
524
|
+
* darwin: allocate enough space for select() hack (Fedor Indutny)
|
525
|
+
|
526
|
+
* linux: try epoll_pwait if epoll_wait is missing (Michael Hudson-Doyle)
|
527
|
+
|
528
|
+
* windows: map ERROR_INVALID_DRIVE to UV_ENOENT (Saúl Ibarra Corretgé)
|
529
|
+
|
530
|
+
|
531
|
+
2014.09.18, Version 1.0.0-rc1 (Unstable), 0c28bbf7b42882853d1799ab96ff68b07f7f8d49
|
532
|
+
|
533
|
+
Changes since version 0.11.29:
|
534
|
+
|
535
|
+
* windows: improve timer precision (Alexis Campailla)
|
536
|
+
|
537
|
+
* build, gyp: set xcode flags (Recep ASLANTAS)
|
538
|
+
|
539
|
+
* ignore: include m4 files which are created manually (Recep ASLANTAS)
|
540
|
+
|
541
|
+
* build: add m4 for feature/flag-testing (Recep ASLANTAS)
|
542
|
+
|
543
|
+
* ignore: ignore Xcode project and workspace files (Recep ASLANTAS)
|
544
|
+
|
545
|
+
* unix: fix warnings about dollar symbol usage in identifiers (Recep ASLANTAS)
|
546
|
+
|
547
|
+
* unix: fix warnings when loading functions with dlsym (Recep ASLANTAS)
|
548
|
+
|
549
|
+
* linux: try epoll_pwait if epoll_wait is missing (Michael Hudson-Doyle)
|
550
|
+
|
551
|
+
* test: add test for closing and recreating default loop (Saúl Ibarra Corretgé)
|
552
|
+
|
553
|
+
* windows: properly close the default loop (Saúl Ibarra Corretgé)
|
554
|
+
|
555
|
+
* version: add ability to specify a version suffix (Saúl Ibarra Corretgé)
|
556
|
+
|
557
|
+
* doc: add API documentation (Saúl Ibarra Corretgé)
|
558
|
+
|
559
|
+
* test: don't close connection on write error (Trevor Norris)
|
560
|
+
|
561
|
+
* windows: further simplify the code for timers (Saúl Ibarra Corretgé)
|
562
|
+
|
563
|
+
* gyp: remove UNLIMITED_SELECT from dependent define (Fedor Indutny)
|
564
|
+
|
565
|
+
* darwin: allocate enough space for select() hack (Fedor Indutny)
|
566
|
+
|
567
|
+
* unix, windows: don't allow a NULL callback on timers (Saúl Ibarra Corretgé)
|
568
|
+
|
569
|
+
* windows: simplify code in uv_timer_again (Saúl Ibarra Corretgé)
|
570
|
+
|
571
|
+
* test: use less requests on tcp-write-queue-order (Saúl Ibarra Corretgé)
|
572
|
+
|
573
|
+
* unix: stop child process watcher after last one exits (Saúl Ibarra Corretgé)
|
574
|
+
|
575
|
+
* unix: simplify how process handle queue is managed (Saúl Ibarra Corretgé)
|
576
|
+
|
577
|
+
* windows: remove duplicated field (mattn)
|
578
|
+
|
579
|
+
* core: add a reserved field to uv_handle_t and uv_req_t (Saúl Ibarra Corretgé)
|
580
|
+
|
581
|
+
* windows: fix buffer leak after failed udp send (Bert Belder)
|
582
|
+
|
583
|
+
* windows: make sure sockets and handles are reset on close (Saúl Ibarra Corretgé)
|
584
|
+
|
585
|
+
* unix, windows: add uv_fileno (Saúl Ibarra Corretgé)
|
586
|
+
|
587
|
+
* build: use same CFLAGS in autotools build as in gyp (Saúl Ibarra Corretgé)
|
588
|
+
|
589
|
+
* build: remove unneeded define in uv.gyp (Saúl Ibarra Corretgé)
|
590
|
+
|
591
|
+
* test: fix watcher_cross_stop on Windows (Saúl Ibarra Corretgé)
|
592
|
+
|
593
|
+
* unix, windows: move includes for EAI constants (Saúl Ibarra Corretgé)
|
594
|
+
|
595
|
+
* unix: fix exposing EAI_* glibc-isms (Saúl Ibarra Corretgé)
|
596
|
+
|
597
|
+
* unix: fix tcp write after bad connect freezing (Andrius Bentkus)
|
598
|
+
|
599
|
+
|
600
|
+
2014.08.20, Version 0.11.29 (Unstable), 35451fed830807095bbae8ef981af004a4b9259e
|
601
|
+
|
602
|
+
Changes since version 0.11.28:
|
603
|
+
|
604
|
+
* windows: make uv_read_stop immediately stop reading (Jameson Nash)
|
605
|
+
|
606
|
+
* windows: fix uv__getaddrinfo_translate_error (Alexis Campailla)
|
607
|
+
|
608
|
+
* netbsd: fix build (Saúl Ibarra Corretgé)
|
609
|
+
|
610
|
+
* unix, windows: add uv_recv_buffer_size and uv_send_buffer_size (Andrius
|
611
|
+
Bentkus)
|
612
|
+
|
613
|
+
* windows: add support for UNC paths on uv_spawn (Paul Goldsmith)
|
614
|
+
|
615
|
+
* windows: replace use of inet_addr with uv_inet_pton (Saúl Ibarra Corretgé)
|
616
|
+
|
617
|
+
* unix: replace some asserts with returning errors (Andrius Bentkus)
|
618
|
+
|
619
|
+
* windows: use OpenBSD implementation for uv_fs_mkdtemp (Pavel Platto)
|
620
|
+
|
621
|
+
* windows: fix GetNameInfoW error handling (Alexis Campailla)
|
622
|
+
|
623
|
+
* fs: introduce uv_readdir_next() and report types (Fedor Indutny)
|
624
|
+
|
625
|
+
* fs: extend reported types in uv_fs_readdir_next (Saúl Ibarra Corretgé)
|
626
|
+
|
627
|
+
* unix: read on stream even when UV__POLLHUP set. (Julien Gilli)
|
628
|
+
|
629
|
+
|
630
|
+
2014.08.08, Version 0.11.28 (Unstable), fc9e2a0bc487b299c0cd3b2c9a23aeb554b5d8d1
|
631
|
+
|
632
|
+
Changes since version 0.11.27:
|
633
|
+
|
634
|
+
* unix, windows: const-ify handle in uv_udp_getsockname (Rasmus Pedersen)
|
635
|
+
|
636
|
+
* windows: use UV_ECANCELED for aborted TCP writes (Saúl Ibarra Corretgé)
|
637
|
+
|
638
|
+
* windows: add more required environment variables (Jameson Nash)
|
639
|
+
|
640
|
+
* windows: sort environment variables before calling CreateProcess (Jameson
|
641
|
+
Nash)
|
642
|
+
|
643
|
+
* unix, windows: move uv_loop_close out of assert (John Firebaugh)
|
644
|
+
|
645
|
+
* windows: fix buffer overflow on uv__getnameinfo_work() (lilohuang)
|
646
|
+
|
647
|
+
* windows: add uv_backend_timeout (Jameson Nash)
|
648
|
+
|
649
|
+
* test: disable tcp_close_accept on Windows (Saúl Ibarra Corretgé)
|
650
|
+
|
651
|
+
* windows: read the PATH env var of the child (Alex Crichton)
|
652
|
+
|
653
|
+
* include: avoid using C++ 'template' reserved word (Iñaki Baz Castillo)
|
654
|
+
|
655
|
+
* include: fix version number (Saúl Ibarra Corretgé)
|
656
|
+
|
657
|
+
|
658
|
+
2014.07.32, Version 0.11.27 (Unstable), ffe24f955032d060968ea0289af365006afed55e
|
659
|
+
|
660
|
+
Changes since version 0.11.26:
|
661
|
+
|
662
|
+
* unix, windows: use the same threadpool implementation (Saúl Ibarra Corretgé)
|
663
|
+
|
664
|
+
* unix: use struct sockaddr_storage for target UDP addr (Saúl Ibarra Corretgé)
|
665
|
+
|
666
|
+
* doc: add documentation to uv_udp_start_recv (Andrius Bentkus)
|
667
|
+
|
668
|
+
* common: use common uv__count_bufs code (Andrius Bentkus)
|
669
|
+
|
670
|
+
* unix, win: add send_queue_size and send_queue_count to uv_udp_t (Andrius
|
671
|
+
Bentkus)
|
672
|
+
|
673
|
+
* unix, win: add uv_udp_try_send (Andrius Bentkus)
|
674
|
+
|
675
|
+
* unix: return UV_EAGAIN if uv_try_write cannot write any data (Saúl Ibarra
|
676
|
+
Corretgé)
|
677
|
+
|
678
|
+
* windows: fix compatibility with cygwin pipes (Jameson Nash)
|
679
|
+
|
680
|
+
* windows: count queued bytes even if request completed immediately (Saúl
|
681
|
+
Ibarra Corretgé)
|
682
|
+
|
683
|
+
* windows: disable CRT debug handler on MinGW32 (Saúl Ibarra Corretgé)
|
684
|
+
|
685
|
+
* windows: map ERROR_INVALID_DRIVE to UV_ENOENT (Saúl Ibarra Corretgé)
|
686
|
+
|
687
|
+
* unix: try to write immediately in uv_udp_send (Saúl Ibarra Corretgé)
|
688
|
+
|
689
|
+
* unix: remove incorrect assert (Saúl Ibarra Corretgé)
|
690
|
+
|
691
|
+
* openbsd: avoid requiring privileges for uv_resident_set_memory (Aaron Bieber)
|
692
|
+
|
693
|
+
* unix: guarantee write queue cb execution order in streams (Andrius Bentkus)
|
694
|
+
|
695
|
+
* img: add logo files (Saúl Ibarra Corretgé)
|
696
|
+
|
697
|
+
* aix: improve AIX compatibility (Andrew Low)
|
698
|
+
|
699
|
+
* windows: return bind error immediately when implicitly binding (Saúl Ibarra
|
700
|
+
Corretgé)
|
701
|
+
|
702
|
+
* windows: don't use atexit for cleaning up the threadpool (Saúl Ibarra
|
703
|
+
Corretgé)
|
704
|
+
|
705
|
+
* windows: destroy work queue elements when colsing a loop (Saúl Ibarra
|
706
|
+
Corretgé)
|
707
|
+
|
708
|
+
* unix, windows: add uv_fs_mkdtemp (Pavel Platto)
|
709
|
+
|
710
|
+
* build: handle platforms without multiprocessing.synchronize (Saúl Ibarra
|
711
|
+
Corretgé)
|
712
|
+
|
713
|
+
* windows: change GENERIC_ALL to GENERIC_WRITE in fs__create_junction (Tony
|
714
|
+
Kelman)
|
715
|
+
|
716
|
+
* windows: relay TCP bind errors via ipc (Alexis Campailla)
|
717
|
+
|
718
|
+
|
719
|
+
2014.07.32, Version 0.10.28 (Stable), 9c14b616f5fb84bfd7d45707bab4bbb85894443e
|
720
|
+
|
721
|
+
Changes since version 0.10.27:
|
722
|
+
|
723
|
+
* windows: fix handling closed socket while poll handle is closing (Saúl Ibarra
|
724
|
+
Corretgé)
|
725
|
+
|
726
|
+
* unix: return system error on EAI_SYSTEM (Saúl Ibarra Corretgé)
|
727
|
+
|
728
|
+
* unix: fix bogus structure field name (Saúl Ibarra Corretgé)
|
729
|
+
|
730
|
+
* darwin: invoke `mach_timebase_info` only once (Fedor Indutny)
|
731
|
+
|
732
|
+
|
733
|
+
2014.06.28, Version 0.11.26 (Unstable), 115281a1058c4034d5c5ccedacb667fe3f6327ea
|
734
|
+
|
735
|
+
Changes since version 0.11.25:
|
736
|
+
|
737
|
+
* windows: add VT100 codes ?25l and ?25h (JD Ballard)
|
738
|
+
|
739
|
+
* windows: add invert ANSI (7 / 27) emulation (JD Ballard)
|
740
|
+
|
741
|
+
* unix: fix handling error on UDP socket creation (Saúl Ibarra Corretgé)
|
742
|
+
|
743
|
+
* unix, windows: getnameinfo implementation (Rasmus Pedersen)
|
744
|
+
|
745
|
+
* heap: fix `heap_remove()` (Fedor Indutny)
|
746
|
+
|
747
|
+
* unix, windows: fix parsing scoped IPv6 addresses (Saúl Ibarra Corretgé)
|
748
|
+
|
749
|
+
* windows: fix handling closed socket while poll handle is closing (Saúl Ibarra
|
750
|
+
Corretgé)
|
751
|
+
|
752
|
+
* thread: barrier functions (Ben Noordhuis)
|
753
|
+
|
754
|
+
* windows: fix PYTHON environment variable usage (Jay Satiro)
|
755
|
+
|
756
|
+
* unix, windows: return system error on EAI_SYSTEM (Saúl Ibarra Corretgé)
|
757
|
+
|
758
|
+
* windows: fix handling closed socket while poll handle is closing (Saúl Ibarra
|
759
|
+
Corretgé)
|
760
|
+
|
761
|
+
* unix: don't run i/o callbacks after prepare callbacks (Saúl Ibarra Corretgé)
|
762
|
+
|
763
|
+
* windows: add tty unicode support for input (Peter Atashian)
|
764
|
+
|
765
|
+
* header: introduce `uv_loop_size()` (Andrius Bentkus)
|
766
|
+
|
767
|
+
* darwin: invoke `mach_timebase_info` only once (Fedor Indutny)
|
768
|
+
|
769
|
+
|
770
|
+
2014.05.02, Version 0.11.25 (Unstable), 2acd544cff7142e06aa3b09ec64b4a33dd9ab996
|
771
|
+
|
772
|
+
Changes since version 0.11.24:
|
773
|
+
|
774
|
+
* osx: pass const handle pointer to uv___stream_fd (Chernyshev Viacheslav)
|
775
|
+
|
776
|
+
* unix, windows: pass const handle ptr to uv_tcp_get*name (Chernyshev
|
777
|
+
Viacheslav)
|
778
|
+
|
779
|
+
* common: pass const sockaddr ptr to uv_ip*_name (Chernyshev Viacheslav)
|
780
|
+
|
781
|
+
* unix, windows: validate flags on uv_udp|tcp_bind (Saúl Ibarra Corretgé)
|
782
|
+
|
783
|
+
* unix: handle case when addr is not initialized after recvmsg (Saúl Ibarra
|
784
|
+
Corretgé)
|
785
|
+
|
786
|
+
* unix, windows: uv_now constness (Rasmus Pedersen)
|
787
|
+
|
788
|
+
|
789
|
+
2014.04.15, Version 0.11.24 (Unstable), ed948c29f6e8c290f79325a6f0bc9ef35bcde644
|
790
|
+
|
791
|
+
Changes since version 0.11.23:
|
792
|
+
|
793
|
+
* linux: reduce file descriptor count of async pipe (Ben Noordhuis)
|
794
|
+
|
795
|
+
* sunos: support IPv6 qualified link-local addresses (Saúl Ibarra Corretgé)
|
796
|
+
|
797
|
+
* windows: fix opening of read-only stdin pipes (Alexis Campailla)
|
798
|
+
|
799
|
+
* windows: Fix an infinite loop in uv_spawn (Alex Crichton)
|
800
|
+
|
801
|
+
* windows: fix console signal handler refcount (李港平)
|
802
|
+
|
803
|
+
* inet: allow scopeid in uv_inet_pton (Fedor Indutny)
|
804
|
+
|
805
|
+
|
806
|
+
2014.04.07, Version 0.11.23 (Unstable), e54de537efcacd593f36fcaaf8b4cb9e64313275
|
807
|
+
|
808
|
+
Changes since version 0.11.22:
|
809
|
+
|
810
|
+
* fs: avoid using readv/writev where possible (Fedor Indutny)
|
811
|
+
|
812
|
+
* mingw: fix build with autotools (Saúl Ibarra Corretgé)
|
813
|
+
|
814
|
+
* bsd: support IPv6 qualified link-local addresses (Saúl Ibarra Corretgé)
|
815
|
+
|
816
|
+
* unix: add UV_HANDLE_IPV6 flag to tcp and udp handles (Saúl Ibarra Corretgé)
|
817
|
+
|
818
|
+
* unix, windows: do not set SO_REUSEADDR by default on udp (Saúl Ibarra
|
819
|
+
Corretgé)
|
820
|
+
|
821
|
+
* windows: fix check in uv_tty_endgame() (Maks Naumov)
|
822
|
+
|
823
|
+
* unix, windows: add IPv6 support for uv_udp_multicast_interface (Saúl Ibarra
|
824
|
+
Corretgé)
|
825
|
+
|
826
|
+
* unix: fallback to blocking writes if reopening a tty fails (Saúl Ibarra
|
827
|
+
Corretgé)
|
828
|
+
|
829
|
+
* unix: fix handling uv__open_cloexec failure (Saúl Ibarra Corretgé)
|
830
|
+
|
831
|
+
* unix, windows: add IPv6 support to uv_udp_set_membership (Saúl Ibarra
|
832
|
+
Corretgé)
|
833
|
+
|
834
|
+
* unix, windows: removed unused status parameter (Saúl Ibarra Corretgé)
|
835
|
+
|
836
|
+
* android: add support of ifaddrs in android (Javier Hernández)
|
837
|
+
|
838
|
+
* build: fix SunOS and AIX build with autotools (Saúl Ibarra Corretgé)
|
839
|
+
|
840
|
+
* build: freebsd link with libelf if dtrace enabled (Saúl Ibarra Corretgé)
|
841
|
+
|
842
|
+
* stream: do not leak `alloc_cb` buffers on error (Fedor Indutny)
|
843
|
+
|
844
|
+
* unix: fix setting written size on uv_wd (Saúl Ibarra Corretgé)
|
845
|
+
|
846
|
+
|
847
|
+
2014.03.11, Version 0.11.22 (Unstable), cd0c19b1d3c56acf0ade7687006e12e75fbda36d
|
848
|
+
|
849
|
+
Changes since version 0.11.21:
|
850
|
+
|
851
|
+
* unix, windows: map ERANGE errno (Saúl Ibarra Corretgé)
|
852
|
+
|
853
|
+
* unix, windows: make uv_cwd be consistent with uv_exepath (Saúl Ibarra
|
854
|
+
Corretgé)
|
855
|
+
|
856
|
+
* process: remove debug perror() prints (Fedor Indutny)
|
857
|
+
|
858
|
+
* windows: fall back for volume info query (Isaiah Norton)
|
859
|
+
|
860
|
+
* pipe: allow queueing pending handles (Fedor Indutny)
|
861
|
+
|
862
|
+
* windows: fix winsock status codes for address errors (Raul Martins)
|
863
|
+
|
864
|
+
* windows: Remove unused variable from uv__pipe_insert_pending_socket (David
|
865
|
+
Capello)
|
866
|
+
|
867
|
+
* unix: workaround broken pthread_sigmask on Android (Paul Tan)
|
868
|
+
|
869
|
+
* error: add ENXIO for O_NONBLOCK FIFO open() (Fedor Indutny)
|
870
|
+
|
871
|
+
* freebsd: use accept4, introduced in version 10 (Saúl Ibarra Corretgé)
|
872
|
+
|
873
|
+
* windows: fix warnings of MinGW -Wall -O3 (StarWing)
|
874
|
+
|
875
|
+
* openbsd, osx: fix compilation warning on scandir (Saúl Ibarra Corretgé)
|
876
|
+
|
877
|
+
* linux: always deregister closing fds from epoll (Geoffry Song)
|
878
|
+
|
879
|
+
* unix: reopen tty as /dev/tty (Saúl Ibarra Corretgé)
|
880
|
+
|
881
|
+
* kqueue: invalidate fd in uv_fs_event_t (Fedor Indutny)
|
882
|
+
|
883
|
+
|
884
|
+
2014.02.28, Version 0.11.21 (Unstable), 3ef958158ae1019e027ebaa93114160099db5206
|
885
|
+
|
886
|
+
Changes since version 0.11.20:
|
887
|
+
|
888
|
+
* unix: fix uv_fs_write when using an empty buffer (Saúl Ibarra Corretgé)
|
889
|
+
|
890
|
+
* unix, windows: add assertion in uv_loop_delete (Saúl Ibarra Corretgé)
|
891
|
+
|
892
|
+
|
893
|
+
2014.02.27, Version 0.11.20 (Unstable), 88355e081b51c69ee1e2b6b0015a4e3d38bd0579
|
894
|
+
|
895
|
+
Changes since version 0.11.19:
|
896
|
+
|
897
|
+
* stream: start thread after assignments (Oguz Bastemur)
|
898
|
+
|
899
|
+
* fs: `uv__cloexec()` opened fd (Fedor Indutny)
|
900
|
+
|
901
|
+
* gyp: qualify `library` variable (Fedor Indutny)
|
902
|
+
|
903
|
+
* unix, win: add uv_udp_set_multicast_interface() (Austin Foxley)
|
904
|
+
|
905
|
+
* unix: fix uv_tcp_nodelay return value in case of error (Saúl Ibarra Corretgé)
|
906
|
+
|
907
|
+
* unix: call setgoups before calling setuid/setgid (Saúl Ibarra Corretgé)
|
908
|
+
|
909
|
+
* include: mark close_cb field as private (Saúl Ibarra Corretgé)
|
910
|
+
|
911
|
+
* unix, windows: map EFBIG errno (Saúl Ibarra Corretgé)
|
912
|
+
|
913
|
+
* unix: correct error when calling uv_shutdown twice (Keno Fischer)
|
914
|
+
|
915
|
+
* windows: fix building on MinGW (Alex Crichton)
|
916
|
+
|
917
|
+
* windows: always initialize uv_process_t (Alex Crichton)
|
918
|
+
|
919
|
+
* include: expose libuv version in header files (Saúl Ibarra Corretgé)
|
920
|
+
|
921
|
+
* fs: vectored IO API for filesystem read/write (Benjamin Saunders)
|
922
|
+
|
923
|
+
* windows: freeze in uv_tcp_endgame (Alexis Campailla)
|
924
|
+
|
925
|
+
* sunos: handle rearm errors (Fedor Indutny)
|
926
|
+
|
927
|
+
* unix: use a heap for timers (Ben Noordhuis)
|
928
|
+
|
929
|
+
* linux: always deregister closing fds from epoll (Geoffry Song)
|
930
|
+
|
931
|
+
* linux: include grp.h for setgroups() (William Light)
|
932
|
+
|
933
|
+
* unix, windows: add uv_loop_init and uv_loop_close (Saúl Ibarra Corretgé)
|
934
|
+
|
935
|
+
* unix, windows: add uv_getrusage() function (Oleg Efimov)
|
936
|
+
|
937
|
+
* win: minor error handle fix to uv_pipe_write_impl (Rasmus Pedersen)
|
938
|
+
|
939
|
+
* heap: fix node removal (Keno Fischer)
|
940
|
+
|
941
|
+
* win: fix C99/C++ comment (Rasmus Pedersen)
|
942
|
+
|
943
|
+
* fs: vectored IO API for filesystem read/write (Benjamin Saunders)
|
944
|
+
|
945
|
+
* unix, windows: add uv_pipe_getsockname (Saúl Ibarra Corretgé)
|
946
|
+
|
947
|
+
* unix, windows: map ENOPROTOOPT errno (Saúl Ibarra Corretgé)
|
948
|
+
|
949
|
+
* errno: add ETXTBSY (Fedor Indutny)
|
950
|
+
|
951
|
+
* fsevent: rename filename field to path (Saúl Ibarra Corretgé)
|
952
|
+
|
953
|
+
* unix, windows: add uv_fs_event_getpath (Saúl Ibarra Corretgé)
|
954
|
+
|
955
|
+
* unix, windows: add uv_fs_poll_getpath (Saúl Ibarra Corretgé)
|
956
|
+
|
957
|
+
* unix, windows: map ERANGE errno (Saúl Ibarra Corretgé)
|
958
|
+
|
959
|
+
* unix, windows: set required size on UV_ENOBUFS (Saúl Ibarra Corretgé)
|
960
|
+
|
961
|
+
* unix, windows: clarify what uv_stream_set_blocking does (Saúl Ibarra
|
962
|
+
Corretgé)
|
963
|
+
|
964
|
+
* fs: use preadv on Linux if available (Brian White)
|
965
|
+
|
966
|
+
|
967
|
+
2014.01.30, Version 0.11.19 (Unstable), 336a1825309744f920230ec3e427e78571772347
|
968
|
+
|
969
|
+
Changes since version 0.11.18:
|
970
|
+
|
971
|
+
* linux: move sscanf() out of the assert() (Trevor Norris)
|
972
|
+
|
973
|
+
* linux: fix C99/C++ comment (Fedor Indutny)
|
974
|
+
|
975
|
+
|
976
|
+
2014.05.02, Version 0.10.27 (Stable), 6e24ce23b1e7576059f85a608eca13b766458a01
|
977
|
+
|
978
|
+
Changes since version 0.10.26:
|
979
|
+
|
980
|
+
* windows: fix console signal handler refcount (Saúl Ibarra Corretgé)
|
981
|
+
|
982
|
+
* win: always leave crit section in get_proc_title (Fedor Indutny)
|
983
|
+
|
984
|
+
|
985
|
+
2014.04.07, Version 0.10.26 (Stable), d864907611c25ec986c5e77d4d6d6dee88f26926
|
986
|
+
|
987
|
+
Changes since version 0.10.25:
|
988
|
+
|
989
|
+
* process: don't close stdio fds during spawn (Tonis Tiigi)
|
990
|
+
|
991
|
+
* build, windows: do not fail on Windows SDK Prompt (Marc Schlaich)
|
992
|
+
|
993
|
+
* build, windows: fix x64 configuration issue (Marc Schlaich)
|
994
|
+
|
995
|
+
* win: fix buffer leak on error in pipe.c (Fedor Indutny)
|
996
|
+
|
997
|
+
* kqueue: invalidate fd in uv_fs_event_t (Fedor Indutny)
|
998
|
+
|
999
|
+
* linux: always deregister closing fds from epoll (Geoffry Song)
|
1000
|
+
|
1001
|
+
* error: add ENXIO for O_NONBLOCK FIFO open() (Fedor Indutny)
|
1002
|
+
|
1003
|
+
|
1004
|
+
2014.02.19, Version 0.10.25 (Stable), d778dc588507588b12b9f9d2905078db542ed751
|
1005
|
+
|
1006
|
+
Changes since version 0.10.24:
|
1007
|
+
|
1008
|
+
* stream: start thread after assignments (Oguz Bastemur)
|
1009
|
+
|
1010
|
+
* unix: correct error when calling uv_shutdown twice (Saúl Ibarra Corretgé)
|
1011
|
+
|
1012
|
+
2014.01.30, Version 0.10.24 (Stable), aecd296b6bce9b40f06a61c5c94e43d45ac7308a
|
1013
|
+
|
1014
|
+
Changes since version 0.10.23:
|
1015
|
+
|
1016
|
+
* linux: move sscanf() out of the assert() (Trevor Norris)
|
1017
|
+
|
1018
|
+
* linux: fix C99/C++ comment (Fedor Indutny)
|
1019
|
+
|
1020
|
+
|
1021
|
+
2014.01.23, Version 0.11.18 (Unstable), d47962e9d93d4a55a9984623feaf546406c9cdbb
|
1022
|
+
|
1023
|
+
Changes since version 0.11.17:
|
1024
|
+
|
1025
|
+
* osx: Fix a possible segfault in uv__io_poll (Alex Crichton)
|
1026
|
+
|
1027
|
+
* windows: improved handling of invalid FDs (Alexis Campailla)
|
1028
|
+
|
1029
|
+
* doc: adding ARCHS flag to OS X build command (Nathan Sweet)
|
1030
|
+
|
1031
|
+
* tcp: reveal bind-time errors before listen (Alexis Campailla)
|
1032
|
+
|
1033
|
+
* tcp: uv_tcp_dualstack() (Fedor Indutny)
|
1034
|
+
|
1035
|
+
* linux: relax assumption on /proc/stat parsing (Luca Bruno)
|
1036
|
+
|
1037
|
+
* openbsd: fix obvious bug in uv_cpu_info (Fedor Indutny)
|
1038
|
+
|
1039
|
+
* process: close stdio after dup2'ing it (Fedor Indutny)
|
1040
|
+
|
1041
|
+
* linux: move sscanf() out of the assert() (Trevor Norris)
|
1042
|
+
|
1043
|
+
|
1044
|
+
2014.01.23, Version 0.10.23 (Stable), dbd218e699fec8be311d85e4788be9e28ae884f8
|
1045
|
+
|
1046
|
+
Changes since version 0.10.22:
|
1047
|
+
|
1048
|
+
* linux: relax assumption on /proc/stat parsing (Luca Bruno)
|
1049
|
+
|
1050
|
+
* openbsd: fix obvious bug in uv_cpu_info (Fedor Indutny)
|
1051
|
+
|
1052
|
+
* process: close stdio after dup2'ing it (Fedor Indutny)
|
1053
|
+
|
1054
|
+
|
1055
|
+
2014.01.08, Version 0.10.22 (Stable), f526c90eeff271d9323a9107b9a64a4671fd3103
|
1056
|
+
|
1057
|
+
Changes since version 0.10.21:
|
1058
|
+
|
1059
|
+
* windows: avoid assertion failure when pipe server is closed (Bert Belder)
|
1060
|
+
|
1061
|
+
|
1062
|
+
2013.12.32, Version 0.11.17 (Unstable), 589c224d4c2e79fec65db01d361948f1e4976858
|
1063
|
+
|
1064
|
+
Changes since version 0.11.16:
|
1065
|
+
|
1066
|
+
* stream: allow multiple buffers for uv_try_write (Fedor Indutny)
|
1067
|
+
|
1068
|
+
* unix: fix a possible memory leak in uv_fs_readdir (Alex Crichton)
|
1069
|
+
|
1070
|
+
* unix, windows: add uv_loop_alive() function (Sam Roberts)
|
1071
|
+
|
1072
|
+
* windows: avoid assertion failure when pipe server is closed (Bert Belder)
|
1073
|
+
|
1074
|
+
* osx: Fix a possible segfault in uv__io_poll (Alex Crichton)
|
1075
|
+
|
1076
|
+
* stream: fix uv__stream_osx_select (Fedor Indutny)
|
1077
|
+
|
1078
|
+
|
1079
|
+
2013.12.14, Version 0.11.16 (Unstable), ae0ed8c49d0d313c935c22077511148b6e8408a4
|
1080
|
+
|
1081
|
+
Changes since version 0.11.15:
|
1082
|
+
|
1083
|
+
* fsevents: remove kFSEventStreamCreateFlagNoDefer polyfill (ci-innoq)
|
1084
|
+
|
1085
|
+
* libuv: add more getaddrinfo errors (Steven Kabbes)
|
1086
|
+
|
1087
|
+
* unix: fix accept() EMFILE error handling (Ben Noordhuis)
|
1088
|
+
|
1089
|
+
* linux: fix up SO_REUSEPORT back-port (Ben Noordhuis)
|
1090
|
+
|
1091
|
+
* fsevents: fix subfolder check (Fedor Indutny)
|
1092
|
+
|
1093
|
+
* fsevents: fix invalid memory access (huxingyi)
|
1094
|
+
|
1095
|
+
* windows/timer: fix uv_hrtime discontinuity (Bert Belder)
|
1096
|
+
|
1097
|
+
* unix: fix various memory leaks and undef behavior (Fedor Indutny)
|
1098
|
+
|
1099
|
+
* unix, windows: always update loop time (Saúl Ibarra Corretgé)
|
1100
|
+
|
1101
|
+
* windows: translate system errors in uv_spawn (Alexis Campailla)
|
1102
|
+
|
1103
|
+
* windows: uv_spawn code refactor (Alexis Campailla)
|
1104
|
+
|
1105
|
+
* unix, windows: detect errors in uv_ip4/6_addr (Yorkie)
|
1106
|
+
|
1107
|
+
* stream: introduce uv_try_write(...) (Fedor Indutny)
|
1108
|
+
|
1109
|
+
|
1110
|
+
2013.12.13, Version 0.10.20 (Stable), 04141464dd0fba90ace9aa6f7003ce139b888a40
|
1111
|
+
|
1112
|
+
Changes since version 0.10.19:
|
1113
|
+
|
1114
|
+
* linux: fix up SO_REUSEPORT back-port (Ben Noordhuis)
|
1115
|
+
|
1116
|
+
* fs-event: fix invalid memory access (huxingyi)
|
1117
|
+
|
1118
|
+
|
1119
|
+
2013.11.21, Version 0.11.15 (Unstable), bfe645ed7e99ca5670d9279ad472b604c129d2e5
|
1120
|
+
|
1121
|
+
Changes since version 0.11.14:
|
1122
|
+
|
1123
|
+
* fsevents: report errors to user (Fedor Indutny)
|
1124
|
+
|
1125
|
+
* include: UV_FS_EVENT_RECURSIVE is a flag (Fedor Indutny)
|
1126
|
+
|
1127
|
+
* linux: use CLOCK_MONOTONIC_COARSE if available (Ben Noordhuis)
|
1128
|
+
|
1129
|
+
* build: make systemtap probes work with gyp build (Ben Noordhuis)
|
1130
|
+
|
1131
|
+
* unix: update events from pevents between polls (Fedor Indutny)
|
1132
|
+
|
1133
|
+
* fsevents: support japaneese characters in path (Chris Bank)
|
1134
|
+
|
1135
|
+
* linux: don't turn on SO_REUSEPORT socket option (Ben Noordhuis)
|
1136
|
+
|
1137
|
+
* queue: strengthen type checks (Ben Noordhuis)
|
1138
|
+
|
1139
|
+
* include: remove uv_strlcat() and uv_strlcpy() (Ben Noordhuis)
|
1140
|
+
|
1141
|
+
* build: fix windows smp build with gyp (Geert Jansen)
|
1142
|
+
|
1143
|
+
* unix: return exec errors from uv_spawn, not async (Alex Crichton)
|
1144
|
+
|
1145
|
+
* fsevents: use native character encoding file paths (Ben Noordhuis)
|
1146
|
+
|
1147
|
+
* linux: handle EPOLLHUP without EPOLLIN/EPOLLOUT (Ben Noordhuis)
|
1148
|
+
|
1149
|
+
* windows: use _snwprintf(), not swprintf() (Ben Noordhuis)
|
1150
|
+
|
1151
|
+
* fsevents: use FlagNoDefer for FSEventStreamCreate (Fedor Indutny)
|
1152
|
+
|
1153
|
+
* unix: fix reopened fd bug (Fedor Indutny)
|
1154
|
+
|
1155
|
+
* core: fix fake watcher list and count preservation (Fedor Indutny)
|
1156
|
+
|
1157
|
+
* unix: set close-on-exec flag on received fds (Ben Noordhuis)
|
1158
|
+
|
1159
|
+
* netbsd, openbsd: enable futimes() wrapper (Ben Noordhuis)
|
1160
|
+
|
1161
|
+
* unix: nicer error message when kqueue() fails (Ben Noordhuis)
|
1162
|
+
|
1163
|
+
* samples: add socks5 proxy sample application (Ben Noordhuis)
|
1164
|
+
|
1165
|
+
|
1166
|
+
2013.11.13, Version 0.10.19 (Stable), 33959f7524090b8d2c6c41e2400ca77e31755059
|
1167
|
+
|
1168
|
+
Changes since version 0.10.18:
|
1169
|
+
|
1170
|
+
* darwin: avoid calling GetCurrentProcess (Fedor Indutny)
|
1171
|
+
|
1172
|
+
* unix: update events from pevents between polls (Fedor Indutny)
|
1173
|
+
|
1174
|
+
* fsevents: support japaneese characters in path (Chris Bank)
|
1175
|
+
|
1176
|
+
* linux: don't turn on SO_REUSEPORT socket option (Ben Noordhuis)
|
1177
|
+
|
1178
|
+
* build: fix windows smp build with gyp (Geert Jansen)
|
1179
|
+
|
1180
|
+
* linux: handle EPOLLHUP without EPOLLIN/EPOLLOUT (Ben Noordhuis)
|
1181
|
+
|
1182
|
+
* unix: fix reopened fd bug (Fedor Indutny)
|
1183
|
+
|
1184
|
+
* core: fix fake watcher list and count preservation (Fedor Indutny)
|
1185
|
+
|
1186
|
+
|
1187
|
+
2013.10.30, Version 0.11.14 (Unstable), d7a6482f45c1b4eb4a853dbe1a9ce8090a35633a
|
1188
|
+
|
1189
|
+
Changes since version 0.11.13:
|
1190
|
+
|
1191
|
+
* darwin: create fsevents thread on demand (Ben Noordhuis)
|
1192
|
+
|
1193
|
+
* fsevents: FSEvents is most likely not thread-safe (Fedor Indutny)
|
1194
|
+
|
1195
|
+
* fsevents: use shared FSEventStream (Fedor Indutny)
|
1196
|
+
|
1197
|
+
* windows: make uv_fs_chmod() report errors correctly (Bert Belder)
|
1198
|
+
|
1199
|
+
* windows: make uv_shutdown() for write-only pipes work (Bert Belder)
|
1200
|
+
|
1201
|
+
* windows/fs: wrap multi-statement macros in do..while block (Bert Belder)
|
1202
|
+
|
1203
|
+
* windows/fs: make uv_fs_open() report EINVAL correctly (Bert Belder)
|
1204
|
+
|
1205
|
+
* windows/fs: handle _open_osfhandle() failure correctly (Bert Belder)
|
1206
|
+
|
1207
|
+
* windows/fs: wrap multi-statement macros in do..while block (Bert Belder)
|
1208
|
+
|
1209
|
+
* windows/fs: make uv_fs_open() report EINVAL correctly (Bert Belder)
|
1210
|
+
|
1211
|
+
* windows/fs: handle _open_osfhandle() failure correctly (Bert Belder)
|
1212
|
+
|
1213
|
+
* build: clarify instructions for Windows (Brian Kaisner)
|
1214
|
+
|
1215
|
+
* build: remove GCC_WARN_ABOUT_MISSING_NEWLINE (Ben Noordhuis)
|
1216
|
+
|
1217
|
+
* darwin: fix 10.6 build error in fsevents.c (Ben Noordhuis)
|
1218
|
+
|
1219
|
+
* windows: run close callbacks after polling for i/o (Saúl Ibarra Corretgé)
|
1220
|
+
|
1221
|
+
* include: clarify uv_tcp_bind() behavior (Ben Noordhuis)
|
1222
|
+
|
1223
|
+
* include: clean up includes in uv.h (Ben Noordhuis)
|
1224
|
+
|
1225
|
+
* include: remove UV_IO_PRIVATE_FIELDS macro (Ben Noordhuis)
|
1226
|
+
|
1227
|
+
* include: fix typo in comment in uv.h (Ben Noordhuis)
|
1228
|
+
|
1229
|
+
* include: update uv_is_active() documentation (Ben Noordhuis)
|
1230
|
+
|
1231
|
+
* include: make uv_process_options_t.cwd const (Ben Noordhuis)
|
1232
|
+
|
1233
|
+
* unix: wrap long lines at 80 columns (Ben Noordhuis)
|
1234
|
+
|
1235
|
+
* unix, windows: make uv_is_*() always return 0 or 1 (Ben Noordhuis)
|
1236
|
+
|
1237
|
+
* bench: measure total/init/dispatch/cleanup times (Ben Noordhuis)
|
1238
|
+
|
1239
|
+
* build: use -pthread on sunos (Timothy J. Fontaine)
|
1240
|
+
|
1241
|
+
* windows: remove duplicate check in stream.c (Ben Noordhuis)
|
1242
|
+
|
1243
|
+
* unix: sanity-check fds before closing (Ben Noordhuis)
|
1244
|
+
|
1245
|
+
* unix: remove uv__pipe_accept() (Ben Noordhuis)
|
1246
|
+
|
1247
|
+
* unix: fix uv_spawn() NULL pointer deref on ENOMEM (Ben Noordhuis)
|
1248
|
+
|
1249
|
+
* unix: don't close inherited fds on uv_spawn() fail (Ben Noordhuis)
|
1250
|
+
|
1251
|
+
* unix: revert recent FSEvent changes (Ben Noordhuis)
|
1252
|
+
|
1253
|
+
* fsevents: fix clever rescheduling (Fedor Indutny)
|
1254
|
+
|
1255
|
+
* linux: ignore fractional time in uv_uptime() (Ben Noordhuis)
|
1256
|
+
|
1257
|
+
* unix: fix SIGCHLD waitpid() race in process.c (Ben Noordhuis)
|
1258
|
+
|
1259
|
+
* unix, windows: add uv_fs_event_start/stop functions (Saúl Ibarra Corretgé)
|
1260
|
+
|
1261
|
+
* unix: fix non-synchronized access in signal.c (Ben Noordhuis)
|
1262
|
+
|
1263
|
+
* unix: add atomic-ops.h (Ben Noordhuis)
|
1264
|
+
|
1265
|
+
* unix: add spinlock.h (Ben Noordhuis)
|
1266
|
+
|
1267
|
+
* unix: clean up uv_tty_set_mode() a little (Ben Noordhuis)
|
1268
|
+
|
1269
|
+
* unix: make uv_tty_reset_mode() async signal-safe (Ben Noordhuis)
|
1270
|
+
|
1271
|
+
* include: add E2BIG status code mapping (Ben Noordhuis)
|
1272
|
+
|
1273
|
+
* windows: fix duplicate case build error (Ben Noordhuis)
|
1274
|
+
|
1275
|
+
* windows: remove unneeded check (Saúl Ibarra Corretgé)
|
1276
|
+
|
1277
|
+
* include: document pipe path truncation behavior (Ben Noordhuis)
|
1278
|
+
|
1279
|
+
* fsevents: increase stack size for OSX 10.9 (Fedor Indutny)
|
1280
|
+
|
1281
|
+
* windows: _snprintf expected wrong parameter type in string (Maks Naumov)
|
1282
|
+
|
1283
|
+
* windows: "else" keyword is missing (Maks Naumov)
|
1284
|
+
|
1285
|
+
* windows: incorrect check for SOCKET_ERROR (Maks Naumov)
|
1286
|
+
|
1287
|
+
* windows: add stdlib.h to satisfy reference to abort (Sean Farrell)
|
1288
|
+
|
1289
|
+
* build: fix check target for mingw (Sean Farrell)
|
1290
|
+
|
1291
|
+
* unix: move uv_shutdown() assertion (Keno Fischer)
|
1292
|
+
|
1293
|
+
* darwin: avoid calling GetCurrentProcess (Fedor Indutny)
|
1294
|
+
|
1295
|
+
|
1296
|
+
2013.10.19, Version 0.10.18 (Stable), 9ec52963b585e822e87bdc5de28d6143aff0d2e5
|
1297
|
+
|
1298
|
+
Changes since version 0.10.17:
|
1299
|
+
|
1300
|
+
* unix: fix uv_spawn() NULL pointer deref on ENOMEM (Ben Noordhuis)
|
1301
|
+
|
1302
|
+
* unix: don't close inherited fds on uv_spawn() fail (Ben Noordhuis)
|
1303
|
+
|
1304
|
+
* unix: revert recent FSEvent changes (Ben Noordhuis)
|
1305
|
+
|
1306
|
+
* unix: fix non-synchronized access in signal.c (Ben Noordhuis)
|
1307
|
+
|
1308
|
+
|
1309
|
+
2013.09.25, Version 0.10.17 (Stable), 9670e0a93540c2f0d86c84a375f2303383c11e7e
|
1310
|
+
|
1311
|
+
Changes since version 0.10.16:
|
1312
|
+
|
1313
|
+
* build: remove GCC_WARN_ABOUT_MISSING_NEWLINE (Ben Noordhuis)
|
1314
|
+
|
1315
|
+
* darwin: fix 10.6 build error in fsevents.c (Ben Noordhuis)
|
1316
|
+
|
1317
|
+
|
1318
|
+
2013.09.06, Version 0.10.16 (Stable), 2bce230d81f4853a23662cbeb26fe98010b1084b
|
1319
|
+
|
1320
|
+
Changes since version 0.10.15:
|
1321
|
+
|
1322
|
+
* windows: make uv_shutdown() for write-only pipes work (Bert Belder)
|
1323
|
+
|
1324
|
+
* windows: make uv_fs_open() report EINVAL when invalid arguments are passed
|
1325
|
+
(Bert Belder)
|
1326
|
+
|
1327
|
+
* windows: make uv_fs_open() report _open_osfhandle() failure correctly (Bert
|
1328
|
+
Belder)
|
1329
|
+
|
1330
|
+
* windows: make uv_fs_chmod() report errors correctly (Bert Belder)
|
1331
|
+
|
1332
|
+
* windows: wrap multi-statement macros in do..while block (Bert Belder)
|
1333
|
+
|
1334
|
+
|
1335
|
+
2013.09.05, Version 0.11.13 (Unstable), f5b6db6c1d7f93d28281207fd47c3841c9a9792e
|
1336
|
+
|
1337
|
+
Changes since version 0.11.12:
|
1338
|
+
|
1339
|
+
* unix: define _GNU_SOURCE, exposes glibc-isms (Ben Noordhuis)
|
1340
|
+
|
1341
|
+
* windows: check for nonconforming swprintf arguments (Brent Cook)
|
1342
|
+
|
1343
|
+
* build: include internal headers in source list (Brent Cook)
|
1344
|
+
|
1345
|
+
* include: merge uv_tcp_bind and uv_tcp_bind6 (Ben Noordhuis)
|
1346
|
+
|
1347
|
+
* include: merge uv_tcp_connect and uv_tcp_connect6 (Ben Noordhuis)
|
1348
|
+
|
1349
|
+
* include: merge uv_udp_bind and uv_udp_bind6 (Ben Noordhuis)
|
1350
|
+
|
1351
|
+
* include: merge uv_udp_send and uv_udp_send6 (Ben Noordhuis)
|
1352
|
+
|
1353
|
+
|
1354
|
+
2013.09.03, Version 0.11.12 (Unstable), 82d01d5f6780d178f5176a01425ec297583c0811
|
1355
|
+
|
1356
|
+
Changes since version 0.11.11:
|
1357
|
+
|
1358
|
+
* test: fix epoll_wait() usage in test-embed.c (Ben Noordhuis)
|
1359
|
+
|
1360
|
+
* include: uv_alloc_cb now takes uv_buf_t* (Ben Noordhuis)
|
1361
|
+
|
1362
|
+
* include: uv_read{2}_cb now takes const uv_buf_t* (Ben Noordhuis)
|
1363
|
+
|
1364
|
+
* include: uv_ip[46]_addr now takes sockaddr_in* (Ben Noordhuis)
|
1365
|
+
|
1366
|
+
* include: uv_tcp_bind{6} now takes sockaddr_in* (Ben Noordhuis)
|
1367
|
+
|
1368
|
+
* include: uv_tcp_connect{6} now takes sockaddr_in* (Ben Noordhuis)
|
1369
|
+
|
1370
|
+
* include: uv_udp_recv_cb now takes const uv_buf_t* (Ben Noordhuis)
|
1371
|
+
|
1372
|
+
* include: uv_udp_bind{6} now takes sockaddr_in* (Ben Noordhuis)
|
1373
|
+
|
1374
|
+
* include: uv_udp_send{6} now takes sockaddr_in* (Ben Noordhuis)
|
1375
|
+
|
1376
|
+
* include: uv_spawn takes const uv_process_options_t* (Ben Noordhuis)
|
1377
|
+
|
1378
|
+
* include: make uv_write{2} const correct (Ben Noordhuis)
|
1379
|
+
|
1380
|
+
* windows: fix flags assignment in uv_fs_readdir() (Ben Noordhuis)
|
1381
|
+
|
1382
|
+
* windows: fix stray comments (Ben Noordhuis)
|
1383
|
+
|
1384
|
+
* windows: remove unused is_path_dir() function (Ben Noordhuis)
|
1385
|
+
|
1386
|
+
|
1387
|
+
2013.08.30, Version 0.11.11 (Unstable), ba876d53539ed0427c52039012419cd9374c6f0d
|
1388
|
+
|
1389
|
+
Changes since version 0.11.10:
|
1390
|
+
|
1391
|
+
* unix, windows: add thread-local storage API (Ben Noordhuis)
|
1392
|
+
|
1393
|
+
* linux: don't turn on SO_REUSEPORT socket option (Ben Noordhuis)
|
1394
|
+
|
1395
|
+
* darwin: fix 10.6 build error in fsevents.c (Ben Noordhuis)
|
1396
|
+
|
1397
|
+
* windows: make uv_shutdown() for write-only pipes work (Bert Belder)
|
1398
|
+
|
1399
|
+
* include: update uv_udp_open() / uv_udp_bind() docs (Ben Noordhuis)
|
1400
|
+
|
1401
|
+
* unix: req queue must be empty when destroying loop (Ben Noordhuis)
|
1402
|
+
|
1403
|
+
* unix: move loop functions from core.c to loop.c (Ben Noordhuis)
|
1404
|
+
|
1405
|
+
* darwin: remove CoreFoundation dependency (Ben Noordhuis)
|
1406
|
+
|
1407
|
+
* windows: make autotools build system work with mingw (Keno Fischer)
|
1408
|
+
|
1409
|
+
* windows: fix mingw build (Alex Crichton)
|
1410
|
+
|
1411
|
+
* windows: tweak Makefile.mingw for easier usage (Alex Crichton)
|
1412
|
+
|
1413
|
+
* build: remove _GNU_SOURCE macro definition (Ben Noordhuis)
|
1414
|
+
|
1415
|
+
|
1416
|
+
2013.08.25, Version 0.11.10 (Unstable), 742dadcb7154cc7bb89c0c228a223b767a36cf0d
|
1417
|
+
|
1418
|
+
* windows: Re-implement uv_fs_stat. The st_ctime field now contains the change
|
1419
|
+
time, not the creation time, like on unix systems. st_dev, st_ino, st_blocks
|
1420
|
+
and st_blksize are now also filled out. (Bert Belder)
|
1421
|
+
|
1422
|
+
* linux: fix setsockopt(SO_REUSEPORT) error handling (Ben Noordhuis)
|
1423
|
+
|
1424
|
+
* windows: report uv_process_t exit code correctly (Bert Belder)
|
1425
|
+
|
1426
|
+
* windows: make uv_fs_chmod() report errors correctly (Bert Belder)
|
1427
|
+
|
1428
|
+
* windows: make some more NT apis available for libuv's internal use (Bert
|
1429
|
+
Belder)
|
1430
|
+
|
1431
|
+
* windows: squelch some compiler warnings (Bert Belder)
|
1432
|
+
|
1433
|
+
|
1434
|
+
2013.08.24, Version 0.11.9 (Unstable), a2d29b5b068cbac93dc16138fb30a74e2669daad
|
1435
|
+
|
1436
|
+
Changes since version 0.11.8:
|
1437
|
+
|
1438
|
+
* fsevents: share FSEventStream between multiple FS watchers, which removes a
|
1439
|
+
limit on the maximum number of file watchers that can be created on OS X.
|
1440
|
+
(Fedor Indutny)
|
1441
|
+
|
1442
|
+
* process: the `exit_status` parameter for a uv_process_t's exit callback now
|
1443
|
+
is an int64_t, and no longer an int. (Bert Belder)
|
1444
|
+
|
1445
|
+
* process: make uv_spawn() return some types of errors immediately on windows,
|
1446
|
+
instead of passing the error code the the exit callback. This brings it on
|
1447
|
+
par with libuv's behavior on unix. (Bert Belder)
|
1448
|
+
|
1449
|
+
|
1450
|
+
2013.08.24, Version 0.10.15 (Stable), 221078a8fdd9b853c6b557b3d9a5dd744b4fdd6b
|
1451
|
+
|
1452
|
+
Changes since version 0.10.14:
|
1453
|
+
|
1454
|
+
* fsevents: create FSEvents thread on demand (Ben Noordhuis)
|
1455
|
+
|
1456
|
+
* fsevents: use a single thread for interacting with FSEvents, because it's not
|
1457
|
+
thread-safe. (Fedor Indutny)
|
1458
|
+
|
1459
|
+
* fsevents: share FSEventStream between multiple FS watchers, which removes a
|
1460
|
+
limit on the maximum number of file watchers that can be created on OS X.
|
1461
|
+
(Fedor Indutny)
|
1462
|
+
|
1463
|
+
|
1464
|
+
2013.08.22, Version 0.11.8 (Unstable), a5260462db80ab0deab6b9e6a8991dd8f5a9a2f8
|
1465
|
+
|
1466
|
+
Changes since version 0.11.7:
|
1467
|
+
|
1468
|
+
* unix: fix missing return value warning in stream.c (Ben Noordhuis)
|
1469
|
+
|
1470
|
+
* build: serial-tests was added in automake v1.12 (Ben Noordhuis)
|
1471
|
+
|
1472
|
+
* windows: fix uninitialized local variable warning (Ben Noordhuis)
|
1473
|
+
|
1474
|
+
* windows: fix missing return value warning (Ben Noordhuis)
|
1475
|
+
|
1476
|
+
* build: fix string comparisons in autogen.sh (Ben Noordhuis)
|
1477
|
+
|
1478
|
+
* windows: move INLINE macro, remove UNUSED (Ben Noordhuis)
|
1479
|
+
|
1480
|
+
* unix: clean up __attribute__((quux)) usage (Ben Noordhuis)
|
1481
|
+
|
1482
|
+
* sunos: remove futimes() macro (Ben Noordhuis)
|
1483
|
+
|
1484
|
+
* unix: fix uv__signal_unlock() prototype (Ben Noordhuis)
|
1485
|
+
|
1486
|
+
* unix, windows: allow NULL async callback (Ben Noordhuis)
|
1487
|
+
|
1488
|
+
* build: apply dtrace -G to all object files (Timothy J. Fontaine)
|
1489
|
+
|
1490
|
+
* darwin: fix indentation in uv__hrtime() (Ben Noordhuis)
|
1491
|
+
|
1492
|
+
* darwin: create fsevents thread on demand (Ben Noordhuis)
|
1493
|
+
|
1494
|
+
* darwin: reduce fsevents thread stack size (Ben Noordhuis)
|
1495
|
+
|
1496
|
+
* darwin: call pthread_setname_np() if available (Ben Noordhuis)
|
1497
|
+
|
1498
|
+
* build: fix automake serial-tests check again (Ben Noordhuis)
|
1499
|
+
|
1500
|
+
* unix: retry waitpid() on EINTR (Ben Noordhuis)
|
1501
|
+
|
1502
|
+
* darwin: fix ios build error (Ben Noordhuis)
|
1503
|
+
|
1504
|
+
* darwin: fix ios compiler warning (Ben Noordhuis)
|
1505
|
+
|
1506
|
+
* test: simplify test-ip6-addr.c (Ben Noordhuis)
|
1507
|
+
|
1508
|
+
* unix, windows: fix ipv6 link-local address parsing (Ben Noordhuis)
|
1509
|
+
|
1510
|
+
* fsevents: FSEvents is most likely not thread-safe (Fedor Indutny)
|
1511
|
+
|
1512
|
+
* windows: omit stdint.h, fix msvc 2008 build error (Ben Noordhuis)
|
1513
|
+
|
1514
|
+
|
1515
|
+
2013.08.22, Version 0.10.14 (Stable), 15d64132151c18b26346afa892444b95e2addad0
|
1516
|
+
|
1517
|
+
Changes since version 0.10.13:
|
1518
|
+
|
1519
|
+
* unix: retry waitpid() on EINTR (Ben Noordhuis)
|
1520
|
+
|
1521
|
+
|
1522
|
+
2013.08.07, Version 0.11.7 (Unstable), 3cad361f8776f70941b39d65bd9426bcb1aa817b
|
1523
|
+
|
1524
|
+
Changes since version 0.11.6:
|
1525
|
+
|
1526
|
+
* unix, windows: fix uv_fs_chown() function prototype (Ben Noordhuis)
|
1527
|
+
|
1528
|
+
* unix, windows: remove unused variables (Brian White)
|
1529
|
+
|
1530
|
+
* test: fix signed/unsigned comparison warnings (Ben Noordhuis)
|
1531
|
+
|
1532
|
+
* build: dtrace shouldn't break out of tree builds (Timothy J. Fontaine)
|
1533
|
+
|
1534
|
+
* unix, windows: don't read/recv if buf.len==0 (Ben Noordhuis)
|
1535
|
+
|
1536
|
+
* build: add mingw makefile (Ben Noordhuis)
|
1537
|
+
|
1538
|
+
* unix, windows: add MAC to uv_interface_addresses() (Brian White)
|
1539
|
+
|
1540
|
+
* build: enable AM_INIT_AUTOMAKE([subdir-objects]) (Ben Noordhuis)
|
1541
|
+
|
1542
|
+
* unix, windows: make buf arg to uv_fs_write const (Ben Noordhuis)
|
1543
|
+
|
1544
|
+
* sunos: fix build breakage introduced in e3a657c (Ben Noordhuis)
|
1545
|
+
|
1546
|
+
* aix: fix build breakage introduced in 3ee4d3f (Ben Noordhuis)
|
1547
|
+
|
1548
|
+
* windows: fix mingw32 build, define JOB_OBJECT_XXX (Yasuhiro Matsumoto)
|
1549
|
+
|
1550
|
+
* windows: fix mingw32 build, include limits.h (Yasuhiro Matsumoto)
|
1551
|
+
|
1552
|
+
* test: replace sprintf() with snprintf() (Ben Noordhuis)
|
1553
|
+
|
1554
|
+
* test: replace strcpy() with strncpy() (Ben Noordhuis)
|
1555
|
+
|
1556
|
+
* openbsd: fix uv_ip6_addr() unused variable warnings (Ben Noordhuis)
|
1557
|
+
|
1558
|
+
* openbsd: fix dlerror() const correctness warning (Ben Noordhuis)
|
1559
|
+
|
1560
|
+
* openbsd: fix uv_fs_sendfile() unused variable warnings (Ben Noordhuis)
|
1561
|
+
|
1562
|
+
* build: disable parallel automake tests (Ben Noordhuis)
|
1563
|
+
|
1564
|
+
* test: add windows-only snprintf() function (Ben Noordhuis)
|
1565
|
+
|
1566
|
+
* build: add automake serial-tests version check (Ben Noordhuis)
|
1567
|
+
|
1568
|
+
|
1569
|
+
2013.07.26, Version 0.10.13 (Stable), 381312e1fe6fecbabc943ccd56f0e7d114b3d064
|
1570
|
+
|
1571
|
+
Changes since version 0.10.12:
|
1572
|
+
|
1573
|
+
* unix, windows: fix uv_fs_chown() function prototype (Ben Noordhuis)
|
1574
|
+
|
1575
|
+
|
1576
|
+
2013.07.21, Version 0.11.6 (Unstable), 6645b93273e0553d23823c576573b82b129bf28c
|
1577
|
+
|
1578
|
+
Changes since version 0.11.5:
|
1579
|
+
|
1580
|
+
* test: open stdout fd in write-only mode (Ben Noordhuis)
|
1581
|
+
|
1582
|
+
* windows: uv_spawn shouldn't reject reparse points (Bert Belder)
|
1583
|
+
|
1584
|
+
* windows: use WSAGetLastError(), not errno (Ben Noordhuis)
|
1585
|
+
|
1586
|
+
* build: darwin: disable -fstrict-aliasing warnings (Ben Noordhuis)
|
1587
|
+
|
1588
|
+
* test: fix signed/unsigned compiler warning (Ben Noordhuis)
|
1589
|
+
|
1590
|
+
* test: add 'start timer from check handle' test (Ben Noordhuis)
|
1591
|
+
|
1592
|
+
* build: `all` now builds static and dynamic lib (Ben Noordhuis)
|
1593
|
+
|
1594
|
+
* unix, windows: add extra fields to uv_stat_t (Saúl Ibarra Corretgé)
|
1595
|
+
|
1596
|
+
* build: add install target to the makefile (Navaneeth Kedaram Nambiathan)
|
1597
|
+
|
1598
|
+
* build: switch to autotools (Ben Noordhuis)
|
1599
|
+
|
1600
|
+
* build: use AM_PROG_AR conditionally (Ben Noordhuis)
|
1601
|
+
|
1602
|
+
* test: fix fs_fstat test on sunos (Ben Noordhuis)
|
1603
|
+
|
1604
|
+
* test: fix fs_chown when running as root (Ben Noordhuis)
|
1605
|
+
|
1606
|
+
* test: fix spawn_setgid_fails and spawn_setuid_fails (Ben Noordhuis)
|
1607
|
+
|
1608
|
+
* build: use AM_SILENT_RULES conditionally (Ben Noordhuis)
|
1609
|
+
|
1610
|
+
* build: add DTrace detection for autotools (Timothy J. Fontaine)
|
1611
|
+
|
1612
|
+
* linux,darwin,win: link-local IPv6 addresses (Miroslav Bajtoš)
|
1613
|
+
|
1614
|
+
* unix: fix build when !defined(PTHREAD_MUTEX_ERRORCHECK) (Ben Noordhuis)
|
1615
|
+
|
1616
|
+
* unix, windows: return error codes directly (Ben Noordhuis)
|
1617
|
+
|
1618
|
+
|
1619
|
+
2013.07.10, Version 0.10.12 (Stable), 58a46221bba726746887a661a9f36fe9ff204209
|
1620
|
+
|
1621
|
+
Changes since version 0.10.11:
|
1622
|
+
|
1623
|
+
* linux: add support for MIPS (Andrei Sedoi)
|
1624
|
+
|
1625
|
+
* windows: uv_spawn shouldn't reject reparse points (Bert Belder)
|
1626
|
+
|
1627
|
+
* windows: use WSAGetLastError(), not errno (Ben Noordhuis)
|
1628
|
+
|
1629
|
+
* build: darwin: disable -fstrict-aliasing warnings (Ben Noordhuis)
|
1630
|
+
|
1631
|
+
* build: `all` now builds static and dynamic lib (Ben Noordhuis)
|
1632
|
+
|
1633
|
+
* unix: fix build when !defined(PTHREAD_MUTEX_ERRORCHECK) (Ben Noordhuis)
|
1634
|
+
|
1635
|
+
|
1636
|
+
2013.06.27, Version 0.11.5 (Unstable), e3c63ff1627a14e96f54c1c62b0d68b446d8425b
|
1637
|
+
|
1638
|
+
Changes since version 0.11.4:
|
1639
|
+
|
1640
|
+
* build: remove CSTDFLAG, use only CFLAGS (Ben Noordhuis)
|
1641
|
+
|
1642
|
+
* unix: support for android builds (Linus Mårtensson)
|
1643
|
+
|
1644
|
+
* unix: avoid extra read, short-circuit on POLLHUP (Ben Noordhuis)
|
1645
|
+
|
1646
|
+
* uv: support android libuv standalone build (Linus Mårtensson)
|
1647
|
+
|
1648
|
+
* src: make queue.h c++ compatible (Ben Noordhuis)
|
1649
|
+
|
1650
|
+
* unix: s/ngx-queue.h/queue.h/ in checksparse.sh (Ben Noordhuis)
|
1651
|
+
|
1652
|
+
* unix: unconditionally stop handle on close (Ben Noordhuis)
|
1653
|
+
|
1654
|
+
* freebsd: don't enable dtrace if it's not available (Brian White)
|
1655
|
+
|
1656
|
+
* build: make HAVE_DTRACE=0 should disable dtrace (Timothy J. Fontaine)
|
1657
|
+
|
1658
|
+
* unix: remove overzealous assert (Ben Noordhuis)
|
1659
|
+
|
1660
|
+
* unix: remove unused function uv_fatal_error() (Ben Noordhuis)
|
1661
|
+
|
1662
|
+
* unix, windows: clean up uv_thread_create() (Ben Noordhuis)
|
1663
|
+
|
1664
|
+
* queue: fix pointer truncation on LLP64 platforms (Bert Belder)
|
1665
|
+
|
1666
|
+
* build: set OS=="android" for android builds (Linus Mårtensson)
|
1667
|
+
|
1668
|
+
* windows: don't use uppercase in include filename (Ben Noordhuis)
|
1669
|
+
|
1670
|
+
* stream: add an API to make streams do blocking writes (Henry Rawas)
|
1671
|
+
|
1672
|
+
* windows: use WSAGetLastError(), not errno (Ben Noordhuis)
|
1673
|
+
|
1674
|
+
|
1675
|
+
2013.06.13, Version 0.10.11 (Stable), c3b75406a66a10222a589cb173e8f469e9665c7e
|
1676
|
+
|
1677
|
+
Changes since version 0.10.10:
|
1678
|
+
|
1679
|
+
* unix: unconditionally stop handle on close (Ben Noordhuis)
|
1680
|
+
|
1681
|
+
* freebsd: don't enable dtrace if it's not available (Brian White)
|
1682
|
+
|
1683
|
+
* build: make HAVE_DTRACE=0 should disable dtrace (Timothy J. Fontaine)
|
1684
|
+
|
1685
|
+
* unix: remove overzealous assert (Ben Noordhuis)
|
1686
|
+
|
1687
|
+
* unix: clear UV_STREAM_SHUTTING after shutdown() (Ben Noordhuis)
|
1688
|
+
|
1689
|
+
* unix: fix busy loop, write if POLLERR or POLLHUP (Ben Noordhuis)
|
1690
|
+
|
1691
|
+
|
1692
|
+
2013.06.05, Version 0.10.10 (Stable), 0d95a88bd35fce93863c57a460be613aea34d2c5
|
1693
|
+
|
1694
|
+
Changes since version 0.10.9:
|
1695
|
+
|
1696
|
+
* include: document uv_update_time() and uv_now() (Ben Noordhuis)
|
1697
|
+
|
1698
|
+
* linux: fix cpu model parsing on newer arm kernels (Ben Noordhuis)
|
1699
|
+
|
1700
|
+
* linux: fix a memory leak in uv_cpu_info() error path (Ben Noordhuis)
|
1701
|
+
|
1702
|
+
* linux: don't ignore out-of-memory errors in uv_cpu_info() (Ben Noordhuis)
|
1703
|
+
|
1704
|
+
* unix, windows: move uv_now() to uv-common.c (Ben Noordhuis)
|
1705
|
+
|
1706
|
+
* test: fix a compilation problem in test-osx-select.c that was caused by the
|
1707
|
+
use of c-style comments (Bert Belder)
|
1708
|
+
|
1709
|
+
* darwin: use uv_fs_sendfile() use the sendfile api correctly (Wynn Wilkes)
|
1710
|
+
|
1711
|
+
|
1712
|
+
2013.05.30, Version 0.11.4 (Unstable), e43e5b3d954a0989db5588aa110e1fe4fe6e0219
|
1713
|
+
|
1714
|
+
Changes since version 0.11.3:
|
1715
|
+
|
1716
|
+
* windows: make uv_spawn not fail when the libuv embedding application is run
|
1717
|
+
under external job control (Bert Belder)
|
1718
|
+
|
1719
|
+
* darwin: assume CFRunLoopStop() isn't thread-safe, fixing a race condition
|
1720
|
+
when stopping the 'stdin select hack' thread (Fedor Indutny)
|
1721
|
+
|
1722
|
+
* win: fix UV_EALREADY not being reported correctly to the libuv user in some
|
1723
|
+
cases (Bert Belder)
|
1724
|
+
|
1725
|
+
* darwin: make the uv__cf_loop_runner and uv__cf_loop_cb functions static (Ben
|
1726
|
+
Noordhuis)
|
1727
|
+
|
1728
|
+
* darwin: task_info() cannot fail (Ben Noordhuis)
|
1729
|
+
|
1730
|
+
* unix: add error mapping for ENETDOWN (Ben Noordhuis)
|
1731
|
+
|
1732
|
+
* unix: implicitly signal write errors to the libuv user (Ben Noordhuis)
|
1733
|
+
|
1734
|
+
* unix: fix assertion error on signal pipe overflow (Bert Belder)
|
1735
|
+
|
1736
|
+
* unix: turn off POLLOUT after stream connect (Ben Noordhuis)
|
1737
|
+
|
1738
|
+
* unix: fix stream refcounting buglet (Ben Noordhuis)
|
1739
|
+
|
1740
|
+
* unix: remove assert statements that are no longer correct (Ben Noordhuis)
|
1741
|
+
|
1742
|
+
* unix: appease warning about non-standard `inline` (Sean Silva)
|
1743
|
+
|
1744
|
+
* unix: add uv__is_closing() macro (Ben Noordhuis)
|
1745
|
+
|
1746
|
+
* unix: stop stream POLLOUT watcher on write error (Ben Noordhuis)
|
1747
|
+
|
1748
|
+
* include: document uv_update_time() and uv_now() (Ben Noordhuis)
|
1749
|
+
|
1750
|
+
* linux: fix cpu model parsing on newer arm kernels (Ben Noordhuis)
|
1751
|
+
|
1752
|
+
* linux: fix a memory leak in uv_cpu_info() error path (Ben Noordhuis)
|
1753
|
+
|
1754
|
+
* linux: don't ignore out-of-memory errors in uv_cpu_info() (Ben Noordhuis)
|
1755
|
+
|
1756
|
+
* unix, windows: move uv_now() to uv-common.c (Ben Noordhuis)
|
1757
|
+
|
1758
|
+
* test: fix a compilation problem in test-osx-select.c that was caused by the
|
1759
|
+
use of c-style comments (Bert Belder)
|
1760
|
+
|
1761
|
+
* darwin: use uv_fs_sendfile() use the sendfile api correctly (Wynn Wilkes)
|
1762
|
+
|
1763
|
+
* windows: call idle handles on every loop iteration, something the unix
|
1764
|
+
implementation already did (Bert Belder)
|
1765
|
+
|
1766
|
+
* test: update the idle-starvation test to verify that idle handles are called
|
1767
|
+
in every loop iteration (Bert Belder)
|
1768
|
+
|
1769
|
+
* unix, windows: ensure that uv_run() in RUN_ONCE mode calls timers that expire
|
1770
|
+
after blocking (Ben Noordhuis)
|
1771
|
+
|
1772
|
+
|
1773
|
+
2013.05.29, Version 0.10.9 (Stable), a195f9ace23d92345baf57582678bfc3017e6632
|
1774
|
+
|
1775
|
+
Changes since version 0.10.8:
|
1776
|
+
|
1777
|
+
* unix: fix stream refcounting buglet (Ben Noordhuis)
|
1778
|
+
|
1779
|
+
* unix: remove erroneous asserts (Ben Noordhuis)
|
1780
|
+
|
1781
|
+
* unix: add uv__is_closing() macro (Ben Noordhuis)
|
1782
|
+
|
1783
|
+
* unix: stop stream POLLOUT watcher on write error (Ben Noordhuis)
|
1784
|
+
|
1785
|
+
|
1786
|
+
2013.05.25, Version 0.10.8 (Stable), 0f39be12926fe2d8766a9f025797a473003e6504
|
1787
|
+
|
1788
|
+
Changes since version 0.10.7:
|
1789
|
+
|
1790
|
+
* windows: make uv_spawn not fail under job control (Bert Belder)
|
1791
|
+
|
1792
|
+
* darwin: assume CFRunLoopStop() isn't thread-safe (Fedor Indutny)
|
1793
|
+
|
1794
|
+
* win: fix UV_EALREADY incorrectly set (Bert Belder)
|
1795
|
+
|
1796
|
+
* darwin: make two uv__cf_*() functions static (Ben Noordhuis)
|
1797
|
+
|
1798
|
+
* darwin: task_info() cannot fail (Ben Noordhuis)
|
1799
|
+
|
1800
|
+
* unix: add mapping for ENETDOWN (Ben Noordhuis)
|
1801
|
+
|
1802
|
+
* unix: implicitly signal write errors to libuv user (Ben Noordhuis)
|
1803
|
+
|
1804
|
+
* unix: fix assert on signal pipe overflow (Bert Belder)
|
1805
|
+
|
1806
|
+
* unix: turn off POLLOUT after stream connect (Ben Noordhuis)
|
1807
|
+
|
1808
|
+
|
1809
|
+
2013.05.16, Version 0.11.3 (Unstable), 0a48c05b5988aea84c605751900926fa25443b34
|
1810
|
+
|
1811
|
+
Changes since version 0.11.2:
|
1812
|
+
|
1813
|
+
* unix: clean up uv_accept() (Ben Noordhuis)
|
1814
|
+
|
1815
|
+
* unix: remove errno preserving code (Ben Noordhuis)
|
1816
|
+
|
1817
|
+
* darwin: fix ios build, don't require ApplicationServices (Ben Noordhuis)
|
1818
|
+
|
1819
|
+
* windows: kill child processes when the parent dies (Bert Belder)
|
1820
|
+
|
1821
|
+
* build: set soname in shared library (Ben Noordhuis)
|
1822
|
+
|
1823
|
+
* build: make `make test` link against .a again (Ben Noordhuis)
|
1824
|
+
|
1825
|
+
* build: only set soname on shared object builds (Timothy J. Fontaine)
|
1826
|
+
|
1827
|
+
* build: convert predefined $PLATFORM to lower case (Elliot Saba)
|
1828
|
+
|
1829
|
+
* test: fix process_title failing on linux (Miroslav Bajtoš)
|
1830
|
+
|
1831
|
+
* test, sunos: disable process_title test (Miroslav Bajtoš)
|
1832
|
+
|
1833
|
+
* test: add error logging to tty unit test (Miroslav Bajtoš)
|
1834
|
+
|
1835
|
+
|
1836
|
+
2013.05.15, Version 0.10.7 (Stable), 028baaf0846b686a81e992cb2f2f5a9b8e841fcf
|
1837
|
+
|
1838
|
+
Changes since version 0.10.6:
|
1839
|
+
|
1840
|
+
* windows: kill child processes when the parent dies (Bert Belder)
|
1841
|
+
|
1842
|
+
|
1843
|
+
2013.05.15, Version 0.10.6 (Stable), 11e6613e6260d95c8cf11bf89a2759c24649319a
|
1844
|
+
|
1845
|
+
Changes since version 0.10.5:
|
1846
|
+
|
1847
|
+
* stream: fix osx select hack (Fedor Indutny)
|
1848
|
+
|
1849
|
+
* stream: fix small nit in select hack, add test (Fedor Indutny)
|
1850
|
+
|
1851
|
+
* build: link with libkvm on openbsd (Ben Noordhuis)
|
1852
|
+
|
1853
|
+
* stream: use harder sync restrictions for osx-hack (Fedor Indutny)
|
1854
|
+
|
1855
|
+
* unix: fix EMFILE error handling (Ben Noordhuis)
|
1856
|
+
|
1857
|
+
* darwin: fix unnecessary include headers (Daisuke Murase)
|
1858
|
+
|
1859
|
+
* darwin: rename darwin-getproctitle.m (Ben Noordhuis)
|
1860
|
+
|
1861
|
+
* build: convert predefined $PLATFORM to lower case (Elliot Saba)
|
1862
|
+
|
1863
|
+
* build: set soname in shared library (Ben Noordhuis)
|
1864
|
+
|
1865
|
+
* build: make `make test` link against .a again (Ben Noordhuis)
|
1866
|
+
|
1867
|
+
* darwin: fix ios build, don't require ApplicationServices (Ben Noordhuis)
|
1868
|
+
|
1869
|
+
* build: only set soname on shared object builds (Timothy J. Fontaine)
|
1870
|
+
|
1871
|
+
|
1872
|
+
2013.05.11, Version 0.11.2 (Unstable), 3fba0bf65f091b91a9760530c05c6339c658d88b
|
1873
|
+
|
1874
|
+
Changes since version 0.11.1:
|
1875
|
+
|
1876
|
+
* darwin: look up file path with F_GETPATH (Ben Noordhuis)
|
1877
|
+
|
1878
|
+
* unix, windows: add uv_has_ref() function (Saúl Ibarra Corretgé)
|
1879
|
+
|
1880
|
+
* build: avoid double / in paths for dtrace (Timothy J. Fontaine)
|
1881
|
+
|
1882
|
+
* unix: remove src/unix/cygwin.c (Ben Noordhuis)
|
1883
|
+
|
1884
|
+
* windows: deal with the fact that GetTickCount might lag (Bert Belder)
|
1885
|
+
|
1886
|
+
* unix: silence STATIC_ASSERT compiler warnings (Ben Noordhuis)
|
1887
|
+
|
1888
|
+
* linux: don't use fopen() in uv_resident_set_memory() (Ben Noordhuis)
|
1889
|
+
|
1890
|
+
|
1891
|
+
2013.04.24, Version 0.10.5 (Stable), 6595a7732c52eb4f8e57c88655f72997a8567a67
|
1892
|
+
|
1893
|
+
Changes since version 0.10.4:
|
1894
|
+
|
1895
|
+
* unix: silence STATIC_ASSERT compiler warnings (Ben Noordhuis)
|
1896
|
+
|
1897
|
+
* windows: make timers handle large timeouts (Miroslav Bajtoš)
|
1898
|
+
|
1899
|
+
* windows: remove superfluous assert statement (Bert Belder)
|
1900
|
+
|
1901
|
+
* unix: silence STATIC_ASSERT compiler warnings (Ben Noordhuis)
|
1902
|
+
|
1903
|
+
* linux: don't use fopen() in uv_resident_set_memory() (Ben Noordhuis)
|
1904
|
+
|
1905
|
+
|
1906
|
+
2013.04.12, Version 0.10.4 (Stable), 85827e26403ac6dfa331af8ec9916ea7e27bd833
|
1907
|
+
|
1908
|
+
Changes since version 0.10.3:
|
1909
|
+
|
1910
|
+
* include: update uv_backend_fd() documentation (Ben Noordhuis)
|
1911
|
+
|
1912
|
+
* unix: include uv.h in src/version.c (Ben Noordhuis)
|
1913
|
+
|
1914
|
+
* unix: don't write more than IOV_MAX iovecs (Fedor Indutny)
|
1915
|
+
|
1916
|
+
* mingw-w64: don't call _set_invalid_parameter_handler (Nils Maier)
|
1917
|
+
|
1918
|
+
* build: gyp disable thin archives (Timothy J. Fontaine)
|
1919
|
+
|
1920
|
+
* sunos: re-export entire library when static (Timothy J. Fontaine)
|
1921
|
+
|
1922
|
+
* unix: dtrace probes for tick-start and tick-stop (Timothy J. Fontaine)
|
1923
|
+
|
1924
|
+
* windows: fix memory leak in fs__sendfile (Shannen Saez)
|
1925
|
+
|
1926
|
+
* windows: remove double initialization in uv_tty_init (Shannen Saez)
|
1927
|
+
|
1928
|
+
* build: fix dtrace-enabled out of tree build (Ben Noordhuis)
|
1929
|
+
|
1930
|
+
* build: squelch -Wdollar-in-identifier-extension warnings (Ben Noordhuis)
|
1931
|
+
|
1932
|
+
* inet: snprintf returns int, not size_t (Brian White)
|
1933
|
+
|
1934
|
+
* win: refactor uv_cpu_info (Bert Belder)
|
1935
|
+
|
1936
|
+
* build: add support for Visual Studio 2012 (Nicholas Vavilov)
|
1937
|
+
|
1938
|
+
* build: -Wno-dollar-in-identifier-extension is clang only (Ben Noordhuis)
|
1939
|
+
|
1940
|
+
|
1941
|
+
2013.04.11, Version 0.11.1 (Unstable), 5c10e82ae0bc99eff86d4b9baff1f1aa0bf84c0a
|
1942
|
+
|
1943
|
+
This is the first versioned release from the current unstable libuv branch.
|
1944
|
+
|
1945
|
+
Changes since Node.js v0.11.0:
|
1946
|
+
|
1947
|
+
* all platforms: nanosecond resolution support for uv_fs_[fl]stat (Timothy J.
|
1948
|
+
Fontaine)
|
1949
|
+
|
1950
|
+
* all platforms: add netmask to uv_interface_address (Ben Kelly)
|
1951
|
+
|
1952
|
+
* unix: make sure the `status` parameter passed to the `uv_getaddrinfo` is 0 or
|
1953
|
+
-1 (Ben Noordhuis)
|
1954
|
+
|
1955
|
+
* unix: limit the number of iovecs written in a single `writev` syscall to
|
1956
|
+
IOV_MAX (Fedor Indutny)
|
1957
|
+
|
1958
|
+
* unix: add dtrace probes for tick-start and tick-stop (Timothy J. Fontaine)
|
1959
|
+
|
1960
|
+
* mingw-w64: don't call _set_invalid_parameter_handler (Nils Maier)
|
1961
|
+
|
1962
|
+
* windows: fix memory leak in fs__sendfile (Shannen Saez)
|
1963
|
+
|
1964
|
+
* windows: fix edge case bugs in uv_cpu_info (Bert Belder)
|
1965
|
+
|
1966
|
+
* include: no longer ship with / include ngx-queue.h (Ben Noordhuis)
|
1967
|
+
|
1968
|
+
* include: remove UV_VERSION_* macros from uv.h (Ben Noordhuis)
|
1969
|
+
|
1970
|
+
* documentation updates (Kristian Evensen, Ben Kelly, Ben Noordhuis)
|
1971
|
+
|
1972
|
+
* build: fix dtrace-enabled builds (Ben Noordhuis, Timothy J. Fontaine)
|
1973
|
+
|
1974
|
+
* build: gyp disable thin archives (Timothy J. Fontaine)
|
1975
|
+
|
1976
|
+
* build: add support for Visual Studio 2012 (Nicholas Vavilov)
|
1977
|
+
|
1978
|
+
|
1979
|
+
2013.03.28, Version 0.10.3 (Stable), 31ebe23973dd98fd8a24c042b606f37a794e99d0
|
1980
|
+
|
1981
|
+
Changes since version 0.10.2:
|
1982
|
+
|
1983
|
+
* include: remove extraneous const from uv_version() (Ben Noordhuis)
|
1984
|
+
|
1985
|
+
* doc: update README, replace `OS` by `PLATFORM` (Ben Noordhuis)
|
1986
|
+
|
1987
|
+
* build: simplify .buildstamp rule (Ben Noordhuis)
|
1988
|
+
|
1989
|
+
* build: disable -Wstrict-aliasing on darwin (Ben Noordhuis)
|
1990
|
+
|
1991
|
+
* darwin: don't select(&exceptfds) in fallback path (Ben Noordhuis)
|
1992
|
+
|
1993
|
+
* unix: don't clear flags after closing UDP handle (Saúl Ibarra Corretgé)
|
1994
|
+
|
1995
|
+
|
1996
|
+
2013.03.25, Version 0.10.2 (Stable), 0f36a00568f3e7608f97f6c6cdb081f4800a50c9
|
1997
|
+
|
1998
|
+
This is the first officially versioned release of libuv. Starting now
|
1999
|
+
libuv will make releases independently of Node.js.
|
2000
|
+
|
2001
|
+
Changes since Node.js v0.10.0:
|
2002
|
+
|
2003
|
+
* test: add tap output for windows (Timothy J. Fontaine)
|
2004
|
+
|
2005
|
+
* unix: fix uv_tcp_simultaneous_accepts() logic (Ben Noordhuis)
|
2006
|
+
|
2007
|
+
* include: bump UV_VERSION_MINOR (Ben Noordhuis)
|
2008
|
+
|
2009
|
+
* unix: improve uv_guess_handle() implementation (Ben Noordhuis)
|
2010
|
+
|
2011
|
+
* stream: run try_select only for pipes and ttys (Fedor Indutny)
|
2012
|
+
|
2013
|
+
Changes since Node.js v0.10.1:
|
2014
|
+
|
2015
|
+
* build: rename OS to PLATFORM (Ben Noordhuis)
|
2016
|
+
|
2017
|
+
* unix: make uv_timer_init() initialize repeat (Brian Mazza)
|
2018
|
+
|
2019
|
+
* unix: make timers handle large timeouts (Ben Noordhuis)
|
2020
|
+
|
2021
|
+
* build: add OBJC makefile var (Ben Noordhuis)
|
2022
|
+
|
2023
|
+
* Add `uv_version()` and `uv_version_string()` APIs (Bert Belder)
|