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