|
1 | | -2014.05.02, Version 0.11.25 (Unstable) |
| 1 | +2014.06.28, Version 0.11.26 (Unstable) |
| 2 | + |
| 3 | +Changes since version 0.11.25: |
| 4 | + |
| 5 | +* windows: add VT100 codes ?25l and ?25h (JD Ballard) |
| 6 | + |
| 7 | +* windows: add invert ANSI (7 / 27) emulation (JD Ballard) |
| 8 | + |
| 9 | +* unix: fix handling error on UDP socket creation (Saúl Ibarra Corretgé) |
| 10 | + |
| 11 | +* unix, windows: getnameinfo implementation (Rasmus Pedersen) |
| 12 | + |
| 13 | +* heap: fix `heap_remove()` (Fedor Indutny) |
| 14 | + |
| 15 | +* unix, windows: fix parsing scoped IPv6 addresses (Saúl Ibarra Corretgé) |
| 16 | + |
| 17 | +* windows: fix handling closed socket while poll handle is closing (Saúl Ibarra |
| 18 | + Corretgé) |
| 19 | + |
| 20 | +* thread: barrier functions (Ben Noordhuis) |
| 21 | + |
| 22 | +* windows: fix PYTHON environment variable usage (Jay Satiro) |
| 23 | + |
| 24 | +* unix, windows: return system error on EAI_SYSTEM (Saúl Ibarra Corretgé) |
| 25 | + |
| 26 | +* windows: fix handling closed socket while poll handle is closing (Saúl Ibarra |
| 27 | + Corretgé) |
| 28 | + |
| 29 | +* unix: don't run i/o callbacks after prepare callbacks (Saúl Ibarra Corretgé) |
| 30 | + |
| 31 | +* windows: add tty unicode support for input (Peter Atashian) |
| 32 | + |
| 33 | +* header: introduce `uv_loop_size()` (Andrius Bentkus) |
| 34 | + |
| 35 | +* darwin: invoke `mach_timebase_info` only once (Fedor Indutny) |
| 36 | + |
| 37 | + |
| 38 | +2014.05.02, Version 0.11.25 (Unstable), 2acd544cff7142e06aa3b09ec64b4a33dd9ab996 |
2 | 39 |
|
3 | 40 | Changes since version 0.11.24: |
4 | 41 |
|
@@ -33,8 +70,6 @@ Changes since version 0.11.23: |
33 | 70 |
|
34 | 71 | * inet: allow scopeid in uv_inet_pton (Fedor Indutny) |
35 | 72 |
|
36 | | -* win: always leave crit section in get_proc_title (Fedor Indutny) |
37 | | - |
38 | 73 |
|
39 | 74 | 2014.04.07, Version 0.11.23 (Unstable), e54de537efcacd593f36fcaaf8b4cb9e64313275 |
40 | 75 |
|
@@ -77,25 +112,6 @@ Changes since version 0.11.22: |
77 | 112 | * unix: fix setting written size on uv_wd (Saúl Ibarra Corretgé) |
78 | 113 |
|
79 | 114 |
|
80 | | -2014.04.07, Version 0.10.26 (Stable), d864907611c25ec986c5e77d4d6d6dee88f26926 |
81 | | - |
82 | | -Changes since version 0.10.25: |
83 | | - |
84 | | -* process: don't close stdio fds during spawn (Tonis Tiigi) |
85 | | - |
86 | | -* build, windows: do not fail on Windows SDK Prompt (Marc Schlaich) |
87 | | - |
88 | | -* build, windows: fix x64 configuration issue (Marc Schlaich) |
89 | | - |
90 | | -* win: fix buffer leak on error in pipe.c (Fedor Indutny) |
91 | | - |
92 | | -* kqueue: invalidate fd in uv_fs_event_t (Fedor Indutny) |
93 | | - |
94 | | -* linux: always deregister closing fds from epoll (Geoffry Song) |
95 | | - |
96 | | -* error: add ENXIO for O_NONBLOCK FIFO open() (Fedor Indutny) |
97 | | - |
98 | | - |
99 | 115 | 2014.03.11, Version 0.11.22 (Unstable), cd0c19b1d3c56acf0ade7687006e12e75fbda36d |
100 | 116 |
|
101 | 117 | Changes since version 0.11.21: |
@@ -225,6 +241,34 @@ Changes since version 0.11.18: |
225 | 241 | * linux: fix C99/C++ comment (Fedor Indutny) |
226 | 242 |
|
227 | 243 |
|
| 244 | +2014.05.02, Version 0.10.27 (Stable), 6e24ce23b1e7576059f85a608eca13b766458a01 |
| 245 | + |
| 246 | +Changes since version 0.10.26: |
| 247 | + |
| 248 | +* windows: fix console signal handler refcount (Saúl Ibarra Corretgé) |
| 249 | + |
| 250 | +* win: always leave crit section in get_proc_title (Fedor Indutny) |
| 251 | + |
| 252 | + |
| 253 | +2014.04.07, Version 0.10.26 (Stable), d864907611c25ec986c5e77d4d6d6dee88f26926 |
| 254 | + |
| 255 | +Changes since version 0.10.25: |
| 256 | + |
| 257 | +* process: don't close stdio fds during spawn (Tonis Tiigi) |
| 258 | + |
| 259 | +* build, windows: do not fail on Windows SDK Prompt (Marc Schlaich) |
| 260 | + |
| 261 | +* build, windows: fix x64 configuration issue (Marc Schlaich) |
| 262 | + |
| 263 | +* win: fix buffer leak on error in pipe.c (Fedor Indutny) |
| 264 | + |
| 265 | +* kqueue: invalidate fd in uv_fs_event_t (Fedor Indutny) |
| 266 | + |
| 267 | +* linux: always deregister closing fds from epoll (Geoffry Song) |
| 268 | + |
| 269 | +* error: add ENXIO for O_NONBLOCK FIFO open() (Fedor Indutny) |
| 270 | + |
| 271 | + |
228 | 272 | 2014.02.19, Version 0.10.25 (Stable), d778dc588507588b12b9f9d2905078db542ed751 |
229 | 273 |
|
230 | 274 | Changes since version 0.10.24: |
|
0 commit comments