d4805dc43e87a28c16f24503c9443bddb2d0f91b
[platform/upstream/nodejs.git] / ChangeLog
1 2013.01.11, Version 0.9.6 (Unstable)
2
3 * V8: update to 3.15.11.5
4
5 * node: remove ev-emul.h (Ben Noordhuis)
6
7 * path: make basename and extname ignore trailing slashes (Bert Belder)
8
9 * typed arrays: fix sunos signed/unsigned char issue (Ben Noordhuis)
10
11 * child_process: Fix {stdio:'inherit'} regression (Ben Noordhuis)
12
13 * child_process: Fix pipe() from child stdio streams  (Maciej Małecki)
14
15 * child_process: make fork() execPath configurable (Bradley Meck)
16
17 * stream: Add readable.push(chunk) method (isaacs)
18
19 * dtrace: x64 ustack helper (Fedor Indutny)
20
21 * repl: fix floating point number parsing (Nirk Niggler)
22
23 * repl: allow overriding builtins (Ben Noordhuis)
24
25 * net: add localAddress and localPort to Socket (James Hight)
26
27 * fs: make pool size coincide with ReadStream bufferSize (Shigeki Ohtsu)
28
29 * typed arrays: implement load and store swizzling (Dean McNamee)
30
31 * windows: fix perfctr crash on XP and 2003 (Scott Blomquist)
32
33 * dgram: fix double implicit bind error (Ben Noordhuis)
34
35
36 2012.12.30, Version 0.9.5 (Unstable), 01994e8119c24f2284bac0779b32acb49c95bee7
37
38 * assert: improve support for new execution contexts (lukebayes)
39
40 * domain: use camelCase instead of snake_case (isaacs)
41
42 * domain: Do not use uncaughtException handler (isaacs)
43
44 * fs: make 'end' work with ReadStream without 'start' (Ben Noordhuis)
45
46 * https: optimize createConnection() (Ryunosuke SATO)
47
48 * buffer: speed up base64 encoding by 20% (Ben Noordhuis)
49
50 * doc: Colorize API stabilitity index headers in docs (Luke Arduini)
51
52 * net: socket.readyState corrections (bentaber)
53
54 * http: Performance enhancements for http under streams2 (isaacs)
55
56 * stream: fix to emit end event on http.ClientResponse (Shigeki Ohtsu)
57
58 * stream: fix event handler leak in readstream pipe and unpipe (Andreas Madsen)
59
60 * build: Support ./configure --tag switch (Maciej Małecki)
61
62 * repl: don't touch `require.cache` (Nathan Rajlich)
63
64 * node: Emit 'exit' event when exiting for an uncaught exception (isaacs)
65
66
67 2012.12.21, Version 0.9.4 (Unstable), d86d83c75f6343b5368bb7bd328b4466a035e1d4
68
69 * streams: Update all streaming interfaces to use new classes (isaacs)
70
71 * node: remove idle gc (Ben Noordhuis)
72
73 * http: protect against response splitting attacks (Bert Belder)
74
75 * fs: Raise error when null bytes detected in paths (isaacs)
76
77 * fs: fix 'object is not a function' callback errors (Ben Noordhuis)
78
79 * fs: add autoClose=true option to fs.createReadStream (Farid Neshat)
80
81 * process: add getgroups(), setgroups(), initgroups() (Ben Noordhuis)
82
83 * openssl: optimized asm code on x86 and x64 (Bert Belder)
84
85 * crypto: fix leak in GetPeerCertificate (Fedor Indutny)
86
87 * add systemtap support (Jan Wynholds)
88
89 * windows: add ETW and PerfCounters support (Scott Blomquist)
90
91 * windows: fix normalization of UNC paths (Bert Belder)
92
93 * crypto: fix ssl error handling (Sergey Kholodilov)
94
95 * node: remove eio-emul.h (Ben Noordhuis)
96
97 * os: add os.endianness() function (Nathan Rajlich)
98
99 * readline: don't emit "line" events with a trailing '\n' char (Nathan Rajlich)
100
101 * build: add configure option to generate xcode build files (Timothy J Fontaine)
102
103 * build: allow linking against system libuv, cares, http_parser (Stephen Gallagher)
104
105 * typed arrays: add slice() support to ArrayBuffer (Anthony Pesch)
106
107 * debugger: exit and kill child on SIGTERM or SIGHUP (Fedor Indutny)
108
109 * url: url.format escapes delimiters in path and query (J. Lee Coltrane)
110
111
112 2012.10.24, Version 0.9.3 (Unstable), 1ed4c6776e4f52956918b70565502e0f8869829d
113
114 * V8: Upgrade to 3.13.7.4
115
116 * crypto: Default to buffers instead of binary strings (isaacs, Fedor Indutny)
117
118 * crypto: add getHashes() and getCiphers() (Ben Noordhuis)
119
120 * unix: add custom thread pool, remove libeio (Ben Noordhuis)
121
122 * util: make `inspect()` accept an "options" argument (Nathan Rajlich)
123
124 * https: fix renegotation attack protection (Ben Noordhuis)
125
126 * cluster: make 'listening' handler see actual port (Aaditya Bhatia)
127
128 * windows: use USERPROFILE to get the user's home dir (Bert Belder)
129
130 * path: add platform specific path delimiter (Paul Serby)
131
132 * http: add response.headersSent property (Pavel Lang)
133
134 * child_process: make .fork()'d child auto-exit (Ben Noordhuis)
135
136 * events: add 'removeListener' event (Ben Noordhuis)
137
138 * string_decoder: Add 'end' method, do base64 properly (isaacs)
139
140 * buffer: include encoding value in exception when invalid (Ricky Ng-Adam)
141
142 * http: make http.ServerResponse no longer emit 'end' (isaacs)
143
144 * streams: fix pipe is destructed by 'end' from destination (koichik)
145
146
147 2012.09.17, Version 0.9.2 (Unstable), 6e2055889091a424fbb5c500bc3ab9c05d1c28b4
148
149 * http_parser: upgrade to ad3b631
150
151 * openssl: upgrade 1.0.1c
152
153 * darwin: use FSEvents to watch directory changes (Fedor Indutny)
154
155 * unix: support missing API on NetBSD (Shigeki Ohtsu)
156
157 * unix: fix EMFILE busy loop (Ben Noordhuis)
158
159 * windows: un-break writable tty handles (Bert Belder)
160
161 * windows: map WSAESHUTDOWN to UV_EPIPE (Bert Belder)
162
163 * windows: make spawn with custom environment work again (Bert Belder)
164
165 * windows: map ERROR_DIRECTORY to UV_ENOENT (Bert Belder)
166
167 * tls, https: validate server certificate by default (Ben Noordhuis)
168
169 * tls, https: throw exception on missing key/cert (Ben Noordhuis)
170
171 * tls: async session storage (Fedor Indutny)
172
173 * installer: don't install header files (Ben Noordhuis)
174
175 * buffer: implement Buffer.prototype.toJSON() (Nathan Rajlich)
176
177 * buffer: added support for writing NaN and Infinity (koichik)
178
179 * http: make http.ServerResponse emit 'end' (Ben Noordhuis)
180
181 * build: ./configure --ninja (Ben Noordhuis, Timothy J Fontaine)
182
183 * installer: fix --without-npm (Ben Noordhuis)
184
185 * cli: make -p equivalent to -pe (Ben Noordhuis)
186
187 * url: Go much faster by using Url class (isaacs)
188
189
190 2012.08.28, Version 0.9.1 (Unstable), e6ce259d2caf338fec991c2dd447de763ce99ab7
191
192 * buffer: Add Buffer.isEncoding(enc) to test for valid encoding values (isaacs)
193
194 * Raise UV_ECANCELED on premature close. (Ben Noordhuis)
195
196 * Remove c-ares from libuv, move to a top-level node dependency (Bert Belder)
197
198 * ref/unref for all HandleWraps, timers, servers, and sockets (Timothy J Fontaine)
199
200 * addon: remove node-waf, superseded by node-gyp (Ben Noordhuis)
201
202 * child_process: emit error on exec failure (Ben Noordhuis)
203
204 * cluster: do not use internal server API (Andreas Madsen)
205
206 * constants: add O_DIRECT (Ian Babrou)
207
208 * crypto: add sync interface to crypto.pbkdf2() (Ben Noordhuis)
209
210 * darwin: emulate fdatasync() (Fedor Indutny)
211
212 * dgram: make .bind() always asynchronous (Ben Noordhuis)
213
214 * events: Make emitter.listeners() side-effect free (isaacs, Joe Andaverde)
215
216 * fs: Throw early on invalid encoding args (isaacs)
217
218 * fs: fix naming of truncate/ftruncate functions (isaacs)
219
220 * http: bubble up parser errors to ClientRequest (Brian White)
221
222 * linux: improve cpuinfo parser on ARM and MIPS (Ben Noordhuis)
223
224 * net: add support for IPv6 addresses ending in :: (Josh Erickson)
225
226 * net: support Server.listen(Pipe) (Andreas Madsen)
227
228 * node: don't scan add-on for "init" symbol (Ben Noordhuis)
229
230 * remove process.uvCounters() (Ben Noordhuis)
231
232 * repl: console writes to repl rather than process stdio (Nathan Rajlich)
233
234 * timers: implement setImmediate (Timothy J Fontaine)
235
236 * tls: fix segfault in pummel/test-tls-ci-reneg-attack (Ben Noordhuis)
237
238 * tools: Move gyp addon tools to node-gyp (Nathan Rajlich)
239
240 * unix: preliminary signal handler support (Ben Noordhuis)
241
242 * unix: remove dependency on ev_child (Ben Noordhuis)
243
244 * unix: work around darwin bug, don't poll() on pipe (Fedor Indutny)
245
246 * util: Formally deprecate util.pump() (Ben Noordhuis)
247
248 * windows: make active and closing handle state independent (Bert Belder)
249
250 * windows: report spawn errors to the exit callback (Bert Belder)
251
252 * windows: signal handling support with uv_signal_t (Bert Belder)
253
254
255 2012.07.20, Version 0.9.0 (Unstable), f9b237f478c372fd55e4590d7399dcd8f25f3603
256
257 * punycode: update to v1.1.1 (Mathias Bynens)
258
259 * c-ares: upgrade to 1.9.0 (Saúl Ibarra Corretgé)
260
261 * dns: ignore rogue DNS servers reported by windows (Saúl Ibarra Corretgé)
262
263 * unix: speed up uv_async_send() (Ben Noordhuis)
264
265 * darwin: get cpu model correctly on mac (Xidorn Quan)
266
267 * nextTick: Handle tick callbacks before any other I/O (isaacs)
268
269 * Enable color customization of `util.inspect` (Pavel Lang)
270
271 * tls: Speed and memory improvements (Fedor Indutny)
272
273 * readline: Use one history item for reentered line (Vladimir Beloborodov)
274
275 * Fix #3521 Make process.env more like a regular Object (isaacs)
276
277
278 2013.01.09, Version 0.8.17 (Stable), c50c33e9397d7a0a8717e8ce7530572907c054ad
279
280 * npm: Upgrade to v1.2.0
281   - peerDependencies (Domenic Denicola)
282   - node-gyp v0.8.2 (Nathan Rajlich)
283   - Faster installs from github user/project shorthands (Nathan Zadoks)
284
285 * typed arrays: fix 32 bit size/index overflow (Ben Noordhuis)
286
287 * http: Improve performance of single-packet responses (Ben Noordhuis)
288
289 * install: fix openbsd man page location (Ben Noordhuis)
290
291 * http: bubble up parser errors to ClientRequest (Brian White)
292
293
294 2012.12.13, Version 0.8.16 (Stable), 1c9c6277d5cfcaaac8569c0c8f7daa64292048a9
295
296 * npm: Upgrade to 1.1.69
297
298 * fs: fix WriteStream/ReadStream fd leaks (Ben Noordhuis)
299
300 * crypto: fix leak in GetPeerCertificate (Fedor Indutny)
301
302 * buffer: Don't double-negate numeric buffer arg (Trevor Norris)
303
304 * net: More accurate IP address validation and IPv6 dotted notation. (Joshua Erickson)
305
306
307 2012.11.26, Version 0.8.15 (Stable), fdf91afb494a7a2fff2913d817f589c191a2c88f
308
309 * npm: Upgrade to 1.1.66 (isaacs)
310
311 * linux: use /proc/cpuinfo for CPU frequency (Ben Noordhuis)
312
313 * windows: map WSAESHUTDOWN to UV_EPIPE (Ben Noordhuis)
314
315 * windows: map ERROR_GEN_FAILURE to UV_EIO (Bert Belder)
316
317 * unix: do not set environ unless one is provided (Charlie McConnell)
318
319 * domains: don't crash if domain is set to null (Bert Belder)
320
321 * windows: fix the x64 debug build (Bert Belder)
322
323 * net, tls: fix connect() resource leak (Ben Noordhuis)
324
325
326 2012.10.25, Version 0.8.14 (Stable), b00527fcf05c3d9f/b5d5d790f9472906a59fe218
327
328 * events: Don't clobber pre-existing _events obj in EE ctor (isaacs)
329
330
331 2012.10.25, Version 0.8.13 (Stable), ff4c974873f9a7cc6a5b042eb9b6389bb8dde6d6
332
333 * V8: Upgrade to 3.11.10.25
334
335 * npm: Upgrade to 1.1.65
336
337 * url: parse hostnames that start with - or _ (Ben Noordhuis)
338
339 * repl: Fix Windows 8 terminal issue (Bert Belder)
340
341 * typed arrays: use signed char for signed int8s (Aaron Jacobs)
342
343 * crypto: fix bugs in DiffieHellman (Ben Noordhuis)
344
345 * configure: turn on VFPv3 on ARMv7 (Ben Noordhuis)
346
347 * Re-enable OpenSSL UI for entering passphrases via tty (Ben Noordhuis)
348
349 * repl: ensure each REPL instance gets its own "context" (Nathan Rajlich)
350
351
352 2012.10.12, Version 0.8.12 (Stable), 38c72d4e29574dec5205bcf23c2a85efe65331a4
353
354 * npm: Upgrade to 1.1.63
355
356 * crypto: Reduce stability index to 2-Unstable (isaacs)
357
358 * windows: fix handle leak in uv_fs_utime (Bert Belder)
359
360 * windows: fix application crashed popup in debug version (Bert Belder)
361
362 * buffer: report proper retained size in profiler (Ben Noordhuis)
363
364 * buffer: fix byteLength with UTF-16LE (koichik)
365
366 * repl: make "end of input" JSON.parse() errors throw in the REPL (Nathan Rajlich)
367
368 * repl: make invalid RegExp modifiers throw in the REPL (Nathan Rajlich)
369
370 * http: handle multiple Proxy-Authenticate values (Willi Eggeling)
371
372
373 2012.09.27, Version 0.8.11 (Stable), e1f39468fa580c1e4cb15fac621f87944ee625dc
374
375 * fs: Fix stat() size reporting for large files (Ben Noordhuis)
376
377
378 2012.09.25, Version 0.8.10 (Stable), 0bc273da4fcaa79b209ed755ad249a3e7be626a6
379
380 * npm: Upgrade to 1.1.62
381
382 * repl: make invalid RegExps throw in the REPL (Nathan Rajlich)
383
384 * v8: loosen artificial mmap constraint (Bryan Cantrill)
385
386 * process: fix setuid() and setgid() error reporting (Ben Noordhuis)
387
388 * domain: Properly exit() on domain disposal (isaacs)
389
390 * fs: fix watchFile() missing deletion events (Ben Noordhuis)
391
392 * fs: fix assert in fs.watch() (Ben Noordhuis)
393
394 * fs: don't segfault on deeply recursive stat() (Ben Noordhuis)
395
396 * http: Remove timeout handler when data arrives (Frédéric Germain)
397
398 * http: make the client "res" object gets the same domain as "req" (Nathan Rajlich)
399
400 * windows: don't blow up when an invalid FD is used (Bert Belder)
401
402 * unix: map EDQUOT to UV_ENOSPC (Charlie McConnell)
403
404 * linux: improve /proc/cpuinfo parser (Ben Noordhuis)
405
406 * win/tty: reset background brightness when color is set to default (Bert Belder)
407
408 * unix: put child process stdio fds in blocking mode (Ben Noordhuis)
409
410 * unix: fix EMFILE busy loop (Ben Noordhuis)
411
412 * sunos: don't set TCP_KEEPALIVE (Ben Noordhuis)
413
414 * tls: Use slab allocator for memory management (Fedor Indutny)
415
416 * openssl: Use optimized assembly code for x86 and x64 (Bert Belder)
417
418
419 2012.09.11, Version 0.8.9 (Stable), b88c3902b241cf934e75443b934f2033ad3915b1
420
421 * v8: upgrade to 3.11.10.22
422
423 * GYP: upgrade to r1477
424
425 * npm: Upgrade to 1.1.61
426
427 * npm: Don't create world-writable files (isaacs)
428
429 * windows: fix single-accept mode for shared server sockets (Bert Belder)
430
431 * windows: fix uninitialized memory access in uv_update_time() (Bert Belder)
432
433 * windows: don't throw when a signal handler is attached (Bert Belder)
434
435 * unix: fix memory leak in udp (Ben Noordhuis)
436
437 * unix: map errno ESPIPE (Ben Noordhuis)
438
439 * unix, windows: fix memory corruption in fs-poll.c (Ben Noordhuis)
440
441 * sunos: fix os.cpus() on x86_64 (Ben Noordhuis)
442
443 * child process: fix processes with IPC channel don't emit 'close' (Bert Belder)
444
445 * build: add a "--dest-os" option to force a gyp "flavor" (Nathan Rajlich)
446
447 * build: set `process.platform` to "sunos" on SunOS (Nathan Rajlich)
448
449 * build: fix `make -j` fails after `make clean` (Bearice Ren)
450
451 * build: fix openssl configuration for "arm" builds (Nathan Rajlich)
452
453 * tls: support unix domain socket/named pipe in tls.connect (Shigeki Ohtsu)
454
455 * https: make https.get() accept a URL (koichik)
456
457 * http: respect HTTP/1.0 TE header (Ben Noordhuis)
458
459 * crypto, tls: Domainify setSNICallback, pbkdf2, randomBytes (Ben Noordhuis)
460
461 * stream.pipe: Don't call destroy() unless it's a function (isaacs)
462
463
464 2012.08.22, Version 0.8.8 (Stable), a299c97bbc701f4d460e91214d7bfe7a9589d361
465
466 * V8: upgrade to 3.11.10.19
467
468 * npm: upgrade to 1.1.59
469
470 * windows: fix uninitialized memory access in uv_update_time() (Bert Belder)
471
472 * unix, windows: fix memory corruption in fs-poll.c (Ben Noordhuis)
473
474 * unix: fix integer overflow in uv_hrtime (Tim Holy)
475
476 * sunos: fix uv_cpu_info() on x86_64 (Ben Noordhuis)
477
478 * tls: update default cipher list (Ben Noordhuis)
479
480 * unix: Fix llvm and older gcc duplicate symbol warnings (Bert Belder)
481
482 * fs: fix use after free in stat watcher (Ben Noordhuis)
483
484 * build: Fix using manually compiled gcc on OS X (Nathan Rajlich)
485
486 * windows: make junctions work again (Bert Belder)
487
488
489 2012.08.15, Version 0.8.7 (Stable), f640c5d35cba96634cd8176a525a1d876e361a61
490
491 * npm: Upgrade to 1.1.49
492
493 * website: download page (Golo Roden)
494
495 * crypto: fix uninitialized memory access in openssl (Ben Noordhuis)
496
497 * buffer, crypto: fix buffer decoding (Ben Noordhuis)
498
499 * build: compile with -fno-tree-vrp when gcc >= 4.0 (Ben Noordhuis)
500
501 * tls: handle multiple CN fields when verifying cert (Ben Noordhuis)
502
503 * doc: remove unused util from child_process (Kyle Robinson Young)
504
505 * build: rework -fvisibility=hidden detection (Ben Noordhuis)
506
507 * windows: don't duplicate invalid stdio handles (Bert Belder)
508
509 * windows: fix typos in process-stdio.c (Bert Belder)
510
511
512 2012.08.07, Version 0.8.6 (Stable), 0544a586ca6b6b900a42e164033dbf350765700a
513
514 * npm: Upgrade to v1.1.48
515
516 * Add 'make binary' to build binary tarballs for all Unixes (Nathan Rajlich)
517
518 * zlib: Emit 'close' on destroy(). (Dominic Tarr)
519
520 * child_process: Fix stdout=null when stdio=['pipe'] (Tyler Neylon)
521
522 * installer: prevent ETXTBSY errors (Ben Noordhuis)
523
524 * installer: honor --without-npm, default install path (Ben Noordhuis)
525
526 * net: make pause work with connecting sockets (Bert Belder)
527
528 * installer: fix cross-compile installs (Ben Noordhuis)
529
530 * net: fix .listen({fd:0}) (Ben Noordhuis)
531
532 * windows: map WSANO_DATA to UV_ENOENT (Bert Belder)
533
534
535 2012.08.02, Version 0.8.5 (Stable), 9b86a4453f0c76f2707a75c0b2343aba33ec63bc
536
537 * node: tag Encode and friends NODE_EXTERN (Ben Noordhuis)
538
539 * fs: fix ReadStream / WriteStream missing callback (Gil Pedersen)
540
541 * fs: fix readFileSync("/proc/cpuinfo") regression (Ben Noordhuis)
542
543 * installer: don't assume bash is installed (Ben Noordhuis)
544
545 * Report errors properly from --eval and stdin (isaacs)
546
547 * assert: fix throws() throws an error without message property (koichik)
548
549 * cluster: fix libuv assert in net.listen() (Ben Noordhuis)
550
551 * build: always link sunos builds with libumem (Trent Mick)
552
553 * build: improve armv7 / hard-float detection (Adam Malcontenti-Wilson)
554
555 * https: Use host header as effective servername (isaacs)
556
557 * sunos: work around OS bug to prevent fs.watch() from spinning (Bryan Cantrill)
558
559 * linux: fix 'two watchers, one path' segfault (Ben Noordhuis)
560
561 * windows: fix memory leaks in many fs functions (Bert Belder)
562
563 * windows: don't allow directories to be opened for writing/appending (Bert Belder)
564
565 * windows: make fork() work even when not all stdio handles are valid (Bert Belder)
566
567 * windows: make unlink() not remove mount points, and improve performance (Bert Belder)
568
569 * build: Sign pkg installer for OS X (isaacs)
570
571
572 2012.07.25, Version 0.8.4 (Stable), f98562fcd7d1cab573ca4dc1612157d6999befd4
573
574 * V8: Upgrade to 3.11.10.17
575
576 * npm: Upgrade to 1.1.45
577
578 * net: fix Socket({ fd: 42 }) api (Ben Noordhuis)
579
580 * readline: Remove event listeners on close (isaacs)
581
582 * windows: correctly prep long path for fs.exists(Sync) (Bert Belder)
583
584 * debugger: wake up the event loop when a debugger command is dispatched (Peter Rybin)
585
586 * tls: verify server's identity (Fedor Indutny)
587
588 * net: ignore socket.setTimeout(Infinity or NaN) (Fedor Indutny)
589
590
591 2012.07.19, Version 0.8.3 (Stable), 60bf2d6cb33e4ce55604f73889ab840a9de8bdab
592
593 * V8: upgrade to 3.11.10.15
594
595 * npm: Upgrade to 1.1.43
596
597 * net: fix net.Server.listen({fd:x}) error reporting (Ben Noordhuis)
598
599 * net: fix bogus errno reporting (Ben Noordhuis)
600
601 * build: Move npm shebang logic into an npm script (isaacs)
602
603 * build: fix add-on loading on freebsd (Ben Noordhuis)
604
605 * build: disable unsafe optimizations (Ben Noordhuis)
606
607 * build: fix spurious mksnapshot crashes for good (Ben Noordhuis)
608
609 * build: speed up genv8constants (Dave Pacheco)
610
611 * fs: make unwatchFile() remove a specific listener (Ben Noordhuis)
612
613 * domain: Remove first arg from intercepted fn (Toshihiro Nakamura)
614
615 * domain: Fix memory leak on error (isaacs)
616
617 * events: Fix memory leak from removeAllListeners (Nathan Rajlich)
618
619 * zlib: Fix memory leak in Unzip class. (isaacs)
620
621 * crypto: Fix memory leak in DecipherUpdate() (Ben Noordhuis)
622
623
624 2012.07.09, Version 0.8.2 (Stable), cc6084b9ac5cf1d4fe5e7165b71e8fc05d11be1f
625
626 * npm: Upgrade to 1.1.36
627
628 * readline: don't use Function#call() (Nathan Rajlich)
629
630 * Code cleanup to pass 'use strict' (Jonas Westerlund)
631
632 * module: add filename to require() json errors (TJ Holowaychuk)
633
634 * readline: fix for unicode prompts (Tim Macfarlane)
635
636 * timers: fix handling of large timeouts (Ben Noordhuis)
637
638 * repl: fix passing an empty line inserting "undefined" into the buffer (Nathan Rajlich)
639
640 * repl: fix crashes when buffering command (Maciej Małecki)
641
642 * build: rename strict_aliasing to node_no_strict_aliasing (Ben Noordhuis)
643
644 * build: disable -fstrict-aliasing for any gcc < 4.6.0 (Ben Noordhuis)
645
646 * build: detect cc version with -dumpversion (Ben Noordhuis)
647
648 * build: handle output of localized gcc or clang (Ben Noordhuis)
649
650 * unix: fix memory corruption in freebsd.c (Ben Noordhuis)
651
652 * unix: fix 'zero handles, one request' busy loop (Ben Noordhuis)
653
654 * unix: fix busy loop on unexpected tcp message (Ben Noordhuis)
655
656 * unix: fix EINPROGRESS busy loop (Ben Noordhuis)
657
658
659 2012.06.29, Version 0.8.1 (stable), 2134aa3d5c622fc3c3b02ccb713fcde0e0df479a
660
661 * V8: upgrade to v3.11.10.12
662
663 * npm: upgrade to v1.1.33
664   - Support for parallel use of the cache folder
665   - Retry on registry timeouts or network failures (Trent Mick)
666   - Reduce 'engines' failures to a warning
667   - Use new zsh completion if aviailable (Jeremy Cantrell)
668
669 * Fix #3577 Un-break require('sys')
670
671 * util: speed up formatting of large arrays/objects (Ben Noordhuis)
672
673 * windows: make fs.realpath(Sync) work with UNC paths (Bert Belder)
674
675 * build: fix --shared-v8 option (Ben Noordhuis)
676
677 * doc: `detached` is a boolean (Andreas Madsen)
678
679 * build: use proper python interpreter (Ben Noordhuis)
680
681 * build: expand ~ in `./configure --prefix=~/a/b/c` (Ben Noordhuis)
682
683 * build: handle CC env var with spaces (Gabriel de Perthuis)
684
685 * build: fix V8 build when compiling with gcc 4.5 (Ben Noordhuis)
686
687 * build: fix --shared-v8 option (Ben Noordhuis)
688
689 * windows msi: Fix icon issue which caused huge file size (Bert Belder)
690
691 * unix: assume that dlopen() may clobber dlerror() (Ben Noordhuis)
692
693 * sunos: fix memory corruption bugs (Ben Noordhuis)
694
695 * windows: better (f)utimes and (f)stat (Bert Belder)
696
697
698 2012.06.25, Version 0.8.0 (stable), 8b8a7a7f9b41e74e1e810d0330738ad06fc302ec
699
700 * V8: upgrade to v3.11.10.10
701
702 * npm: Upgrade to 1.1.32
703
704 * Deprecate iowatcher (Ben Noordhuis)
705
706 * windows: update icon (Bert Belder)
707
708 * http: Hush 'MUST NOT have a body' warnings to debug() (isaacs)
709
710 * Move blog.nodejs.org content into repository (isaacs)
711
712 * Fix #3503: stdin: resume() on pipe(dest) (isaacs)
713
714 * crypto: fix error reporting in SetKey() (Fedor Indutny)
715
716 * Add --no-deprecation and --trace-deprecation command-line flags (isaacs)
717
718 * fs: fix fs.watchFile() (Ben Noordhuis)
719
720 * fs: Fix fs.readfile() on pipes (isaacs)
721
722 * Rename GYP variable node_use_system_openssl to be consistent (Ryan Dahl)
723
724
725 2012.06.19, Version 0.7.12 (unstable), a72120190a8ffdbcd3d6ad2a2e6ceecd2087111e
726
727 * npm: Upgrade to 1.1.30
728         - Improved 'npm init'
729         - Fix the 'cb never called' error from 'oudated' and 'update'
730         - Add --save-bundle|-B config
731         - Fix isaacs/npm#2465: Make npm script and windows shims cygwin-aware
732         - Fix isaacs/npm#2452 Use --save(-dev|-optional) in npm rm
733         - `logstream` option to replace removed `logfd` (Rod Vagg)
734         - Read default descriptions from README.md files
735
736 * Shims to support deprecated ev_* and eio_* methods (Ben Noordhuis)
737
738 * #3118 net.Socket: Delay pause/resume until after connect (isaacs)
739
740 * #3465 Add ./configure --no-ifaddrs flag (isaacs)
741
742 * child_process: add .stdin stream to forks (Fedor Indutny)
743
744 * build: fix `make install DESTDIR=/path` (Ben Noordhuis)
745
746 * tls: fix off-by-one error in renegotiation check (Ben Noordhuis)
747
748 * crypto: Fix diffie-hellman key generation UTF-8 errors (Fedor Indutny)
749
750 * node: change the constructor name of process from EventEmitter to process (Andreas Madsen)
751
752 * net: Prevent property access throws during close (Reid Burke)
753
754 * querystring: improved speed and code cleanup (Felix Böhm)
755
756 * sunos: fix assertion errors breaking fs.watch() (Fedor Indutny)
757
758 * unix: stat: detect sub-second changes (Ben Noordhuis)
759
760 * add stat() based file watcher (Ben Noordhuis)
761
762
763 2012.06.15, Version 0.7.11 (unstable), 5cfe0b86d5be266ef51bbba369c39e412ee51944
764
765 * V8: Upgrade to v3.11.10
766
767 * npm: Upgrade to 1.1.26
768
769 * doc: Improve cross-linking in API docs markdown (Ben Kelly)
770
771 * Fix #3425: removeAllListeners should delete array (Reid Burke)
772
773 * cluster: don't silently drop messages when the write queue gets big (Bert Belder)
774
775 * Add Buffer.concat method (isaacs)
776
777 * windows: make symlinks tolerant to forward slashes (Bert Belder)
778
779 * build: Add node.d and node.1 to installer (isaacs)
780
781 * cluster: rename worker.unqiueID to worker.id (Andreas Madsen)
782
783 * Windows: Enable ETW events on Windows for existing DTrace probes. (Igor Zinkovsky)
784
785 * test: bundle node-weak in test/gc so that it doesn't need to be downloaded (Nathan Rajlich)
786
787 * Make many tests pass on Windows (Bert Belder)
788
789 * Fix #3388 Support listening on file descriptors (isaacs)
790
791 * Fix #3407 Add os.tmpDir() (isaacs)
792
793 * Unbreak the snapshotted build on Windows (Bert Belder)
794
795 * Clean up child_process.kill throws (Bert Belder)
796
797 * crypto: make cipher/decipher accept buffer args (Ben Noordhuis)
798
799
800 2012.06.11, Version 0.7.10 (unstable), 12a32a48a30182621b3f8e9b9695d1946b53c131
801
802 * Roll V8 back to 3.9.24.31
803
804 * build: x64 target should always pass -m64 (Robert Mustacchi)
805
806 * add NODE_EXTERN to node::Start (Joel Brandt)
807
808 * repl: Warn about running npm commands (isaacs)
809
810 * slab_allocator: fix crash in dtor if V8 is dead (Ben Noordhuis)
811
812 * slab_allocator: fix leak of Persistent handles (Shigeki Ohtsu)
813
814 * windows/msi: add node.js prompt to startmenu (Jeroen Janssen)
815
816 * windows/msi: fix adding node to PATH (Jeroen Janssen)
817
818 * windows/msi: add start menu links when installing (Jeroen Janssen)
819
820 * windows: don't install x64 version into the 'program files (x86)' folder (Matt Gollob)
821
822 * domain: Fix #3379 domain.intercept no longer passes error arg to cb (Marc Harter)
823
824 * fs: make callbacks run in global context (Ben Noordhuis)
825
826 * fs: enable fs.realpath on windows (isaacs)
827
828 * child_process: expose UV_PROCESS_DETACHED as options.detached (Charlie McConnell)
829
830 * child_process: new stdio API for .spawn() method (Fedor Indutny)
831
832 * child_process: spawn().ref() and spawn().unref() (Fedor Indutny)
833
834 * Upgrade npm to 1.1.25
835         - Enable npm link on windows
836         - Properly remove sh-shim on Windows
837         - Abstract out registry client and logger
838
839
840 2012.05.28, Version 0.7.9 (unstable), 782277f11a753ded831439ed826448c06fc0f356
841
842 * Upgrade V8 to 3.11.1
843
844 * Upgrade npm to 1.1.23
845
846 * uv: rework reference counting scheme (Ben Noordhuis)
847
848 * uv: add interface for joining external event loops (Bert Belder)
849
850 * repl, readline: Handle Ctrl+Z and SIGCONT better (Nathan Rajlich)
851
852 * fs: 64bit offsets for fs calls (Igor Zinkovsky)
853
854 * fs: add sync open flags 'rs' and 'rs+' (Kevin Bowman)
855
856 * windows: enable creating directory junctions with fs.symlink (Igor Zinkovsky, Bert Belder)
857
858 * windows: fix fs.lstat to properly detect symlinks. (Igor Zinkovsky)
859
860 * Fix #3270 Escape url.parse delims (isaacs)
861
862 * http: make http.get() accept a URL (Adam Malcontenti-Wilson)
863
864 * Cleanup vm module memory leakage (Marcel Laverdet)
865
866 * Optimize writing strings with Socket.write (Bert Belder)
867
868 * add support for CESU-8 and UTF-16LE encodings (koichik)
869
870 * path: add path.sep to get the path separator. (Yi, EungJun)
871
872 * net, http: add backlog parameter to .listen() (Erik Dubbelboer)
873
874 * debugger: support mirroring Date objects (Fedor Indutny)
875
876 * addon: add AtExit() function (Ben Noordhuis)
877
878 * net: signal localAddress bind failure in connect (Brian Schroeder)
879
880 * util: handle non-string return value in .inspect() (Alex Kocharin)
881
882
883 2012.04.18, Version 0.7.8 (unstable), c2b47097c0b483552efc1947c6766fa1128600b6
884
885 * Upgrade V8 to 3.9.24.9
886
887 * Upgrade OpenSSL to 1.0.0f
888
889 * Upgrade npm to 1.1.18
890
891 * Show licenses in Binary installers
892
893 * Domains (isaacs)
894
895 * readline: rename "end" to "close" (Nathan Rajlich)
896
897 * tcp: make getsockname() return address family as string (Shigeki Ohtsu)
898
899 * http, https: fix .setTimeout() (ssuda)
900
901 * os: add cross platform EOL character (Mustansir Golawala)
902
903 * typed arrays: unexport SizeOfArrayElementForType() (Aaron Jacobs)
904
905 * net: honor 'enable' flag in .setNoDelay() (Ben Noordhuis)
906
907 * child_process: emit error when .kill fails (Andreas Madsen)
908
909 * gyp: fix 'argument list too long' build error (Ben Noordhuis)
910
911 * fs.WriteStream: Handle modifications to fs.open (isaacs)
912
913 * repl, readline: Handle newlines better (Nathan Rajlich, Nathan Friedly)
914
915 * build: target OSX 10.5 when building on darwin (Nathan Rajlich)
916
917 * Fix #3052 Handle errors properly in zlib (isaacs)
918
919 * build: add support for DTrace and postmortem (Dave Pacheco)
920
921 * core: add reusable Slab allocator (Ben Noordhuis)
922
923
924 2012.03.30, Version 0.7.7 (unstable), 5cda2542fdb086f9fe5de889bea435a65e377dea
925
926 * Upgrade V8 to 3.9.24.7
927
928 * Upgrade npm to 1.1.15
929
930 * Handle Emoji characters properly (Erik Corry, Bert Belder)
931
932 * readline: migrate ansi/vt100 logic from tty to readline (Nathan Rajlich)
933
934 * readline: Fix multiline handling (Alex Kocharin)
935
936 * add a -i/--interactive flag to force the REPL (Nathan Rajlich)
937
938 * debugger: add breakOnException command (Fedor Indutny)
939
940 * cluster: kill workers when master dies (Andreas Madsen)
941
942 * cluster: add graceful disconnect support (Andreas Madsen)
943
944 * child_process: Separate 'close' event from 'exit' (Charlie McConnell)
945
946 * typed arrays: add Uint8ClampedArray (Mikael Bourges-Sevenier)
947
948 * buffer: Fix byte alignment issues (Ben Noordhuis, Erik Lundin)
949
950 * tls: fix CryptoStream.setKeepAlive() (Shigeki Ohtsu)
951
952 * Expose http parse error codes (Felix Geisendörfer)
953
954 * events: don't delete the listeners array (Ben Noordhuis, Nathan Rajlich)
955
956 * process: add process.config to view node's ./configure settings (Nathan Rajlich)
957
958 * process: process.execArgv to see node's arguments (Micheil Smith)
959
960 * process: fix process.title setter (Ben Noordhuis)
961
962 * timers: handle negative or non-numeric timeout values (Ben Noordhuis)
963
964
965 2012.03.13, Version 0.7.6 (unstable), f06abda6f58e517349d1b63a2cbf5a8d04a03505
966
967 * Upgrade v8 to 3.9.17
968
969 * Upgrade npm to 1.1.8
970   - Add support for os/cpu fields in package.json (Adam Blackburn)
971   - Automatically node-gyp packages containing a binding.gyp
972   - Fix failures unpacking in UNC shares
973   - Never create un-listable directories
974   - Handle cases where an optionalDependency fails to build
975
976 * events: newListener emit correct fn when using 'once' (Roly Fentanes)
977
978 * url: Ignore empty port component (Łukasz Walukiewicz)
979
980 * module: replace 'children' array (isaacs)
981
982 * tls: parse multiple values of a key in ssl certificate (Sambasiva Suda)
983
984 * cluster: support passing of named pipes (Ben Noordhuis)
985
986 * Windows: include syscall in fs errors (Bert Belder)
987
988 * http: #2888 Emit end event only once (Igor Zinkovsky)
989
990 * readline: add multiline support (Rlidwka)
991
992 * process: add `process.hrtime()` (Nathan Rajlich)
993
994 * net, http, https: add localAddress option (Dmitry Nizovtsev)
995
996 * addon improvements (Nathan Rajlich)
997
998 * build improvements (Ben Noordhuis, Sadique Ali, T.C. Hollingsworth, Nathan Rajlich)
999
1000 * add support for "SEARCH" request methods (Nathan Rajlich)
1001
1002 * expose the zlib and http_parser version in process.versions (Nathan Rajlich)
1003
1004
1005 2012.02.23, Version 0.7.5 (unstable), d384b8b0d2ab7f05465f0a3e15fe20b4e25b5f86
1006
1007 * startup speed improvements (Maciej Małecki)
1008
1009 * crypto: add function getDiffieHellman() (Tomasz Buchert)
1010
1011 * buffer: support decoding of URL-safe base64 (Ben Noordhuis)
1012
1013 * Make QueryString.parse() even faster (Brian White)
1014
1015 * url: decode url entities in auth section (Ben Noordhuis)
1016
1017 * http: support PURGE request method (Ben Noordhuis)
1018
1019 * http: Generate Date headers on responses (Mark Nottingham)
1020
1021 * Fix #2762: Add callback to close function. (Mikeal Rogers)
1022
1023 * dgram: fix out-of-bound memory read (Ben Noordhuis)
1024
1025 * repl: add automatic loading of built-in libs (Brandon Benvie)
1026
1027 * repl: remove double calls where possible (Fedor Indutny)
1028
1029 * Readline improvements. Related: #2737 #2756 (Colton Baker)
1030
1031 * build: disable -fomit-frame-pointer on solaris (Dave Pacheco)
1032
1033 * build: arch detection improvements (Nathan Rajlich)
1034
1035 * build: Make a fat binary for the OS X `make pkg`. (Nathan Rajlich)
1036
1037 * jslint src/ and lib/ on 'make test' (isaacs)
1038
1039
1040
1041 2012.02.14, Version 0.7.4 (unstable), de21de920cf93ec40736ada3792a7f85f3eadeda
1042
1043 * Upgrade V8 to 3.9.5
1044
1045 * Upgrade npm to 1.1.1
1046
1047 * build: Detect host_arch better (Karl Skomski)
1048
1049 * debugger: export `debug_port` to `process` (Fedor Indutny)
1050
1051 * api docs: CSS bug fixes (isaacs)
1052
1053 * build: use -fPIC for native addons on UNIX (Nathan Rajlich)
1054
1055 * Re-add top-level v8::Locker (Marcel Laverdet)
1056
1057 * Move images out of the dist tarballs (isaacs)
1058
1059 * libuv: Remove uv_export and uv_import (Ben Noordhuis)
1060
1061 * build: Support x64 build on Windows (Igor Zinkovsky)
1062
1063
1064 2012.02.07, Version 0.7.3 (unstable), 99059aad8d654acda4abcfaa68df182b50f2ec90
1065
1066 * Upgrade V8 to 3.9.2
1067
1068 * Revert support for isolates. (Ben Noordhuis)
1069
1070 * cluster: Cleanup docs, event handling, and process.disconnect (Andreas Madsen)
1071
1072 * gyp_addon: link with node.lib on Windows (Nathan Rajlich)
1073
1074 * http: fix case where http-parser is freed twice (koichik)
1075
1076 * Windows: disable RTTI and exceptions (Bert Belder)
1077
1078
1079 2012.02.01, Version 0.7.2 (unstable), ec79acb3a6166e30f0bf271fbbfda1fb575b3321
1080
1081 * Update V8 to 3.8.9
1082
1083 * Support for sharing streams across Isolates (Igor Zinkovsky)
1084
1085 * #2636 - Fix case where http_parsers are freed too early (koichik)
1086
1087 * url: Support for IPv6 addresses in URLs (Łukasz Walukiewicz)
1088
1089 * child_process: Add disconnect() method to child processes (Andreas Madsen)
1090
1091 * fs: add O_EXCL support, exclusive open file (Ben Noordhuis)
1092
1093 * fs: more specific error messages (Tj Holowaychuk)
1094
1095 * tty: emit 'unknown' key event if key sequence not found (Dan VerWeire, Nathan Rajlich)
1096
1097 * build: compile release build too if BUILDTYPE=Debug (Ben Noordhuis)
1098
1099 * module: fix --debug-brk on symlinked scripts (Fedor Indutny)
1100
1101 * zlib: fix `Failed to set dictionary` issue (Fedor Indutny)
1102
1103 * waf: predict target arch for OS X (Fedor Indutny)
1104
1105
1106 2012.01.23, Version 0.7.1 (unstable), a74354735ab5d5b0fa35a1e4ff7e653757d2069b
1107
1108 * Update V8 to 3.8.8
1109
1110 * Install node-waf by default (Fedor Indutny)
1111
1112 * crypto: Add ability to turn off PKCS padding (Ingmar Runge)
1113
1114 * v8: implement VirtualMemory class on SunOS (Ben Noordhuis)
1115
1116 * Add cluster.setupMaster (Andreas Madsen)
1117
1118 * move `path.exists*` to `fs.exists*` (Maciej Małecki)
1119
1120 * typed arrays: set class name (Ben Noordhuis)
1121
1122 * libuv bug fixes (Igor Zinkovsky, Ben Noordhuis, Dan VerWeire)
1123
1124
1125 2012.01.16, Version 0.7.0 (unstable), 9cc55dca6f67a6096c858b841c677b0593404321
1126
1127 * Upgrade V8 to 3.8.6
1128
1129 * Use GYP build system on unix (Ben Noordhuis)
1130
1131 * Experimenetal isolates support (Ben Noordhuis)
1132
1133 * Improvements to Cluster API (Andreas Madsen)
1134
1135 * Use isolates for internal debugger (Fedor Indutny)
1136
1137 * Bug fixes
1138
1139
1140 2012.07.10 Version 0.6.20 (maintenance), 952e513379169ec1b40909d1db056e9bf4294899
1141
1142 * npm: Upgrade to 1.1.37 (isaacs)
1143
1144 * benchmark: Backport improvements made in master (isaacs)
1145
1146 * build: always link with -lz (Trent Mick)
1147
1148 * core: use proper #include directives (Ben Noordhuis)
1149
1150 * cluster: don't silently drop messages when the write queue gets big (Bert Belder)
1151
1152 * windows: don't print error when GetConsoleTitleW returns an empty string (Bert Belder)
1153
1154
1155 2012.06.06 Version 0.6.19 (stable), debf552ed2d4a53957446e82ff3c52a8182d5ff4
1156
1157 * npm: upgrade to 1.1.24
1158
1159 * fs: no end emit after createReadStream.pause() (Andreas Madsen)
1160
1161 * vm: cleanup module memory leakage (Marcel Laverdet)
1162
1163 * unix: fix loop starvation under high network load (Ben Noordhuis)
1164
1165 * unix: remove abort() in ev_unref() (Ben Noordhuis)
1166
1167 * windows/tty: never report error after forcibly aborting line-buffered read (Bert Belder)
1168
1169 * windows: skip GetFileAttributes call when opening a file (Bert Belder)
1170
1171
1172 2012.05.15 Version 0.6.18 (stable), 4bc1d395de6abed2cf1e4d0b7b3a1480a21c368f
1173
1174 * windows: skip GetFileAttributes call when opening a file (Bert Belder)
1175
1176 * crypto: add PKCS12/PFX support (Sambasiva Suda)
1177
1178 * #3240: child_process: delete NODE_CHANNEL_FD from env in spawn (Ben Noordhuis)
1179
1180 * windows: add test for path.normalize with UNC paths (Bert Belder)
1181
1182 * windows: make path.normalize convert all slashes to backslashes (Bert Belder)
1183
1184 * fs: Automatically close FSWatcher on error (Bert Belder)
1185
1186 * #3258: fs.ReadStream.pause() emits duplicate data event (koichik)
1187
1188 * pipe_wrap: don't assert() on pipe accept errors (Ben Noordhuis)
1189
1190 * Better exception output for module load and process.nextTick (Felix Geisendörfer)
1191
1192 * zlib: fix error reporting (Ben Noordhuis)
1193
1194 * http: Don't destroy on timeout (isaacs)
1195
1196 * #3231: http: Don't try to emit error on a null'ed req object (isaacs)
1197
1198 * #3236: http: Refactor ClientRequest.onSocket (isaacs)
1199
1200
1201 2012.05.04 Version 0.6.17 (stable), 4ced23deaf36493f4303a18f6fdce768c58becc0
1202
1203 * Upgrade npm to 1.1.21
1204
1205 * uv: Add support for EROFS errors (Ben Noordhuis, Maciej Małecki)
1206
1207 * uv: Add support for EIO and ENOSPC errors (Fedor Indutny)
1208
1209 * windows: Add support for EXDEV errors (Bert Belder)
1210
1211 * http: Fix client memory leaks (isaacs, Vincent Voyer)
1212
1213 * fs: fix file descriptor leak in sync functions (Ben Noordhuis)
1214
1215 * fs: fix ReadStream / WriteStream double close bug (Ben Noordhuis)
1216
1217
1218 2012.04.30 Version 0.6.16 (stable), a1d193963ddc80a27da5da01b59751e14e33d1d6
1219
1220 * Upgrade V8 to 3.6.6.25
1221
1222 * Upgrade npm to 1.1.19
1223
1224 * Windows: add mappings for UV_ENOENT (Bert Belder)
1225
1226 * linux: add IN_MOVE_SELF to inotify event mask (Ben Noordhuis)
1227
1228 * unix: call pipe handle connection cb on accept() error (Ben Noordhuis)
1229
1230 * unix: handle EWOULDBLOCK (Ben Noordhuis)
1231
1232 * map EWOULDBLOCK to UV_EAGAIN (Ben Noordhuis)
1233
1234 * Map ENOMEM to UV_ENOMEM (isaacs)
1235
1236 * Child process: support the `gid` and `uid` options (Bert Belder)
1237
1238 * test: cluster: add worker death event test (Ben Noordhuis)
1239
1240 * typo in node_http_parser (isaacs)
1241
1242 * http_parser: Eat CRLF between requests, even on connection:close. (Ben Noordhuis)
1243
1244 * don't check return value of unsetenv (Ben Noordhuis)
1245
1246
1247 2012.04.09 Version 0.6.15 (stable), f160a45b254e591eb33716311c92be533c6d86c4
1248
1249 * Update npm to 1.1.16
1250
1251 * Show licenses in binary installers.
1252
1253 * unix: add uv_fs_read64, uv_fs_write64 and uv_fs_ftruncate64 (Ben Noordhuis)
1254
1255 * add 64bit offset fs functions (Igor Zinkovsky)
1256
1257 * windows: don't report ENOTSOCK when attempting to bind an udp handle twice (Bert Belder)
1258
1259 * windows: backport pipe-connect-to-file fixes from master (Bert Belder)
1260
1261 * windows: never call fs event callbacks after closing the watcher (Bert Belder)
1262
1263 * fs.readFile: don't make the callback before the fd is closed (Bert Belder)
1264
1265 * windows: use 64bit offsets for uv_fs apis (Igor Zinkovsky)
1266
1267 * Fix #2061: segmentation fault on OS X due to stat size mismatch (Ben Noordhuis)
1268
1269
1270 2012.03.22 Version 0.6.14 (stable), e513ffef7549a56a5af728e1f0c2c0c8f290518a
1271
1272 * net: don't crash when queued write fails (Igor Zinkovsky)
1273
1274 * sunos: fix EMFILE on process.memoryUsage() (Bryan Cantrill)
1275
1276 * crypto: fix compile-time error with openssl 0.9.7e (Ben Noordhuis)
1277
1278 * unix: ignore ECONNABORTED errors from accept() (Ben Noordhuis)
1279
1280 * Add UV_ENOSPC and mappings to it (Bert Belder)
1281
1282 * http-parser: Fix response body is not read (koichik)
1283
1284 * Upgrade npm to 1.1.12
1285   - upgrade node-gyp to 0.3.7
1286   - work around AV-locked directories on Windows
1287   - Fix isaacs/npm#2293 Don't try to 'uninstall' /
1288   - Exclude symbolic links from packages.
1289   - Fix isaacs/npm#2275 Spurious 'unresolvable cycle' error.
1290   - Exclude/include dot files as if they were normal files
1291
1292
1293 2012.03.15 Version 0.6.13 (stable), 9f7f86b534f8556290eb8cad915984ff4ca54996
1294
1295 * Windows: Many libuv test fixes (Bert Belder)
1296
1297 * Windows: avoid uv_guess_handle crash in when fd < 0 (Bert Belder)
1298
1299 * Map EBUSY and ENOTEMPTY errors (Bert Belder)
1300
1301 * Windows: include syscall in fs errors (Bert Belder)
1302
1303 * Fix fs.watch ENOSYS on Linux kernel version mismatch (Ben Noordhuis)
1304
1305 * Update npm to 1.1.9
1306   - upgrade node-gyp to 0.3.5 (Nathan Rajlich)
1307   - Fix isaacs/npm#2249 Add cache-max and cache-min configs
1308   - Properly redirect across https/http registry requests
1309   - log config usage if undefined key in set function (Kris Windham)
1310   - Add support for os/cpu fields in package.json (Adam Blackburn)
1311   - Automatically node-gyp packages containing a binding.gyp
1312   - Fix failures unpacking in UNC shares
1313   - Never create un-listable directories
1314   - Handle cases where an optionalDependency fails to build
1315
1316
1317 2012.03.02 Version 0.6.12 (stable), 48a2d34cfe6b7e1c9d15202a4ef5e3c82d1fba35
1318
1319 * Upgrade V8 to 3.6.6.24
1320
1321 * dtrace ustack helper improvements (Dave Pacheco)
1322
1323 * API Documentation refactor (isaacs)
1324
1325 * #2827 net: fix race write() before and after connect() (koichik)
1326
1327 * #2554 #2567 throw if fs args for 'start' or 'end' are strings (AJ ONeal)
1328
1329 * punycode: Update to v1.0.0 (Mathias Bynens)
1330
1331 * Make a fat binary for the OS X pkg (isaacs)
1332
1333 * Fix hang on accessing process.stdin (isaacs)
1334
1335 * repl: make tab completion work on non-objects (Nathan Rajlich)
1336
1337 * Fix fs.watch on OS X (Ben Noordhuis)
1338
1339 * Fix #2515 nested setTimeouts cause premature process exit (Ben Noordhuis)
1340
1341 * windows: fix time conversion in stat (Igor Zinkovsky)
1342
1343 * windows: fs: handle EOF in read (Brandon Philips)
1344
1345 * windows: avoid IOCP short-circuit on non-ifs lsps (Igor Zinkovsky)
1346
1347 * Upgrade npm to 1.1.4 (isaacs)
1348   - windows fixes
1349   - Bundle nested bundleDependencies properly
1350   - install: support --save with url install targets
1351   - shrinkwrap: behave properly with url-installed modules
1352   - support installing uncompressed tars or single file modules from urls etc.
1353   - don't run make clean on rebuild
1354   - support HTTPS-over-HTTP proxy tunneling
1355
1356
1357 2012.02.17 Version 0.6.11 (stable), 1eb1fe32250fc88cb5b0a97cddf3e02be02e3f4a
1358
1359 * http: allow multiple WebSocket RFC6455 headers (Einar Otto Stangvik)
1360
1361 * http: allow multiple WWW-Authenticate headers (Ben Noordhuis)
1362
1363 * windows: support unicode argv and environment variables (Bert Belder)
1364
1365 * tls: mitigate session renegotiation attacks (Ben Noordhuis)
1366
1367 * tcp, pipe: don't assert on uv_accept() errors (Ben Noordhuis)
1368
1369 * tls: Allow establishing secure connection on the existing socket (koichik)
1370
1371 * dgram: handle close of dgram socket before DNS lookup completes (Seth Fitzsimmons)
1372
1373 * windows: Support half-duplex pipes (Igor Zinkovsky)
1374
1375 * build: disable omit-frame-pointer on solaris systems (Dave Pacheco)
1376
1377 * debugger: fix --debug-brk (Ben Noordhuis)
1378
1379 * net: fix large file downloads failing (koichik)
1380
1381 * fs: fix ReadStream failure to read from existing fd (Christopher Jeffrey)
1382
1383 * net: destroy socket on DNS error (Stefan Rusu)
1384
1385 * dtrace: add missing translator (Dave Pacheco)
1386
1387 * unix: don't flush tty on switch to raw mode (Ben Noordhuis)
1388
1389 * windows: reset brightness when reverting to default text color (Bert Belder)
1390
1391 * npm: update to 1.1.1
1392   - Update which, fstream, mkdirp, request, and rimraf
1393   - Fix #2123 Set path properly for lifecycle scripts on windows
1394   - Mark the root as seen, so we don't recurse into it. Fixes #1838. (Martin Cooper)
1395
1396
1397 2012.02.02, Version 0.6.10 (stable), 051908e023f87894fa68f5b64d0b99a19a7db01e
1398
1399 * Update V8 to 3.6.6.20
1400
1401 * Add npm msysgit bash shim to msi installer (isaacs)
1402
1403 * buffers: fix intermittent out of bounds error (Ben Noordhuis)
1404
1405 * buffers: honor length argument in base64 decoder (Ben Noordhuis)
1406
1407 * windows: Fix path.exists regression (Bert Belder)
1408
1409 * Make QueryString.parse run faster (Philip Tellis)
1410
1411 * http: avoid freeing http-parser objects too early (koichik)
1412
1413 * timers: add v0.4 compatibility hack (Ben Noordhuis)
1414
1415 * Proper EPERM error code support (Igor Zinkovsky, Brandon Philips)
1416
1417 * dgram: Implement udp multicast methods on windows (Bert Belder)
1418
1419
1420 2012.01.27, Version 0.6.9 (stable), f19e20d33f57c4d2853aaea7d2724d44f3b0012f
1421
1422 * dgram: Bring back missing functionality for Unix (Dan VerWeire, Roman Shtylman, Ben Noordhuis)
1423   - Note: Windows UDP support not yet complete.
1424
1425 * http: Fix parser memory leak (koichik)
1426
1427 * zlib: Fix #2365 crashes on invalid input (Nicolas LaCasse)
1428
1429 * module: fix --debug-brk on symlinked scripts (Fedor Indutny)
1430
1431 * Documentation Restyling (Matthew Fitzsimmons)
1432
1433 * Update npm to 1.1.0-3 (isaacs)
1434
1435 * Windows: fix regression in stat() calls to C:\ (Bert Belder)
1436
1437
1438 2012.01.19, Version 0.6.8 (stable), d18cebaf8a7ac701dabd71a3aa4eb0571db6a645
1439
1440 * Update V8 to 3.6.6.19
1441
1442 * Numeric key hash collision fix for V8 (Erik Corry, Fedor Indutny)
1443
1444 * Add missing TTY key translations for F1-F5 on Windows (Brandon Benvie)
1445
1446 * path.extname bugfix with . and .. paths (Bert Belder)
1447
1448 * cluster: don't always kill the master on uncaughtException (Ben Noordhuis)
1449
1450 * Update npm to 1.1.0-2 (isaacs)
1451
1452 * typed arrays: set class name (Ben Noordhuis)
1453
1454 * zlib binding cleanup (isaacs, Bert Belder)
1455
1456 * dgram: use slab memory allocator (Michael Bernstein)
1457
1458 * fix segfault #2473
1459
1460 * #2521 60% improvement in fs.stat on Windows (Igor Zinkovsky)
1461
1462
1463 2012.01.06, Version 0.6.7 (stable), d5a189acef14a851287ee555f7a39431fe276e1c
1464
1465 * V8 hash collision fix (Breaks MIPS) (Bert Belder, Erik Corry)
1466
1467 * Upgrade V8 to 3.6.6.15
1468
1469 * Upgrade npm to 1.1.0-beta-10 (isaacs)
1470
1471 * many doc updates (Ben Noordhuis, Jeremy Martin, koichik, Dave Irvine,
1472   Seong-Rak Choi, Shannen, Adam Malcontenti-Wilson, koichik)
1473
1474 * Fix segfault in node_http_parser.cc
1475
1476 * dgram, timers: fix memory leaks (Ben Noordhuis, Yoshihiro Kikuchi)
1477
1478 * repl: fix repl.start not passing the `ignoreUndefined` arg (Damon Oehlman)
1479
1480 * #1980: Socket.pause null reference when called on a closed Stream (koichik)
1481
1482 * #2263: XMLHttpRequest piped in a writable file stream hang (koichik)
1483
1484 * #2069: http resource leak (koichik)
1485
1486 * buffer.readInt global pollution fix (Phil Sung)
1487
1488 * timers: fix performance regression (Ben Noordhuis)
1489
1490 * #2308, #2246: node swallows openssl error on request (koichik)
1491
1492 * #2114: timers: remove _idleTimeout from item in .unenroll() (James Hartig)
1493
1494 * #2379: debugger: Request backtrace w/o refs (Fedor Indutny)
1495
1496 * simple DTrace ustack helper (Dave Pacheco)
1497
1498 * crypto: rewrite HexDecode without snprintf (Roman Shtylman)
1499
1500 * crypto: don't ignore DH init errors (Ben Noordhuis)
1501
1502
1503 2011.12.14, Version 0.6.6 (stable), 9a059ea69e1f6ebd8899246682d8ca257610b8ab
1504
1505 * npm update to 1.1.0-beta-4 (Isaac Z. Schlueter)
1506
1507 * cli: fix output of --help (Ben Noordhuis)
1508
1509 * new website
1510
1511 * pause/resume semantics for stdin (Isaac Z. Schlueter)
1512
1513 * Travis CI integration (Maciej Małecki)
1514
1515 * child_process: Fix bug regarding closed stdin (Ben Noordhuis)
1516
1517 * Enable upgrades in MSI. (Igor Zinkovsky)
1518
1519 * net: Fixes memory leak (Ben Noordhuis)
1520
1521 * fs: handle fractional or NaN ReadStream buffer size (Ben Noordhuis)
1522
1523 * crypto: fix memory leaks in PBKDF2 error path (Ben Noordhuis)
1524
1525
1526 2011.12.04, Version 0.6.5 (stable), 6cc94db653a2739ab28e33b2d6a63c51bd986a9f
1527
1528 * npm workaround Windows antivirus software (isaacs)
1529
1530 * Upgrade V8 to 3.6.6.11
1531
1532
1533 2011.12.02, Version 0.6.4 (stable), 9170077f13e5e5475b23d1d3c2e7f69bfe139727
1534
1535 * doc improvements (Kyle Young, Tim Oxley, Roman Shtylman, Mathias Bynens)
1536
1537 * upgrade bundled npm (Isaac Schlueter)
1538
1539 * polish Windows installer (Igor Zinkovsky, Isaac Schlueter)
1540
1541 * punycode: upgrade to v0.2.1 (Mathias Bynens)
1542
1543 * build: add –without-npm flag to configure script
1544
1545 * sys: deprecate module some more, print stack trace if NODE_DEBUG=sys
1546
1547 * cli: add -p switch, prints result of –eval
1548
1549 * #1997: fix Blowfish ECB encryption and decryption (Ingmar Runge)
1550
1551 * #2223: fix socket ‘close’ event being emitted twice
1552
1553 * #2224: fix RSS memory usage > 4 GB reporting (Russ Bradberry)
1554
1555 * #2225: fix util.inspect() object stringification bug (Nathan Rajlich)
1556
1557
1558 2011.11.25, Version 0.6.3 (stable), b159c6d62e5756d3f8847419d29c6959ea288b56
1559
1560 * #2083 Land NPM in Node. It is included in packages/installers and installed
1561   on `make install`.
1562
1563 * #2076 Add logos to windows installer.
1564
1565 * #1711 Correctly handle http requests without headers. (Ben Noordhuis,
1566   Felix Geisendörfer)
1567
1568 * TLS: expose more openssl SSL context options and constants. (Ben Noordhuis)
1569
1570 * #2177 Windows: don't kill UDP socket when a packet fails to reach its
1571   destination. (Bert Belder)
1572
1573 * Windows: support paths longer than 260 characters. (Igor Zinkovsky)
1574
1575 * Windows: correctly resolve drive-relative paths. (Bert Belder)
1576
1577 * #2166 Don't leave file descriptor open after lchmod. (Isaac Schlueter)
1578
1579 * #2084 Add OS X .pkg build script to make file.
1580
1581 * #2160 Documentation improvements. (Ben Noordhuis)
1582
1583
1584 2011.11.18, Version 0.6.2 (stable), a4402f0b2e410b19375a1d5c5fb7fe7f66f3c7f8
1585
1586 * doc improvements (Artur Adib, Trevor Burnham, Ryan Emery, Trent Mick)
1587
1588 * timers: remember extra setTimeout() arguments when timeout==0
1589
1590 * punycode: use Mathias Bynens's punycode library, it's more compliant
1591
1592 * repl: improved tab completion (Ryan Emery)
1593
1594 * buffer: fix range checks in .writeInt() functions (Lukasz Walukiewicz)
1595
1596 * tls: make cipher list configurable
1597
1598 * addons: make Buffer and ObjectWrap visible to Windows add-ons (Bert Belder)
1599
1600 * crypto: add PKCS#1 a.k.a RSA public key verification support
1601
1602 * windows: fix stdout writes when redirected to nul
1603
1604 * sunos: fix build on Solaris and Illumos
1605
1606 * Upgrade V8 to 3.6.6.8
1607
1608
1609 2011.11.11, Version 0.6.1 (stable), 170f2addb2dd0c625bc4a6d461e89a31ad68b79b
1610
1611 * doc improvements (Eric Lovett, Ben Noordhuis, Scott Anderson, Yoji SHIDARA)
1612
1613 * crypto: make thread-safe (Ben Noordhuis)
1614
1615 * fix process.kill error object
1616
1617 * debugger: correctly handle source with multi-byte characters (Shigeki Ohtsu)
1618
1619 * make stdout and stderr non-destroyable (Igor Zinkovsky)
1620
1621 * fs: don't close uninitialized fs.watch handle (Ben Noordhuis)
1622
1623 * #2026 fix man page install on BSDs (Ben Noordhuis)
1624
1625 * #2040 fix unrecognized errno assert in uv_err_name
1626
1627 * #2043 fs: mkdir() should call callback if mode is omitted
1628
1629 * #2045 fs: fix fs.realpath on windows to return on error (Benjamin Pasero)
1630
1631 * #2047 minor cluster improvements
1632
1633 * #2052 readline get window columns correctly
1634
1635 * Upgrade V8 to 3.6.6.7
1636
1637
1638 2011.11.04, Version 0.6.0 (stable), 865b077819a9271a29f982faaef99dc635b57fbc
1639
1640 * print undefined on undefined values in REPL (Nathan Rajlich)
1641
1642 * doc improvements (koichik, seebees, bnoordhuis,
1643   Maciej Małecki, Jacob Kragh)
1644
1645 * support native addon loading in windows (Bert Belder)
1646
1647 * rename getNetworkInterfaces() to networkInterfaces() (bnoordhuis)
1648
1649 * add pending accepts knob for windows (igorzi)
1650
1651 * http.request(url.parse(x)) (seebees)
1652
1653 * #1929 zlib Respond to 'resume' events properly (isaacs)
1654
1655 * stream.pipe: Remove resume and pause events
1656
1657 * test fixes for windows (igorzi)
1658
1659 * build system improvements (bnoordhuis)
1660
1661 * #1936 tls: does not emit 'end' from EncryptedStream (koichik)
1662
1663 * #758 tls: add address(), remoteAddress/remotePort
1664
1665 * #1399 http: emit Error object after .abort() (bnoordhuis)
1666
1667 * #1999 fs: make mkdir() default to 0777 permissions (bnoordhuis)
1668
1669 * #2001 fix pipe error codes
1670
1671 * #2002 Socket.write should reset timeout timer
1672
1673 * stdout and stderr are blocking when associated with file too.
1674
1675 * remote debugger support on windows (Bert Belder)
1676
1677 * convenience methods for zlib (Matt Robenolt)
1678
1679 * process.kill support on windows (igorzi)
1680
1681 * process.uptime() support on windows (igorzi)
1682
1683 * Return IPv4 addresses before IPv6 addresses from getaddrinfo
1684
1685 * util.inspect improvements (Nathan Rajlich)
1686
1687 * cluster module api changes
1688
1689 * Downgrade V8 to 3.6.6.6
1690
1691
1692 2011.10.21, Version 0.5.10 (unstable), 220e61c1f65bf4db09699fcf6399c0809c0bc446
1693
1694 * Remove cmake build system, support for Cygwin, legacy code base,
1695         process.ENV, process.ARGV, process.memoryUsage().vsize, os.openOSHandle
1696
1697 * Documentation improvments (Igor Zinkovsky, Bert Belder, Ilya Dmitrichenko,
1698 koichik, Maciej Małecki, Guglielmo Ferri, isaacs)
1699
1700 * Performance improvements (Daniel Ennis, Bert Belder, Ben Noordhuis)
1701
1702 * Long process.title support (Ben Noordhuis)
1703
1704 * net: register net.Server callback only once (Simen Brekken)
1705
1706 * net: fix connect queue bugs (Ben Noordhuis)
1707
1708 * debugger: fix backtrace err handling (Fedor Indutny)
1709
1710 * Use getaddrinfo instead of c-ares for dns.lookup
1711
1712 * Emit 'end' from crypto streams on close
1713
1714 * #1902 buffer: use NO_NULL_TERMINATION flag (koichik)
1715
1716 * #1907 http: Added support for HTTP PATCH verb (Thomas Parslow)
1717
1718 * #1644 add GetCPUInfo on windows (Karl Skomski)
1719
1720 * #1484, #1834, #1482, #771 Don't use a separate context for the repl.
1721   (isaacs)
1722
1723 * #1882 zlib Update 'availOutBefore' value, and test (isaacs)
1724
1725 * #1888 child_process.fork: don't modify args (koichik)
1726
1727 * #1516 tls: requestCert unusable with Firefox and Chrome (koichik)
1728
1729 * #1467 tls: The TLS API is inconsistent with the TCP API (koichik)
1730
1731 * #1894 net: fix error handling in listen() (koichik)
1732
1733 * #1860 console.error now goes through uv_tty_t
1734
1735 * Upgrade V8 to 3.7.0
1736
1737 * Upgrade GYP to r1081
1738
1739
1740 2011.10.10, Version 0.5.9 (unstable), 3bd9b08fb125b606f97a4079b147accfdeebb07d
1741
1742 * fs.watch interface backed by kqueue, inotify, and ReadDirectoryChangesW
1743   (Igor Zinkovsky, Ben Noordhuis)
1744
1745 * add dns.resolveTxt (Christian Tellnes)
1746
1747 * Remove legacy http library (Ben Noordhuis)
1748
1749 * child_process.fork returns and works on Windows. Allows passing handles.
1750   (Igor Zinkovsky, Bert Belder)
1751
1752 * #1774 Lint and clean up for --harmony_block_scoping (Tyler Larson, Colton
1753   Baker)
1754
1755 * #1813 Fix ctrl+c on Windows (Bert Belder)
1756
1757 * #1844 unbreak --use-legacy (Ben Noordhuis)
1758
1759 * process.stderr now goes through libuv. Both process.stdout and
1760   process.stderr are blocking when referencing a TTY.
1761
1762 * net_uv performance improvements (Ben Noordhuis, Bert Belder)
1763
1764
1765 2011.09.30, Version 0.5.8 (unstable), 7cc17a0cea1d25188c103745a7d0c24375e3a609
1766
1767 * zlib bindings (isaacs)
1768
1769 * Windows supports TTY ANSI escape codes (Bert Belder)
1770
1771 * Debugger improvements (Fedor Indutny)
1772
1773 * crypto: look up SSL errors with ERR_print_errors() (Ben Noordhuis)
1774
1775 * dns callbacks go through MakeCallback now
1776
1777 * Raise an error when a malformed package.json file is found. (Ben Leslie)
1778
1779 * buffers: handle bad length argument in constructor (Ben Noordhuis)
1780
1781 * #1726, unref process.stdout
1782
1783 * Doc improvements (Ben Noordhuis, Fedor Indutny, koichik)
1784
1785 * Upgrade libuv to fe18438
1786
1787
1788 2011.09.16, Version 0.5.7 (unstable), 558241166c4f3c516e5a448e676db0b57119212f
1789
1790 * Upgrade V8 to 3.6.4
1791
1792 * Improve Windows compatibility
1793
1794 * Documentation improvements
1795
1796 * Debugger and REPL improvements (Fedor Indutny)
1797
1798 * Add legacy API support: net.Stream(fd), process.stdout.writable,
1799   process.stdout.fd
1800
1801 * Fix mkdir EEXIST handling (isaacs)
1802
1803 * Use net_uv instead of net_legacy for stdio
1804
1805 * Do not load readline from util.inspect
1806
1807 * #1673 Fix bug related to V8 context with accessors (Fedor Indutny)
1808
1809 * #1634 util: Fix inspection for Error (koichik)
1810
1811 * #1645 fs: Add positioned file writing feature to fs.WriteStream (Thomas
1812   Shinnick)
1813
1814 * #1637 fs: Unguarded fs.watchFile cache statWatchers checking fixed (Thomas
1815   Shinnick)
1816
1817 * #1695 Forward customFds to ChildProcess.spawn
1818
1819 * #1707 Fix hasOwnProperty security problem in querystring (isaacs)
1820
1821 * #1719 Drain OpenSSL error queue
1822
1823
1824 2011.09.08, Version 0.5.6 (unstable), b49bec55806574a47403771bce1ee379c2b09ca2
1825
1826 * #345, #1635, #1648 Documentation improvements (Thomas Shinnick,
1827   Abimanyu Raja, AJ ONeal, Koichi Kobayashi, Michael Jackson, Logan Smyth,
1828   Ben Noordhuis)
1829
1830 * #650 Improve path parsing on windows (Bert Belder)
1831
1832 * #752 Remove headers sent check in OutgoingMessage.getHeader()
1833   (Peter Lyons)
1834
1835 * #1236, #1438, #1506, #1513, #1621, #1640, #1647 Libuv-related bugs fixed
1836   (Jorge Chamorro Bieling, Peter Bright, Luis Lavena, Igor Zinkovsky)
1837
1838 * #1296, #1612 crypto: Fix BIO's usage. (Koichi Kobayashi)
1839
1840 * #1345 Correctly set socket.remoteAddress with libuv backend (Bert Belder)
1841
1842 * #1429 Don't clobber quick edit mode on windows (Peter Bright)
1843
1844 * #1503 Make libuv backend default on unix, override with `node --use-legacy`
1845
1846 * #1565 Fix fs.stat for paths ending with \ on windows (Igor Zinkovsky)
1847
1848 * #1568 Fix x509 certificate subject parsing (Koichi Kobayashi)
1849
1850 * #1586 Make socket write encoding case-insensitive (Koichi Kobayashi)
1851
1852 * #1591, #1656, #1657 Implement fs in libuv, remove libeio and pthread-win32
1853   dependency on windows (Igor Zinkovsky, Ben Noordhuis, Ryan Dahl,
1854   Isaac Schlueter)
1855
1856 * #1592 Don't load-time link against CreateSymbolicLink on windows
1857   (Peter Bright)
1858
1859 * #1601 Improve API consistency when dealing with the socket underlying a HTTP
1860   client request (Mikeal Rogers)
1861
1862 * #1610 Remove DigiNotar CA from trusted list (Isaac Schlueter)
1863
1864 * #1617 Added some win32 os functions (Karl Skomski)
1865
1866 * #1624 avoid buffer overrun with 'binary' encoding (Koichi Kobayashi)
1867
1868 * #1633 make Buffer.write() always set _charsWritten (Koichi Kobayashi)
1869
1870 * #1644 Windows: set executables to be console programs (Peter Bright)
1871
1872 * #1651 improve inspection for sparse array (Koichi Kobayashi)
1873
1874 * #1672 set .code='ECONNRESET' on socket hang up errors (Ben Noordhuis)
1875
1876 * Add test case for foaf+ssl client certificate (Niclas Hoyer)
1877
1878 * Added RPATH environment variable to override run-time library paths
1879   (Ashok Mudukutore)
1880
1881 * Added TLS client-side session resumption support (Sean Cunningham)
1882
1883 * Added additional properties to getPeerCertificate (Nathan Rixham,
1884   Niclas Hoyer)
1885
1886 * Don't eval repl command twice when an error is thrown (Nathan Rajlich)
1887
1888 * Improve util.isDate() (Nathan Rajlich)
1889
1890 * Improvements in libuv backend and bindings, upgrade libuv to
1891   bd6066cb349a9b3a1b0d87b146ddaee06db31d10
1892
1893 * Show warning when using lib/sys.js (Maciej Malecki)
1894
1895 * Support plus sign in url protocol (Maciej Malecki)
1896
1897 * Upgrade V8 to 3.6.2
1898
1899
1900 2011.08.26, Version 0.5.5 (unstable), d2d53d4bb262f517a227cc178a1648094ba54c20
1901
1902 * typed arrays, implementation from Plesk
1903
1904 * fix IP multicast on SunOS
1905
1906 * fix DNS lookup order: IPv4 first, IPv6 second (--use-uv only)
1907
1908 * remove support for UNIX datagram sockets (--use-uv only)
1909
1910 * UDP support for Windows (Bert Belder)
1911
1912 * #1572 improve tab completion for objects in the REPL (Nathan Rajlich)
1913
1914 * #1563 fix buffer overflow in child_process module (reported by Dean McNamee)
1915
1916 * #1546 fix performance regression in http module (reported by Brian Geffon)
1917
1918 * #1491 add PBKDF2 crypto support (Glen Low)
1919
1920 * #1447 remove deprecated http.cat() function (Mikeal Rogers)
1921
1922 * #1140 fix incorrect dispatch of vm.runInContext's filename argument
1923   (Antranig Basman)
1924
1925 * #1140 document vm.runInContext() and vm.createContext() (Antranig Basman)
1926
1927 * #1428 fix os.freemem() on 64 bits freebsd (Artem Zaytsev)
1928
1929 * #1164 make all DNS lookups async, fixes uncatchable exceptions
1930   (Koichi Kobayashi)
1931
1932 * fix incorrect ssl shutdown check (Tom Hughes)
1933
1934 * various cmake fixes (Tom Hughes)
1935
1936 * improved documentation (Koichi Kobayashi, Logan Smyth, Fedor Indutny,
1937   Mikeal Rogers, Maciej Małecki, Antranig Basman, Mickaël Delahaye)
1938
1939 * upgrade libuv to commit 835782a
1940
1941 * upgrade V8 to 3.5.8
1942
1943
1944 2011.08.12, Version 0.5.4 (unstable), cfba1f59224ff8602c3fe9145181cad4c6df89a9
1945
1946 * libuv/Windows compatibility improvements
1947
1948 * Build on Microsoft Visual Studio via GYP. Use generate-projects.bat in the
1949   to build sln files. (Peter Bright, Igor Zinkovsky)
1950
1951 * Make Mikeal's HTTP agent client the default. Use old HTTP client with
1952   --use-http1
1953
1954 * Fixes https host header default port handling. (Mikeal Rogers)
1955
1956 * #1440 strip byte order marker when loading *.js and *.json files
1957   (Ben Noordhuis)
1958
1959 * #1434 Improve util.format() compatibility with browser. (Koichi Kobayashi)
1960
1961 * Provide unchecked uint entry points for integer Buffer.read/writeInt
1962   methods. (Robert Mustacchi)
1963
1964 * CMake improvements (Tom Huges)
1965
1966 * Upgrade V8 to 3.5.4.
1967
1968
1969 2011.08.01, Version 0.5.3 (unstable), 4585330afef44ddfb6a4054bd9b0f190b352628b
1970
1971 * Fix crypto encryption/decryption with Base64. (SAWADA Tadashi)
1972
1973 * #243 Add an optional length argument to Buffer.write() (koichik)
1974
1975 * #657 convert nonbuffer data to string in fs.writeFile/Sync
1976   (Daniel Pihlström)
1977
1978 * Add process.features, remove process.useUV (Ben Noordhuis)
1979
1980 * #324 Fix crypto hmac to accept binary keys + add test cases from rfc 2202
1981   and 4231 (Stefan Bühler)
1982
1983 * Add Socket::bytesRead, Socket::bytesWritten (Alexander Uvarov)
1984
1985 * #572 Don't print result of --eval in CLI (Ben Noordhuis)
1986
1987 * #1223 Fix http.ClientRequest crashes if end() was called twice (koichik)
1988
1989 * #1383 Emit 'close' after all connections have closed (Felix Geisendörfer)
1990
1991 * Add sprintf-like util.format() function (Ben Noordhuis)
1992
1993 * Add support for TLS SNI (Fedor Indutny)
1994
1995 * New http agent implementation. Off by default the command line flag
1996   --use-http2 will enable it. "make test-http2" will run the tests
1997         for the new implementation. (Mikeal Rogers)
1998
1999 * Revert AMD compatibility. (isaacs)
2000
2001 * Windows: improvements, child_process support.
2002
2003 * Remove pkg-config file.
2004
2005 * Fix startup time regressions.
2006
2007 * doc improvements
2008
2009
2010 2011.07.22, Version 0.5.2 (unstable), 08ffce1a00dde1199174b390a64a90b60768ddf5
2011
2012 * libuv improvements; named pipe support
2013
2014 * #1242 check for SSL_COMP_get_compression_methods() (Ben Noordhuis)
2015
2016 * #1348 remove require.paths (isaacs)
2017
2018 * #1349 Delimit NODE_PATH with ; on Windows (isaacs)
2019
2020 * #1335 Remove EventEmitter from C++
2021
2022 * #1357 Load json files with require() (isaacs)
2023
2024 * #1374 fix setting ServerResponse.statusCode in writeHead (Trent Mick)
2025
2026 * Fixed: GC was being run too often.
2027
2028 * Upgrade V8 to 3.4.14
2029
2030 * doc improvements
2031
2032
2033 2011.07.14, Version 0.5.1 (unstable), f8bfa54d0fa509f9242637bef2869a1b1e842ec8
2034
2035 * #1233 Fix os.totalmem on FreeBSD amd64 (Artem Zaytsev)
2036
2037 * #1149 IDNA and Punycode support in url.parse
2038   (Jeremy Selier, Ben Noordhuis, isaacs)
2039
2040 * Export $CC and $CXX to uv and V8's build systems
2041
2042 * Include pthread-win32 static libraries in build (Igor Zinkovsky)
2043
2044 * #1199, #1094 Fix fs can't handle large file on 64bit platform (koichik)
2045
2046 * #1281 Make require a public member of module (isaacs)
2047
2048 * #1303 Stream.pipe returns the destination (Elijah Insua)
2049
2050 * #1229 Addons should not -DEV_MULTIPLICITY=0 (Brian White)
2051
2052 * libuv backend improvements
2053
2054 * Upgrade V8 to 3.4.10
2055
2056
2057 2011.07.05, Version 0.5.0 (unstable), ae7ed8482ea7e53c59acbdf3cf0e0a0ae9d792cd
2058
2059 * New non-default libuv backend to support IOCP on Windows.
2060   Use --use-uv to enable.
2061
2062 * deprecate http.cat
2063
2064 * docs improved.
2065
2066 * add child_process.fork
2067
2068 * add fs.utimes() and fs.futimes() support (Ben Noordhuis)
2069
2070 * add process.uptime() (Tom Huges)
2071
2072 * add path.relative (Tony Huang)
2073
2074 * add os.getNetworkInterfaces()
2075
2076 * add remoteAddress and remotePort for client TCP connections
2077   (Brian White)
2078
2079 * add secureOptions flag, setting ciphers,
2080   SSL_OP_CRYPTOPRO_TLSEXT_BUG to TLS (Theo Schlossnagle)
2081
2082 * add process.arch (Nathan Rajlich)
2083
2084 * add reading/writing of floats and doubles from/to buffers (Brian White)
2085
2086 * Allow script to be read from stdin
2087
2088 * #477 add Buffer::fill method to do memset (Konstantin Käfer)
2089
2090 * #573 Diffie-Hellman support to crypto module (Håvard Stranden)
2091
2092 * #695 add 'hex' encoding to buffer (isaacs)
2093
2094 * #851 Update how REPLServer uses contexts (Ben Weaver)
2095
2096 * #853 add fs.lchow, fs.lchmod, fs.fchmod, fs.fchown (isaacs)
2097
2098 * #889 Allow to remove all EventEmitter listeners at once
2099   (Felix Geisendörfer)
2100
2101 * #926 OpenSSL NPN support (Fedor Indutny)
2102
2103 * #955 Change ^C handling in REPL (isaacs)
2104
2105 * #979 add support for Unix Domain Sockets to HTTP (Mark Cavage)
2106
2107 * #1173 #1170 add AMD, asynchronous module definition (isaacs)
2108
2109 * DTrace probes: support X-Forwarded-For (Dave Pacheco)
2110
2111
2112 2011.09.15, Version 0.4.12 (stable), 771ba34ca7b839add2ef96879e1ffc684813cf7c
2113
2114 * Improve docs
2115
2116 * #1563 overflow in ChildProcess custom_fd.
2117
2118 * #1569, parse error on multi-line HTTP headers. (Ben Noordhuis)
2119
2120 * #1586 net: Socket write encoding case sensitivity (koichik)
2121
2122 * #1610 Remove DigiNotar CA from trusted list (isaacs)
2123
2124 * #1624 buffer: Avoid overrun with 'binary' encoding. (koichik)
2125
2126 * #1633 buffer: write() should always set _charsWritten. (koichik)
2127
2128 * #1707 hasOwnProperty usage security hole in querystring (isaacs)
2129
2130 * #1719 Drain OpenSSL error queue
2131
2132 * Fix error reporting in net.Server.listen
2133
2134
2135 2011.08.17, Version 0.4.11 (stable), a745d19ce7d1c0e3778371af4f0346be70cf2c8e
2136
2137 * #738 Fix crypto encryption/decryption with Base64. (SAWADA Tadashi)
2138
2139 * #1202 net.createConnection defer DNS lookup error events to next tick
2140   (Ben Noordhuis)
2141
2142 * #1374 fix setting ServerResponse.statusCode in writeHead (Trent Mick)
2143
2144 * #1417 Fix http.ClientRequest crashes if end() was called twice
2145
2146 * #1497 querystring: Replace 'in' test with 'hasOwnProperty' (isaacs)
2147
2148 * #1546 http perf improvement
2149
2150 * fix memleak in libeio (Tom Hughes)
2151
2152 * cmake improvements (Tom Hughes)
2153
2154 * node_net.cc: fix incorrect sizeof() (Tom Hughes)
2155
2156 * Windows/cygwin: no more GetConsoleTitleW errors on XP (Bert Belder)
2157
2158 * Doc improvments (koichik, Logan Smyth, Ben Noordhuis, Arnout Kazemier)
2159
2160
2161 2011.07.19, Version 0.4.10 (stable), 1b8dd65d6e3b82b6863ef38835cc436c5d30c1d5
2162
2163 * #394 Fix Buffer drops last null character in UTF-8
2164
2165 * #829 Backport r8577 from V8 (Ben Noordhuis)
2166
2167 * #877 Don't wait for HTTP Agent socket pool to establish connections.
2168
2169 * #915 Find kqueue on FreeBSD correctly (Brett Kiefer)
2170
2171 * #1085 HTTP: Fix race in abort/dispatch code (Stefan Rusu)
2172
2173 * #1274 debugger improvement (Yoshihiro Kikuchi)
2174
2175 * #1291 Properly respond to HEAD during end(body) hot path (Reid Burke)
2176
2177 * #1304 TLS: Fix race in abort/connection code (Stefan Rusu)
2178
2179 * #1360 Allow _ in url hostnames.
2180
2181 * Revert 37d529f8 - unbreaks debugger command parsing.
2182
2183 * Bring back global execScript
2184
2185 * Doc improvements
2186
2187
2188 2011.06.29, Version 0.4.9 (stable), de44eafd7854d06cd85006f509b7051e8540589b
2189
2190 * Improve documentation
2191
2192 * #1095 error handling bug in stream.pipe() (Felix Geisendörfer)
2193
2194 * #1097 Fix a few leaks in node_crypto.cc (Ben Noordhuis)
2195
2196 * #562 #1078 Parse file:// urls properly (Ryan Petrello)
2197
2198 * #880 Option to disable SSLv2 (Jérémy Lal)
2199
2200 * #1087 Disabling SSL compression disabled with early OpenSSLs.
2201
2202 * #1144 debugger: don't allow users to input non-valid commands
2203   (Siddharth Mahendraker)
2204
2205 * Perf improvement for util.inherits
2206
2207 * #1166 Support for signature verification with RSA/DSA public keys
2208   (Mark Cavage)
2209
2210 * #1177 Remove node_modules lookup optimization to better support
2211   nested project structures (Mathias Buus)
2212
2213 * #1203 Add missing scope.Close to fs.sendfileSync
2214
2215 * #1187 Support multiple 'link' headers
2216
2217 * #1196 Fix -e/--eval can't load module from node_modules (Koichi Kobayashi)
2218
2219 * Upgrade V8 to 3.1.8.25, upgrade http-parser.
2220
2221
2222 2011.05.20, Version 0.4.8 (stable), 7dd22c26e4365698dc3efddf138c4d399cb912c8
2223
2224 * #974 Properly report traceless errors (isaacs)
2225
2226 * #983 Better JSON.parse error detection in REPL (isaacs)
2227
2228 * #836 Agent socket errors bubble up to req only if req exists
2229
2230 * #1041 Fix event listener leak check timing (koichik)
2231
2232 *       #1038 Fix dns.resolve() with 'PTR' throws Error: Unknown type "PTR"
2233   (koichik)
2234
2235 * #1073 Share SSL context between server connections (Fedor Indutny)
2236
2237 * Disable compression with OpenSSL. Improves memory perf.
2238
2239 * Implement os.totalmem() and os.freemem() for SunOS (Alexandre Marangone)
2240
2241 * Fix a special characters in URL regression (isaacs)
2242
2243 * Fix idle timeouts in HTTPS (Felix Geisendörfer)
2244
2245 * SlowBuffer.write() with 'ucs2' throws ReferenceError. (koichik)
2246
2247 * http.ServerRequest 'close' sometimes gets an error argument
2248   (Felix Geisendörfer)
2249
2250 * Doc improvements
2251
2252 * cleartextstream.destroy() should close(2) the socket. Previously was being
2253         mapped to a shutdown(2) syscall.
2254
2255 * No longer compile out asserts and debug statements in normal build.
2256
2257 * Debugger improvements.
2258
2259 * Upgrade V8 to 3.1.8.16.
2260
2261
2262 2011.04.22, Version 0.4.7 (stable), c85455a954411b38232e79752d4abb61bb75031b
2263
2264 * Don't emit error on ECONNRESET from read() #670
2265
2266 * Fix: Multiple pipes to the same stream were broken #929
2267   (Felix Geisendörfer)
2268
2269 * URL parsing/formatting corrections #954 (isaacs)
2270
2271 * make it possible to do repl.start('', stream) (Wade Simmons)
2272
2273 * Add os.loadavg for SunOS (Robert Mustacchi)
2274
2275 * Fix timeouts with floating point numbers #897 (Jorge Chamorro Bieling)
2276
2277 * Improve docs.
2278
2279
2280 2011.04.13, Version 0.4.6 (stable), 58002d56bc79410c5ff397fc0e1ffec0665db38a
2281
2282 * Don't error on ENOTCONN from shutdown() #670
2283
2284 * Auto completion of built-in debugger suggests prefix match rather than
2285         partial match. (koichik)
2286
2287 * circular reference in vm modules. #822 (Jakub Lekstan)
2288
2289 * http response.readable should be false after 'end' #867 (Abe Fettig)
2290
2291 * Implement os.cpus() and os.uptime() on Solaris (Scott McWhirter)
2292
2293 * fs.ReadStream: Allow omission of end option for range reads #801
2294         (Felix Geisendörfer)
2295
2296 * Buffer.write() with UCS-2 should not be write partial char
2297         #916 (koichik)
2298
2299 * Pass secureProtocol through on tls.Server creation (Theo Schlossnagle)
2300
2301 * TLS use RC4-SHA by default
2302
2303 * Don't strangely drop out of event loop on HTTPS client uploads #892
2304
2305 * Doc improvements
2306
2307 * Upgrade v8 to 3.1.8.10
2308
2309
2310 2011.04.01, Version 0.4.5 (stable), 787a343b588de26784fef97f953420b53a6e1d73
2311
2312 * Fix listener leak in stream.pipe() (Mikeal Rogers)
2313
2314 * Retain buffers in fs.read/write() GH-814 (Jorge Chamorro Bieling)
2315
2316 * TLS performance improvements
2317
2318 * SlowBuffer.prototype.slice bug GH-843
2319
2320 * process.stderr.write should return true
2321
2322 * Immediate pause/resume race condition GH-535 (isaacs)
2323
2324 * Set default host header properly GH-721 (isaacs)
2325
2326 * Upgrade V8 to 3.1.8.8
2327
2328
2329 2011.03.26, Version 0.4.4 (stable), 25122b986a90ba0982697b7abcb0158c302a1019
2330
2331 * CryptoStream.end shouldn't throw if not writable GH-820
2332
2333 * Drop out if connection destroyed before connect() GH-819
2334
2335 * expose https.Agent
2336
2337 * Correctly setsid in tty.open GH-815
2338
2339 * Bug fix for failed buffer construction
2340
2341 * Added support for removing .once listeners (GH-806)
2342
2343 * Upgrade V8 to 3.1.8.5
2344
2345
2346 2011.03.18, Version 0.4.3 (stable), c095ce1a1b41ca015758a713283bf1f0bd41e4c4
2347
2348 * Don't decrease server connection counter again if destroy() is called more
2349         than once GH-431 (Andreas Reich, Anders Conbere)
2350
2351 * Documentation improvements (koichik)
2352
2353 * Fix bug with setMaxListeners GH-682
2354
2355 * Start up memory footprint improvement. (Tom Hughes)
2356
2357 * Solaris improvements.
2358
2359 * Buffer::Length(Buffer*) should not invoke itself recursively GH-759 (Ben
2360   Noordhuis)
2361
2362 * TLS: Advertise support for client certs GH-774 (Theo Schlossnagle)
2363
2364 * HTTP Agent bugs: GH-787, GH-784, GH-803.
2365
2366 * Don't call GetMemoryUsage every 5 seconds.
2367
2368 * Upgrade V8 to 3.1.8.3
2369
2370
2371 2011.03.02, Version 0.4.2 (stable), 39280e1b5731f3fcd8cc42ad41b86cdfdcb6d58b
2372
2373 * Improve docs.
2374
2375 * Fix process.on edge case with signal event (Alexis Sellier)
2376
2377 * Pragma HTTP header comma separation
2378
2379 * In addition to 'aborted' emit 'close' from incoming requests
2380   (Felix Geisendörfer)
2381
2382 * Fix memleak in vm.runInNewContext
2383
2384 * Do not cache modules that throw exceptions (Felix Geisendörfer)
2385
2386 * Build system changes for libnode (Aria Stewart)
2387
2388 * Read up the prototype of the 'env' object. (Nathan Rajlich)
2389
2390 * Add 'close' and 'aborted' events to Agent responses
2391
2392 * http: fix missing 'drain' events (Russell Haering)
2393
2394 * Fix process.stdout.end() throws ENOTSOCK error. (Koichi Kobayashi)
2395
2396 * REPL bug fixes (isaacs)
2397
2398 * node_modules folders should be highest priority (isaacs)
2399
2400 * URL parse more safely (isaacs)
2401
2402 * Expose errno with a string for dns/cares (Felix Geisendörfer)
2403
2404 * Fix tty.setWindowSize
2405
2406 * spawn: setuid after chdir (isaacs)
2407
2408 * SIGUSR1 should break the VM without delay
2409
2410 * Upgrade V8 to 3.1.8.
2411
2412
2413 2011.02.19, Version 0.4.1 (stable), e8aef84191bc2c1ba2bcaa54f30aabde7f03769b
2414
2415 * Fixed field merging with progressive fields on writeHead()
2416   (TJ Holowaychuk)
2417
2418 * Make the repl respect node_modules folders (isaacs)
2419
2420 * Fix for DNS fail in HTTP request (Richard Rodger)
2421
2422 * Default to port 80 for http.request and http.get.
2423
2424 * Improve V8 support for Cygwin (Bert Belder)
2425
2426 * Fix fs.open param parsing. (Felix Geisendörfer)
2427
2428 * Fixed null signal.
2429
2430 * Fix various HTTP and HTTPS bugs
2431
2432 * cmake improvements (Tom Hughes)
2433
2434 * Fix: TLS sockets should not be writable after 'end'
2435
2436 * Fix os.cpus() on cygwin (Brian White)
2437
2438 * MinGW: OpenSSL support (Bert Belder)
2439
2440 * Upgrade V8 to 3.1.5, libev to 4.4.
2441
2442
2443 2011.02.10, Version 0.4.0 (stable), eb155ea6f6a6aa341aa8c731dca8da545c6a4008
2444
2445 * require() improvements (isaacs)
2446   - understand package.json (isaacs)
2447   - look for 'node_modules' dir
2448
2449 * cmake fixes (Daniel Gröber)
2450
2451 * http: fix buffer writes to outgoing messages (Russell Haering)
2452
2453 * Expose UCS-2 Encoding (Konstantin Käfer)
2454
2455 * Support strings for octal modes (isaacs)
2456
2457 * Support array-ish args to Buffer ctor (isaacs)
2458
2459 * cygwin and mingw improvements (Bert Belder)
2460
2461 * TLS improvements
2462
2463 * Fewer syscalls during require (Bert Belder, isaacs)
2464
2465 * More DTrace probes (Bryan Cantrill,  Robert Mustacchi)
2466
2467 * 'pipe' event on pipe() (Mikeal Rogers)
2468
2469 * CRL support in TLS (Theo Schlossnagle)
2470
2471 * HTTP header manipulation methods (Tim Caswell, Charlie Robbins)
2472
2473 * Upgrade V8 to 3.1.2
2474
2475
2476 2011.02.04, Version 0.3.8 (unstable), 9493b7563bff31525b4080df5aeef09747782d5e
2477
2478 * Add req.abort() for client side requests.
2479
2480 * Add exception.code for easy testing:
2481   Example: if (err.code == 'EADDRINUSE');
2482
2483 * Add process.stderr.
2484
2485 * require.main is the main module. (Isaac Schlueter)
2486
2487 * dgram: setMulticastTTL, setMulticastLoopback and addMembership.
2488   (Joe Walnes)
2489
2490 * Fix throttling in TLS connections
2491
2492 * Add socket.bufferSize
2493
2494 * MinGW improvements (Bert Belder)
2495
2496 * Upgrade V8 to 3.1.1
2497
2498 2011.01.27, Version 0.3.7 (unstable), d8579c6afdbe868de6dffa8db78bbe4ba2d03e0e
2499
2500 * Expose agent in http and https client. (Mikeal Rogers)
2501
2502 * Fix bug in http request's end method. (Ali Farhadi)
2503
2504 * MinGW: better net support (Bert Belder)
2505
2506 * fs.open should set FD_CLOEXEC
2507
2508 * DTrace probes (Bryan Cantrill)
2509
2510 * REPL fixes and improvements (isaacs, Bert Belder)
2511
2512 * Fix many bugs with legacy http.Client interface
2513
2514 * Deprecate process.assert. Use require('assert').ok
2515
2516 * Add callback parameter to socket.setTimeout(). (Ali Farhadi)
2517
2518 * Fixing bug in http request default encoding (Ali Farhadi)
2519
2520 * require: A module ID with a trailing slash must be a dir.
2521   (isaacs)
2522
2523 * Add ext_key_usage to getPeerCertificate (Greg Hughes)
2524
2525 * Error when child_process.exec hits maxBuffer.
2526
2527 * Fix option parsing in tls.connect()
2528
2529 * Upgrade to V8 3.0.10
2530
2531
2532 2011.01.21, Version 0.3.6 (unstable), bb3e71466e5240626d9d21cf791fe43e87d90011
2533
2534 * REPL and other improvements on MinGW (Bert Belder)
2535
2536 * listen/bind errors should close net.Server
2537
2538 * New HTTP and HTTPS client APIs
2539
2540 * Upgrade V8 to 3.0.9
2541
2542
2543 2011.01.16, Version 0.3.5 (unstable), b622bc6305e3c675e0edfcdbaa387d849ad0bba0
2544
2545 * Built-in debugger improvements.
2546
2547 * Add setsid, setuid, setgid options to child_process.spawn
2548   (Isaac Schlueter)
2549
2550 * tty module improvements.
2551
2552 * Upgrade libev to 4.3, libeio to latest, c-ares to 1.7.4
2553
2554 * Allow third party hooks before main module load.
2555   (See 496be457b6a2bc5b01ec13644b9c9783976159b2)
2556
2557 * Don't stat() on cached modules. (Felix Geisendörfer)
2558
2559
2560 2011.01.08, Version 0.3.4 (unstable), 73f53e12e4a5b9ef7dbb4792bd5f8ad403094441
2561
2562 * Primordial mingw build (Bert Belder)
2563
2564 * HTTPS server
2565
2566 * Built in debugger 'node debug script.js'
2567
2568 * realpath files during module load (Mihai Călin Bazon)
2569
2570 * Rename net.Stream to net.Socket (existing name will continue to be
2571   supported)
2572
2573 * Fix process.platform
2574
2575
2576 2011.01.02, Version 0.3.3 (unstable), 57544ba1c54c7d0da890317deeb73076350c5647
2577
2578 * TLS improvements.
2579
2580 * url.parse(url, true) defaults query field to {} (Jeremy Martin)
2581
2582 * Upgrade V8 to 3.0.4
2583
2584 * Handle ECONNABORT properly (Theo Schlossnagle)
2585
2586 * Fix memory leaks (Tom Hughes)
2587
2588 * Add os.cpus(), os.freemem(), os.totalmem(), os.loadavg() and other
2589   functions for OSX, Linux, and Cygwin. (Brian White)
2590
2591 * Fix REPL syntax error bug (GH-543), improve how REPL commands are
2592   evaluated.
2593
2594 * Use process.stdin instead of process.openStdin().
2595
2596 * Disable TLS tests when node doesn't have OpenSSL.
2597
2598
2599 2010.12.16, Version 0.3.2 (unstable), 4bb914bde9f3c2d6de00853353b6b8fc9c66143a
2600
2601 * Rip out the old (broken) TLS implementation introduce new tested
2602   implementation and API. See docs. HTTPS not supported in this release.
2603
2604 * Introduce 'os' and 'tty' modules.
2605
2606 * Callback parameters for socket.write() and socket.connect().
2607
2608 * Support CNAME lookups in DNS module. (Ben Noordhuis)
2609
2610 * cmake support (Tom Hughes)
2611
2612 * 'make lint'
2613
2614 * oprofile support (./configure --oprofile)
2615
2616 * Lots of bug fixes, including:
2617   - Memory leak in ChildProcess:Spawn(). (Tom Hughes)
2618   - buffer.slice(0, 0)
2619   - Global variable leaks
2620   - clearTimeouts calling multiple times (Michael W)
2621   - utils.inspect's detection of circular structures (Tim Cooijmans)
2622   - Apple's threaded write()s bug (Jorge Chamorro Bieling)
2623   - Make sure raw mode is disabled when exiting a terminal-based REPL.
2624     (Brian White)
2625
2626 * Deprecate process.compile, process.ENV
2627
2628 * Upgrade V8 to 3.0.3, upgrade http-parser.
2629
2630
2631 2010.11.16, Version 0.3.1 (unstable), ce9a54aa1fbf709dd30316af8a2f14d83150e947
2632
2633 * TLS improvements (Paul Querna)
2634   - Centralize error handling in SecureStream
2635   - Add SecurePair for handling of a ssl/tls stream.
2636
2637 * New documentation organization (Micheil Smith)
2638
2639 * allowHalfOpen TCP connections disabled by default.
2640
2641 * Add C++ API for constructing fast buffer from string
2642
2643 * Move idle timers into its own module
2644
2645 * Gracefully handle EMFILE and server.maxConnections
2646
2647 * make "node --eval" eval in the global scope.
2648   (Jorge Chamorro Bieling)
2649
2650 * Let exit listeners know the exit code (isaacs)
2651
2652 * Handle cyclic links smarter in fs.realpath (isaacs)
2653
2654 * Remove node-repl (just use 'node' without args)
2655
2656 * Rewrite libeio After callback to use req->result instead of req->errorno
2657   for error checking (Micheil Smith)
2658
2659 * Remove warning about deprecating 'sys' - too aggressive
2660
2661 * Make writes to process.env update the real environment. (Ben Noordhuis)
2662
2663 * Set FD_CLOEXEC flag on stdio FDs before spawning. (Guillaume Tuton)
2664
2665 * Move ev_loop out of javascript
2666
2667 * Switch \n with \r\n for all strings printed out.
2668
2669 * Added support for cross compilation (Rasmus Andersson)
2670
2671 * Add --profile flag to configure script, enables gprof profiling.
2672   (Ben Noordhuis)
2673
2674 * writeFileSync could exhibit pathological behavior when a buffer
2675   could not be written to the file in a single write() call.
2676
2677 * new path.join behavior (isaacs)
2678   - Express desired path.join behavior in tests.
2679   - Update fs.realpath to reflect new path.join behavior
2680   - Update url.resolve() to use new path.join behavior.
2681
2682 * API: Move process.binding('evals') to require('vm')
2683
2684 * Fix V8 build on Cygwin (Bert Belder)
2685
2686 * Add ref to buffer during fs.write and fs.read
2687
2688 * Fix segfault on test-crypto
2689
2690 * Upgrade http-parser to latest and V8 to 2.5.3
2691
2692
2693 2010.10.23, Version 0.3.0 (unstable) 1582cfebd6719b2d2373547994b3dca5c8c569c0
2694
2695 * Bugfix: Do not spin on accept() with EMFILE
2696
2697 * Improvements to readline.js (Trent Mick, Johan Euphrosine, Brian White)
2698
2699 * Safe constructors (missing 'new' doesn't segfault)
2700
2701 * Fix process.nextTick so thrown errors don't confuse it.
2702   (Benjamin Thomas)
2703
2704 * Allow Strings for ports on net.Server.listen (Bradley Meck)
2705
2706 * fs bugfixes (Tj Holowaychuk, Tobie Langel, Marco Rogers, isaacs)
2707
2708 * http bug fixes (Fedor Indutny, Mikeal Rogers)
2709
2710 * Faster buffers; breaks C++ API (Tim-Smart, Stéphan Kochen)
2711
2712 * crypto, tls improvements (Paul Querna)
2713
2714 * Add lfs flags to node addon script
2715
2716 * Simpler querystring parsing; breaks API (Peter Griess)
2717
2718 * HTTP trailers (Mark Nottingham)
2719
2720 * http 100-continue support (Mark Nottingham)
2721
2722 * Module system simplifications (Herbert Vojčík, isaacs, Tim-Smart)
2723   - remove require.async
2724   - remove registerExtension, add .extensions
2725   - expose require.resolve
2726   - expose require.cache
2727   - require looks in  node_modules folders
2728
2729 * Add --eval command line option (TJ Holowaychuk)
2730
2731 * Commas last in sys.inspect
2732
2733 * Constants moved from process object to require('constants')
2734
2735 * Fix parsing of linux memory (Vitali Lovich)
2736
2737 * inspect shows function names (Jorge Chamorro Bieling)
2738
2739 * uncaughtException corner cases (Felix Geisendörfer)
2740
2741 * TCP clients now buffer writes before connection
2742
2743 * Rename sys module to 'util' (Micheil Smith)
2744
2745 * Properly set stdio handlers to blocking on SIGTERM and SIGINT
2746   (Tom Hughes)
2747
2748 * Add destroy methods to HTTP messages
2749
2750 * base64 improvements (isaacs, Jorge Chamorro Bieling)
2751
2752 * API for defining REPL commands (Sami Samhuri)
2753
2754 * child_process.exec timeout fix (Aaron Heckmann)
2755
2756 * Upgrade V8 to 2.5.1, Libev to 4.00, libeio, http-parser
2757
2758
2759 2010.08.20, Version 0.2.0, 9283e134e558900ba89d9a33c18a9bdedab07cb9
2760
2761 * process.title support for FreeBSD, Macintosh, Linux
2762
2763 * Fix OpenSSL 100% CPU usage on error (Illarionov Oleg)
2764
2765 * Implement net.Server.maxConnections.
2766
2767 * Fix process.platform, add process.version.
2768
2769 * Add --without-snapshot configure option.
2770
2771 * Readline REPL improvements (Trent Mick)
2772
2773 * Bug fixes.
2774
2775 * Upgrade V8 to 2.3.8
2776
2777
2778 2010.08.13, Version 0.1.104, b14dd49222687c12f3e8eac597cff4f2674f84e8
2779
2780 * Various bug fixes (console, querystring, require)
2781
2782 * Set cwd for child processes (Bert Belder)
2783
2784 * Tab completion for readline (Trent Mick)
2785
2786 * process.title getter/setter for OSX, Linux, Cygwin.
2787         (Rasmus Andersson, Bert Belder)
2788
2789 * Upgrade V8 to 2.3.6
2790
2791
2792 2010.08.04, Version 0.1.103, 0b925d075d359d03426f0b32bb58a5e05825b4ea
2793
2794 * Implement keep-alive for http.Client (Mikeal Rogers)
2795
2796 * base64 fixes. (Ben Noordhuis)
2797
2798 * Fix --debug-brk (Danny Coates)
2799
2800 * Don't let path.normalize get above the root. (Isaac Schlueter)
2801
2802 * Allow signals to be used with process.on in addition to
2803   process.addListener. (Brian White)
2804
2805 * Globalize the Buffer object
2806
2807 * Use kqueue on recent macintosh builds
2808
2809 * Fix addrlen for unix_dgram sockets (Benjamin Kramer)
2810
2811 * Fix stats.isDirectory() and friends (Benjamin Kramer)
2812
2813 * Upgrade http-parser, V8 to 2.3.5
2814
2815
2816 2010.07.25, Version 0.1.102, 2a4568c85f33869c75ff43ccd30f0ec188b43eab
2817
2818 * base64 encoding for Buffers.
2819
2820 * Buffer support for Cipher, Decipher, Hmac, Sign and Verify
2821   (Andrew Naylor)
2822
2823 * Support for reading byte ranges from files using fs.createReadStream.
2824   (Chandra Sekar)
2825
2826 * Fix Buffer.toString() on 0-length slices. (Peter Griess)
2827
2828 * Cache modules based on filename rather than ID (Isaac Schlueter)
2829
2830 * querystring improvments (Jan Kassens, Micheil Smith)
2831
2832 * Support DEL in the REPL. (Jérémy Lal)
2833
2834 * Upgrade http-parser, upgrade V8 to 2.3.2
2835
2836
2837 2010.07.16, Version 0.1.101, 0174ceb6b24caa0bdfc523934c56af9600fa9b58
2838
2839 * Added env to child_process.exec (Сергей Крыжановский)
2840
2841 * Allow modules to optionally be loaded in separate contexts
2842   with env var NODE_MODULE_CONTEXTS=1.
2843
2844 * setTTL and setBroadcast for dgram (Matt Ranney)
2845
2846 * Use execPath for default NODE_PATH, not installPrefix
2847   (Isaac Schlueter)
2848
2849 * Support of console.dir + console.assert (Jerome Etienne)
2850
2851 * on() as alias to addListener()
2852
2853 * Use javascript port of Ronn to build docs (Jérémy Lal)
2854
2855 * Upgrade V8 to 2.3.0
2856
2857
2858 2010.07.03, Version 0.1.100, a6b8586e947f9c3ced180fe68c233d0c252add8b
2859
2860 * process.execPath (Marshall Culpepper)
2861
2862 * sys.pump (Mikeal Rogers)
2863
2864 * Remove ini and mjsunit libraries.
2865
2866 * Introduce console.log() and friends.
2867
2868 * Switch order of arguments for Buffer.write (Blake Mizerany)
2869
2870 * On overlapping buffers use memmove (Matt Ranney)
2871
2872 * Resolve .local domains with getaddrinfo()
2873
2874 * Upgrade http-parser, V8 to 2.2.21
2875
2876
2877 2010.06.21, Version 0.1.99, a620b7298f68f68a855306437a3b60b650d61d78
2878
2879 * Datagram sockets (Paul Querna)
2880
2881 * fs.writeFile could not handle utf8 (Felix Geisendörfer)
2882   and now accepts Buffers (Aaron Heckmann)
2883
2884 * Fix crypto memory leaks.
2885
2886 * A replacement for decodeURIComponent that doesn't throw.
2887   (Isaac Schlueter)
2888
2889 * Only concatenate some incoming HTTP headers. (Peter Griess)
2890
2891 * Upgrade V8 to 2.2.18
2892
2893
2894 2010.06.11, Version 0.1.98, 10d8adb08933d1d4cea60192c2a31c56d896733d
2895
2896 * Port to Windows/Cygwin (Raffaele Sena)
2897
2898 * File descriptor passing on unix sockets. (Peter Griess)
2899
2900 * Simple, builtin readline library. REPL is now entered by
2901   executing "node" without arguments.
2902
2903 * Add a parameter to spawn() that sets the child's stdio file
2904   descriptors. (Orlando Vazquez)
2905
2906 * Upgrade V8 to 2.2.16, http-parser fixes, upgrade c-ares to 1.7.3.
2907
2908
2909 2010.05.29, Version 0.1.97, 0c1aa36835fa6a3557843dcbc6ed6714d353a783
2910
2911 * HTTP throttling: outgoing messages emit 'drain' and write() returns false
2912   when send buffer is full.
2913
2914 * API: readFileSync without encoding argument now returns a Buffer
2915
2916 * Improve Buffer C++ API; addons now compile with debugging symbols.
2917
2918 * Improvements to  path.extname() and REPL; add fs.chown().
2919
2920 * fs.ReadStream now emits buffers, fs.readFileSync returns buffers.
2921
2922 * Bugfix: parsing HTTP responses to HEAD requests.
2923
2924 * Port to OpenBSD.
2925
2926 * Upgrade V8 to 2.2.12, libeio, http-parser.
2927
2928
2929 2010.05.21, Version 0.1.96, 9514a4d5476225e8c8310ce5acae2857033bcaaa
2930
2931 * Thrown errors in http and socket call back get bubbled up.
2932
2933 * Add fs.fsync (Andrew Johnston)
2934
2935 * Bugfix: signal unregistering (Jonas Pfenniger)
2936
2937 * Added better error messages for async and sync fs calls with paths
2938   (TJ Holowaychuk)
2939
2940 * Support arrays and strings in buffer constructor.
2941   (Felix Geisendörfer)
2942
2943 * Fix errno reporting in DNS exceptions.
2944
2945 * Support buffers in fs.WriteStream.write.
2946
2947 * Bugfix: Safely decode a utf8 streams that are broken on a multbyte
2948   character (http and net). (Felix Geisendörfer)
2949
2950 * Make Buffer's C++ constructor public.
2951
2952 * Deprecate sys.p()
2953
2954 * FIX path.dirname('/tmp') => '/'. (Jonathan Rentzsch)
2955
2956
2957 2010.05.13, Version 0.1.95, 0914d33842976c2c870df06573b68f9192a1fb7a
2958
2959 * Change GC idle notify so that it runs alongside setInterval
2960
2961 * Install node_buffer.h on make install
2962
2963 * fs.readFile returns Buffer by default (Tim Caswell)
2964
2965 * Fix error reporting in child_process callbacks
2966
2967 * Better logic for testing if an argument is a port
2968
2969 * Improve error reporting (single line "node.js:176:9" errors)
2970
2971 * Bugfix: Some http responses being truncated (appeared in 0.1.94)
2972
2973 * Fix long standing net idle timeout bugs. Enable 2 minute timeout
2974   by default in HTTP servers.
2975
2976 * Add fs.fstat (Ben Noordhuis)
2977
2978 * Upgrade to V8 2.2.9
2979
2980
2981 2010.05.06, Version 0.1.94, f711d5343b29d1e72e87107315708e40951a7826
2982
2983 * Look in /usr/local/lib/node for modules, so that there's a way
2984   to install modules globally (Issac Schlueter)
2985
2986 * SSL improvements (Rhys Jones, Paulo Matias)
2987
2988 * Added c-ares headers for linux-arm (Jonathan Knezek)
2989
2990 * Add symbols to release build
2991
2992 * HTTP upgrade improvements, docs (Micheil Smith)
2993
2994 * HTTP server emits 'clientError' instead of printing message
2995
2996 * Bugfix: Don't emit 'error' twice from http.Client
2997
2998 * Bugfix: Ignore SIGPIPE
2999
3000 * Bugfix: destroy() instead of end() http connection at end of
3001   pipeline
3002
3003 * Bugfix: http.Client may be prematurely released back to the
3004   free pool.  (Thomas Lee)
3005
3006 * Upgrade V8 to 2.2.8
3007
3008
3009 2010.04.29, Version 0.1.93, 557ba6bd97bad3afe0f9bd3ac07efac0a39978c1
3010
3011   * Fixed no 'end' event on long chunked HTTP messages
3012     https://github.com/joyent/node/issues/77
3013
3014   * Remove legacy modules http_old and tcp_old
3015
3016   * Support DNS MX queries (Jérémy Lal)
3017
3018   * Fix large socket write (tlb@tlb.org)
3019
3020   * Fix child process exit codes (Felix Geisendörfer)
3021
3022   * Allow callers to disable PHP/Rails style parameter munging in
3023     querystring.stringify (Thomas Lee)
3024
3025   * Upgrade V8 to 2.2.6
3026
3027
3028 2010.04.23, Version 0.1.92, caa828a242f39b6158084ef4376355161c14fe34
3029
3030   * OpenSSL support. Still undocumented (see tests). (Rhys Jones)
3031
3032   * API: Unhandled 'error' events throw.
3033
3034   * Script class with eval-function-family in binding('evals') plus tests.
3035     (Herbert Vojcik)
3036
3037   * stream.setKeepAlive (Julian Lamb)
3038
3039   * Bugfix: Force no body on http 204 and 304
3040
3041   * Upgrade Waf to 1.5.16, V8 to 2.2.4.2
3042
3043
3044 2010.04.15, Version 0.1.91, 311d7dee19034ff1c6bc9098c36973b8d687eaba
3045
3046   * Add incoming.httpVersion
3047
3048   * Object.prototype problem with C-Ares binding
3049
3050   * REPL can be run from multiple different streams. (Matt Ranney)
3051
3052   * After V8 heap is compact, don't use a timer every 2 seconds.
3053
3054   * Improve nextTick implementation.
3055
3056   * Add primative support for Upgrading HTTP connections.
3057     (See commit log for docs 760bba5)
3058
3059   * Add timeout and maxBuffer options to child_process.exec
3060
3061   * Fix bugs.
3062
3063   * Upgrade V8 to 2.2.3.1
3064
3065
3066 2010.04.09, Version 0.1.90, 07e64d45ffa1856e824c4fa6afd0442ba61d6fd8
3067
3068   * Merge writing of networking system (net2)
3069    - New Buffer object for binary data.
3070    - Support UNIX sockets, Pipes
3071    - Uniform stream API
3072    - Currently no SSL
3073    - Legacy modules can be accessed at 'http_old' and 'tcp_old'
3074
3075   * Replace udns with c-ares. (Krishna Rajendran)
3076
3077   * New documentation system using Markdown and Ronn
3078     (Tim Caswell, Micheil Smith)
3079
3080   * Better idle-time GC
3081
3082   * Countless small bug fixes.
3083
3084   * Upgrade V8 to 2.2.X, WAF 1.5.15
3085
3086
3087 2010.03.19, Version 0.1.33, 618296ef571e873976f608d91a3d6b9e65fe8284
3088
3089   * Include lib/ directory in node executable. Compile on demand.
3090
3091   * evalcx clean ups (Isaac Z. Schlueter, Tim-Smart)
3092
3093   * Various fixes, clean ups
3094
3095   * V8 upgraded to 2.1.5
3096
3097
3098 2010.03.12, Version 0.1.32, 61c801413544a50000faa7f58376e9b33ba6254f
3099
3100   * Optimize event emitter for single listener
3101
3102   * Add process.evalcx, require.registerExtension (Tim Smart)
3103
3104   * Replace --cflags with --vars
3105
3106   * Fix bugs in fs.create*Stream (Felix Geisendörfer)
3107
3108   * Deprecate process.mixin, process.unloop
3109
3110   * Remove the 'Error: (no message)' exceptions, print stack
3111     trace instead
3112
3113   * INI parser bug fixes (Isaac Schlueter)
3114
3115   * FreeBSD fixes (Vanilla Hsu)
3116
3117   * Upgrade to V8 2.1.3, WAF 1.5.14a, libev
3118
3119
3120 2010.03.05, Version 0.1.31, 39b63dfe1737d46a8c8818c92773ef181fd174b3
3121
3122   * API: - Move process.watchFile into fs module
3123          - Move process.inherits to sys
3124
3125   * Improve Solaris port
3126
3127   * tcp.Connection.prototype.write now returns boolean to indicate if
3128     argument was flushed to the kernel buffer.
3129
3130   * Added fs.link, fs.symlink, fs.readlink, fs.realpath
3131     (Rasmus Andersson)
3132
3133   * Add setgid,getgid (James Duncan)
3134
3135   * Improve sys.inspect (Benjamin Thomas)
3136
3137   * Allow passing env to child process (Isaac Schlueter)
3138
3139   * fs.createWriteStream, fs.createReadStream (Felix Geisendörfer)
3140
3141   * Add INI parser (Rob Ellis)
3142
3143   * Bugfix: fs.readFile handling encoding (Jacek Becela)
3144
3145   * Upgrade V8 to 2.1.2
3146
3147
3148 2010.02.22, Version 0.1.30, bb0d1e65e1671aaeb21fac186b066701da0bc33b
3149
3150   * Major API Changes
3151
3152     - Promises removed. See
3153       http://groups.google.com/group/nodejs/msg/426f3071f3eec16b
3154       http://groups.google.com/group/nodejs/msg/df199d233ff17efa
3155       The API for fs was
3156
3157          fs.readdir("/usr").addCallback(function (files) {
3158            puts("/usr files: " + files);
3159          });
3160
3161       It is now
3162
3163          fs.readdir("/usr", function (err, files) {
3164            if (err) throw err;
3165            puts("/usr files: " + files);
3166          });
3167
3168     - Synchronous fs operations exposed, use with care.
3169
3170     - tcp.Connection.prototype.readPause() and readResume()
3171       renamed to pause() and resume()
3172
3173     - http.ServerResponse.prototype.sendHeader() renamed to
3174       writeHeader(). Now accepts reasonPhrase.
3175
3176   * Compact garbage on idle.
3177
3178   * Configurable debug ports, and --debug-brk (Zoran Tomicic)
3179
3180   * Better command line option parsing (Jeremy Ashkenas)
3181
3182   * Add fs.chmod (Micheil Smith), fs.lstat (Isaac Z. Schlueter)
3183
3184   * Fixes to process.mixin (Rasmus Andersson, Benjamin Thomas)
3185
3186   * Upgrade V8 to 2.1.1
3187
3188
3189 2010.02.17, Version 0.1.29, 87d5e5b316a4276bcf881f176971c1a237dcdc7a
3190
3191   * Major API Changes
3192     - Remove 'file' module
3193     - require('posix') -----------------> require('fs')
3194     - fs.cat ---------------------------> fs.readFile
3195     - file.write -----------------------> fs.writeFile
3196     - TCP 'receive' event --------------> 'data'
3197     - TCP 'eof' event ------------------> 'end'
3198     - TCP send() -----------------------> write()
3199     - HTTP sendBody() ------------------> write()
3200     - HTTP finish() --------------------> close()
3201     - HTTP 'body' event ----------------> 'data'
3202     - HTTP 'complete' event ------------> 'end'
3203     - http.Client.prototype.close() (formerly finish()) no longer
3204       takes an argument. Add the 'response' listener manually.
3205     - Allow strings for the flag argument to fs.open
3206       ("r", "r+", "w", "w+", "a", "a+")
3207
3208   * Added multiple arg support for sys.puts(), print(), etc.
3209     (tj@vision-media.ca)
3210
3211   * sys.inspect(Date) now shows the date value (Mark Hansen)
3212
3213   * Calculate page size with getpagesize for armel (Jérémy Lal)
3214
3215   * Bugfix: stderr flushing.
3216
3217   * Bugfix: Promise late chain (Yuichiro MASUI)
3218
3219   * Bugfix: wait() on fired promises
3220     (Felix Geisendörfer, Jonas Pfenniger)
3221
3222   * Bugfix: Use InstanceTemplate() instead of PrototypeTemplate() for
3223     accessor methods. Was causing a crash with Eclipse debugger.
3224     (Zoran Tomicic)
3225
3226   * Bugfix: Throw from connection.connect if resolving.
3227     (Reported by James Golick)
3228
3229
3230 2010.02.09, Version 0.1.28, 49de41ef463292988ddacfb01a20543b963d9669
3231
3232   * Use Google's jsmin.py which can be used for evil.
3233
3234   * Add posix.truncate()
3235
3236   * Throw errors from server.listen()
3237
3238   * stdio bugfix (test by Mikeal Rogers)
3239
3240   * Module system refactor (Felix Geisendörfer, Blaine Cook)
3241
3242   * Add process.setuid(), getuid() (Michael Carter)
3243
3244   * sys.inspect refactor (Tim Caswell)
3245
3246   * Multipart library rewrite (isaacs)
3247
3248
3249 2010.02.03, Version 0.1.27, 0cfa789cc530848725a8cb5595224e78ae7b9dd0
3250
3251   * Implemented __dirname (Felix Geisendörfer)
3252
3253   * Downcase process.ARGV, process.ENV, GLOBAL
3254     (now process.argv, process.env, global)
3255
3256   * Bug Fix: Late promise promise callbacks firing
3257     (Felix Geisendörfer, Jonas Pfenniger)
3258
3259   * Make assert.AssertionError instance of Error
3260
3261   * Removed inline require call for querystring
3262     (self@cloudhead.net)
3263
3264   * Add support for MX, TXT, and SRV records in DNS module.
3265     (Blaine Cook)
3266
3267   * Bugfix: HTTP client automatically reconnecting
3268
3269   * Adding OS X .dmg build scripts. (Standa Opichal)
3270
3271   * Bugfix: ObjectWrap memory leak
3272
3273   * Bugfix: Multipart handle Content-Type headers with charset
3274     (Felix Geisendörfer)
3275
3276   * Upgrade http-parser to fix header overflow attack.
3277
3278   * Upgrade V8 to 2.1.0
3279
3280   * Various other bug fixes, performance improvements.
3281
3282
3283 2010.01.20, Version 0.1.26, da00413196e432247346d9e587f8c78ce5ceb087
3284
3285   * Bugfix, HTTP eof causing crash (Ben Williamson)
3286
3287   * Better error message on SyntaxError
3288
3289   * API: Move Promise and EventEmitter into 'events' module
3290
3291   * API: Add process.nextTick()
3292
3293   * Allow optional params to setTimeout, setInterval
3294     (Micheil Smith)
3295
3296   * API: change some Promise behavior (Felix Geisendörfer)
3297     - Removed Promise.cancel()
3298     - Support late callback binding
3299     - Make unhandled Promise errors throw an exception
3300
3301   * Upgrade V8 to 2.0.6.1
3302
3303   * Solaris port (Erich Ocean)
3304
3305
3306 2010.01.09, Version 0.1.25, 39ca93549af91575ca9d4cbafd1e170fbcef3dfa
3307
3308   * sys.inspect() improvements (Tim Caswell)
3309
3310   * path module improvements (isaacs, Benjamin Thomas)
3311
3312   * API: request.uri -> request.url
3313     It is no longer an object, but a string. The 'url' module
3314     was addded to parse that string. That is, node no longer
3315     parses the request URL automatically.
3316
3317        require('url').parse(request.url)
3318
3319     is roughly equivlent to the old request.uri object.
3320     (isaacs)
3321
3322   * Bugfix: Several libeio related race conditions.
3323
3324   * Better errors for multipart library (Felix Geisendörfer)
3325
3326   * Bugfix: Update node-waf version to 1.5.10
3327
3328   * getmem for freebsd (Vanilla Hsu)
3329
3330
3331 2009.12.31, Version 0.1.24, 642c2773a7eb2034f597af1cd404b9e086b59632
3332
3333   * Bugfix: don't chunk responses to HTTP/1.0 clients, even if
3334     they send Connection: Keep-Alive (e.g. wget)
3335
3336   * Bugfix: libeio race condition
3337
3338   * Bugfix: Don't segfault on unknown http method
3339
3340   * Simplify exception reporting
3341
3342   * Upgrade V8 to 2.0.5.4
3343
3344
3345 2009.12.22, Version 0.1.23, f91e347eeeeac1a8bd6a7b462df0321b60f3affc
3346
3347   * Bugfix: require("../blah") issues (isaacs)
3348
3349   * Bugfix: posix.cat (Jonas Pfenniger)
3350
3351   * Do not pause request for multipart parsing (Felix Geisendörfer)
3352
3353
3354 2009.12.19, Version 0.1.22, a2d809fe902f6c4102dba8f2e3e9551aad137c0f
3355
3356   * Bugfix: child modules get wrong id with "index.js" (isaacs)
3357
3358   * Bugfix: require("../foo") cycles (isaacs)
3359
3360   * Bugfix: require() should throw error if module does.
3361
3362   * New URI parser stolen from Narwhal (isaacs)
3363
3364   * Bugfix: correctly check kqueue and epoll. (Rasmus Andersson)
3365
3366   * Upgrade WAF to 1.5.10
3367
3368   * Bugfix: posix.statSync() was crashing
3369
3370   * Statically define string symbols for performance improvement
3371
3372   * Bugfix: ARGV[0] weirdness
3373
3374   * Added superCtor to ctor.super_ instead superCtor.prototype.
3375     (Johan Dahlberg)
3376
3377   * http-parser supports webdav methods
3378
3379   * API: http.Client.prototype.request() (Christopher Lenz)
3380
3381
3382 2009.12.06, Version 0.1.21, c6affb64f96a403a14d20035e7fbd6d0ce089db5
3383
3384   * Feature: Add HTTP client TLS support (Rhys Jones)
3385
3386   * Bugfix: use --jobs=1 with WAF
3387
3388   * Bugfix: Don't use chunked encoding for 1.0 requests
3389
3390   * Bugfix: Duplicated header weren't handled correctly
3391
3392   * Improve sys.inspect (Xavier Shay)
3393
3394   * Upgrade v8 to 2.0.3
3395
3396   * Use CommonJS assert API (Felix Geisendörfer, Karl Guertin)
3397
3398
3399 2009.11.28, Version 0.1.20, aa42c6790da8ed2cd2b72051c07f6251fe1724d8
3400
3401   * Add gnutls version to configure script
3402
3403   * Add V8 heap info to process.memoryUsage()
3404
3405   * process.watchFile callback has 2 arguments with the stat object
3406     (choonkeat@gmail.com)
3407
3408
3409 2009.11.28, Version 0.1.19, 633d6be328708055897b72327b88ac88e158935f
3410
3411   * Feature: Initial TLS support for TCP servers and clients.
3412     (Rhys Jones)
3413
3414   * Add options to process.watchFile()
3415
3416   * Add process.umask() (Friedemann Altrock)
3417
3418   * Bugfix: only detach timers when active.
3419
3420   * Bugfix: lib/file.js write(), shouldn't always emit errors or success
3421     (onne@onnlucky.com)
3422
3423   * Bugfix: Memory leak in fs.write
3424     (Reported by onne@onnlucky.com)
3425
3426   * Bugfix: Fix regular expressions detecting outgoing message headers.
3427     (Reported by Elliott Cable)
3428
3429   * Improvements to Multipart parser (Felix Geisendörfer)
3430
3431   * New HTTP parser
3432
3433   * Upgrade v8 to 2.0.2
3434
3435
3436 2009.11.17, Version 0.1.18, 027829d2853a14490e6de9fc5f7094652d045ab8
3437
3438   * Feature: process.watchFile() process.unwatchFile()
3439
3440   * Feature: "uncaughtException" event on process
3441     (Felix Geisendörfer)
3442
3443   * Feature: 'drain' event to tcp.Connection
3444
3445   * Bugfix: Promise.timeout() blocked the event loop
3446     (Felix Geisendörfer)
3447
3448   * Bugfix: sendBody() and chunked utf8 strings
3449     (Felix Geisendörfer)
3450
3451   * Supply the strerror as a second arg to the tcp.Connection close
3452     event (Johan Sørensen)
3453
3454   * Add EventEmitter.removeListener (frodenius@gmail.com)
3455
3456   * Format JSON for inspecting objects (Felix Geisendörfer)
3457
3458   * Upgrade libev to latest CVS
3459
3460
3461 2009.11.07, Version 0.1.17, d1f69ef35dac810530df8249d523add168e09f03
3462
3463   * Feature: process.chdir() (Brandon Beacher)
3464
3465   * Revert http parser upgrade. (b893859c34f05db5c45f416949ebc0eee665cca6)
3466     Broke keep-alive.
3467
3468   * API: rename process.inherits to sys.inherits
3469
3470
3471 2009.11.03, Version 0.1.16, 726865af7bbafe58435986f4a193ff11c84e4bfe
3472
3473   * API: Use CommonJS-style module requiring
3474     - require("/sys.js") becomes require("sys")
3475     - require("circle.js") becomes require("./circle")
3476     - process.path.join() becomes require("path").join()
3477     - __module becomes module
3478
3479   * API: Many namespacing changes
3480     - Move node.* into process.*
3481     - Move node.dns into module "dns"
3482     - Move node.fs into module "posix"
3483     - process is no longer the global object. GLOBAL is.
3484
3485   For more information on the API changes see:
3486     http://thread.gmane.org/gmane.comp.lang.javascript.nodejs/6
3487     http://thread.gmane.org/gmane.comp.lang.javascript.nodejs/14
3488
3489   * Feature: process.platform, process.memoryUsage()
3490
3491   * Feature: promise.cancel() (Felix Geisendörfer)
3492
3493   * Upgrade V8 to 1.3.18
3494
3495
3496 2009.10.28, Version 0.1.15, eca2de73ed786b935507fd1c6faccd8df9938fd3
3497
3498   * Many build system fixes (esp. for OSX users)
3499
3500   * Feature: promise.timeout() (Felix Geisendörfer)
3501
3502   * Feature: Added external interface for signal handlers, process.pid, and
3503     process.kill() (Brandon Beacher)
3504
3505   * API: Rename node.libraryPaths to require.paths
3506
3507   * Bugfix: 'data' event for stdio should emit a string
3508
3509   * Large file support
3510
3511   * Upgrade http_parser
3512
3513   * Upgrade v8 to 1.3.16
3514
3515
3516 2009.10.09, Version 0.1.14, b12c809bb84d1265b6a4d970a5b54ee8a4890513
3517
3518   * Feature: Improved addon builds with node-waf
3519
3520   * Feature: node.SignalHandler (Brandon Beacher)
3521
3522   * Feature: Enable V8 debugging (but still need to make a debugger)
3523
3524   * API: Rename library /utils.js to /sys.js
3525
3526   * Clean up Node's build system
3527
3528   * Don't use parseUri for HTTP server
3529
3530   * Remove node.pc
3531
3532   * Don't use /bin/sh to create child process except with exec()
3533
3534   * API: Add __module to reference current module
3535
3536   * API: Remove include() add node.mixin()
3537
3538   * Normalize http headers; "Content-Length" becomes "content-length"
3539
3540   * Upgrade V8 to 1.3.15
3541
3542
3543 2009.09.30, Version 0.1.13, 58493bb05b3da3dc8051fabc0bdea9e575c1a107
3544
3545   * Feature: Multipart stream parser (Felix Geisendörfer)
3546
3547   * API: Move node.puts(), node.exec() and others to /utils.js
3548
3549   * API: Move http, tcp libraries to /http.js and /tcp.js
3550
3551   * API: Rename node.exit() to process.exit()
3552
3553   * Bugfix: require() and include() should work in callbacks.
3554
3555   * Pass the Host header in http.cat calls
3556
3557   * Add warning when coroutine stack size grows too large.
3558
3559   * Enhance repl library (Ray Morgan)
3560
3561   * Bugfix: build script for
3562       GCC 4.4 (removed -Werror in V8),
3563       on Linux 2.4,
3564       and with Python 2.4.4.
3565
3566   * Add read() and write() to /file.js to read and write
3567     whole files at once.
3568
3569
3570 2009.09.24, Version 0.1.12, 2f56ccb45e87510de712f56705598b3b4e3548ec
3571
3572   * Feature: System modules, node.libraryPaths
3573
3574   * API: Remove "raw" encoding, rename "raws" to "binary".
3575
3576   * API: Added connection.setNoDElay() to disable Nagle algo.
3577
3578   * Decrease default TCP server backlog to 128
3579
3580   * Bugfix: memory leak involving node.fs.* methods.
3581
3582   * Upgrade v8 to 1.3.13
3583
3584
3585 2009.09.18, Version 0.1.11, 5ddc4f5d0c002bac0ae3d62fc0dc58f0d2d83ec4
3586
3587   * API: default to utf8 encoding for node.fs.cat()
3588
3589   * API: add node.exec()
3590
3591   * API: node.fs.read() takes a normal encoding parameter.
3592
3593   * API: Change arguments of emit(), emitSuccess(), emitError()
3594
3595   * Bugfix: node.fs.write() was stack allocating buffer.
3596
3597   * Bugfix: ReportException shouldn't forget the top frame.
3598
3599   * Improve buffering for HTTP outgoing messages
3600
3601   * Fix and reenable x64 macintosh build.
3602
3603   * Upgrade v8 to 1.3.11
3604
3605
3606 2009.09.11, Version 0.1.10, 12bb0d46ce761e3d00a27170e63b40408c15b558
3607
3608   * Feature: raw string encoding "raws"
3609
3610   * Feature: access to environ through "ENV"
3611
3612   * Feature: add isDirectory, isFile, isSocket, ... methods
3613     to stats object.
3614
3615   * Bugfix: Internally use full paths when loading modules
3616     this fixes a shebang loading problem.
3617
3618   * Bugfix: Add '--' command line argument for seperating v8
3619     args from program args.
3620
3621   * Add man page.
3622
3623   * Add node-repl
3624
3625   * Upgrade v8 to 1.3.10
3626
3627 2009.09.05, Version 0.1.9, d029764bb32058389ecb31ed54a5d24d2915ad4c
3628
3629   * Bugfix: Compile on Snow Leopard.
3630
3631   * Bugfix: Malformed URIs raising exceptions.
3632
3633 2009.09.04, Version 0.1.8, e6d712a937b61567e81b15085edba863be16ba96
3634
3635   * Feature: External modules
3636
3637   * Feature: setTimeout() for node.tcp.Connection
3638
3639   * Feature: add node.cwd(), node.fs.readdir(), node.fs.mkdir()
3640
3641   * Bugfix: promise.wait() releasing out of order.
3642
3643   * Bugfix: Asyncly do getaddrinfo() on Apple.
3644
3645   * Disable useless evcom error messages.
3646
3647   * Better stack traces.
3648
3649   * Built natively on x64.
3650
3651   * Upgrade v8 to 1.3.9
3652
3653 2009.08.27, Version 0.1.7, f7acef9acf8ba8433d697ad5ed99d2e857387e4b
3654
3655   * Feature: global 'process' object. Emits "exit".
3656
3657   * Feature: promise.wait()
3658
3659   * Feature: node.stdio
3660
3661   * Feature: EventEmitters emit "newListener" when listeners are
3662     added
3663
3664   * API:  Use flat object instead of array-of-arrays for HTTP
3665     headers.
3666
3667   * API: Remove buffered file object (node.File)
3668
3669   * API: require(), include() are synchronous. (Uses
3670     continuations.)
3671
3672   * API: Deprecate onLoad and onExit.
3673
3674   * API: Rename node.Process to node.ChildProcess
3675
3676   * Refactor node.Process to take advantage of evcom_reader/writer.
3677
3678   * Upgrade v8 to 1.3.7
3679
3680 2009.08.22, Version 0.1.6, 9c97b1db3099d61cd292aa59ec2227a619f3a7ab
3681
3682   * Bugfix: Ignore SIGPIPE.
3683
3684 2009.08.21, Version 0.1.5, b0fd3e281cb5f7cd8d3a26bd2b89e1b59998e5ed
3685
3686   * Bugfix: Buggy connections could crash node.js. Now check
3687     connection before sending data every time (Kevin van Zonneveld)
3688
3689   * Bugfix: stdin fd (0) being ignored by node.File. (Abe Fettig)
3690
3691   * API: Remove connnection.fullClose()
3692
3693   * API: Return the EventEmitter from addListener for chaining.
3694
3695   * API: tcp.Connection "disconnect" event renamed to "close"
3696
3697   * Upgrade evcom
3698     Upgrade v8 to 1.3.6
3699
3700 2009.08.13, Version 0.1.4, 0f888ed6de153f68c17005211d7e0f960a5e34f3
3701
3702   * Major refactor to evcom.
3703
3704   * Enable test-tcp-many-clients.
3705
3706   * Add -m32 gcc flag to udns.
3707
3708   * Add connection.readPause() and connection.readResume()
3709     Add IncomingMessage.prototype.pause() and resume().
3710
3711   * Fix http benchmark. Wasn't correctly dispatching.
3712
3713   * Bugfix: response.setBodyEncoding("ascii") not working.
3714
3715   * Bugfix: Negative ints in HTTP's on_body and node.fs.read()
3716
3717   * Upgrade v8 to 1.3.4
3718     Upgrade libev to 3.8
3719     Upgrade http_parser to v0.2
3720
3721 2009.08.06, Version 0.1.3, 695f0296e35b30cf8322fd1bd934810403cca9f3
3722
3723   * Upgrade v8 to 1.3.2
3724
3725   * Bugfix: node.http.ServerRequest.setBodyEncoding('ascii') not
3726     working
3727
3728   * Bugfix: node.encodeUtf8 was broken. (Connor Dunn)
3729
3730   * Add ranlib to udns Makefile.
3731
3732   * Upgrade evcom - fix accepting too many connections issue.
3733
3734   * Initial support for shebang
3735
3736   * Add simple command line switches
3737
3738   * Add node.version API
3739
3740
3741 2009.08.01, Version 0.1.2, 025a34244d1cea94d6d40ad7bf92671cb909a96c
3742
3743   * Add DNS API
3744
3745   * node.tcp.Server's backlog option is now an argument to listen()
3746
3747   * Upgrade V8 to 1.3.1
3748
3749   * Bugfix: Default to chunked for client requests without
3750     Content-Length.
3751
3752   * Bugfix: Line numbers in stack traces.
3753
3754   * Bugfix: negative integers in raw encoding stream
3755
3756   * Bugfix: node.fs.File was not passing args to promise callbacks.
3757
3758
3759 2009.07.27, Version 0.1.1, 77d407df2826b20e9177c26c0d2bb4481e497937
3760
3761   * Simplify and clean up ObjectWrap.
3762
3763   * Upgrade liboi (which is now called evcom)
3764     Upgrade libev to 3.7
3765     Upgrade V8 to 1.2.14
3766
3767   * Array.prototype.encodeUtf8 renamed to node.encodeUtf8(array)
3768
3769   * Move EventEmitter.prototype.emit() completely into C++.
3770
3771   * Bugfix: Fix memory leak in event emitters.
3772     http://groups.google.com/group/nodejs/browse_thread/thread/a8d1dfc2fd57a6d1
3773
3774   * Bugfix: Had problems reading scripts with non-ascii characters.
3775
3776   * Bugfix: Fix Detach() in node::Server
3777
3778   * Bugfix: Sockets not properly reattached if reconnected during
3779     disconnect event.
3780
3781   * Bugfix: Server-side clients not attached between creation and
3782     on_connect.
3783
3784   * Add 'close' event to node.tcp.Server
3785
3786   * Simplify and clean up http.js. (Takes more advantage of event
3787     infrastructure.)
3788
3789   * Add benchmark scripts. Run with "make benchmark".
3790
3791
3792 2009.06.30, Version 0.1.0, 0fe44d52fe75f151bceb59534394658aae6ac328
3793
3794   * Update documentation, use asciidoc.
3795
3796   * EventEmitter and Promise interfaces. (Breaks previous API.)
3797
3798   * Remove node.Process constructor in favor of node.createProcess
3799
3800   * Add -m32 flags for compiling on x64 platforms.
3801     (Thanks to András Bártházi)
3802
3803   * Upgrade v8 to 1.2.10 and libev to 3.6
3804
3805   * Bugfix: Timer::RepeatSetter wasn't working.
3806
3807   * Bugfix: Spawning many processes in a loop
3808     (reported by Felix Geisendörfer)
3809
3810
3811 2009.06.24, Version 0.0.6, fbe0be19ebfb422d8fa20ea5204c1713e9214d5f
3812
3813   * Load modules via HTTP URLs (Urban Hafner)
3814
3815   * Bugfix: Add HTTPConnection->size() and HTTPServer->size()
3816
3817   * New node.Process API
3818
3819   * Clean up build tools, use v8's test runner.
3820
3821   * Use ev_unref() instead of starting/stopping the eio thread
3822     pool watcher.
3823
3824
3825 2009.06.18, Version 0.0.5, 3a2b41de74b6c343b8464a68eff04c4bfd9aebea
3826
3827   * Support for IPv6
3828
3829   * Remove namespace node.constants
3830
3831   * Upgrade v8 to 1.2.8.1
3832
3833   * Accept ports as strings in the TCP client and server.
3834
3835   * Bugfix: HTTP Client race
3836
3837   * Bugfix: freeaddrinfo() wasn't getting called after
3838     getaddrinfo() for TCP servers
3839
3840   * Add "opening" to TCP client readyState
3841
3842   * Add remoteAddress to TCP client
3843
3844   * Add global print() function.
3845
3846
3847 2009.06.13, Version 0.0.4, 916b9ca715b229b0703f0ed6c2fc065410fb189c
3848
3849  * Add interrupt() method to server-side HTTP requests.
3850
3851  * Bugfix: onBodyComplete was not getting called on server-side
3852    HTTP
3853
3854
3855 2009.06.11, Version 0.0.3, 6e0dfe50006ae4f5dac987f055e0c9338662f40a
3856
3857  * Many bug fixes including the problem with http.Client on
3858    macintosh
3859
3860  * Upgrades v8 to 1.2.7
3861
3862  * Adds onExit hook
3863
3864  * Guard against buffer overflow in http parser
3865
3866  * require() and include() now need the ".js" extension
3867
3868  * http.Client uses identity transfer encoding by default.