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