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