- Mar 31, 2012
-
-
Ben Noordhuis authored
-
Ben Noordhuis authored
-
Ben Noordhuis authored
-
Ben Noordhuis authored
-
Ben Noordhuis authored
-
Ben Noordhuis authored
-
Ben Noordhuis authored
-
Ben Noordhuis authored
-
Ben Noordhuis authored
-
isaacs authored
-
isaacs authored
-
Igor Zinkovsky authored
-
- Mar 30, 2012
-
-
Ben Noordhuis authored
-
Ben Noordhuis authored
-
Ben Noordhuis authored
-
Ben Noordhuis authored
-
Ben Noordhuis authored
-
Ben Noordhuis authored
-
isaacs authored
* Upgrade V8 to 3.9.24.7 * Upgrade npm to 1.1.15 * Handle Emoji characters properly (Erik Corry, Bert Belder) * readline: migrate ansi/vt100 logic from tty to readline (Nathan Rajlich) * readline: Fix multiline handling (Alex Kocharin) * add a -i/--interactive flag to force the REPL (Nathan Rajlich) * debugger: add breakOnException command (Fedor Indutny) * cluster: kill workers when master dies (Andreas Madsen) * cluster: add graceful disconnect support (Andreas Madsen) * child_process: Separate 'close' event from 'exit' (Charlie McConnell) * typed arrays: add Uint8ClampedArray (Mikael Bourges-Sevenier) * buffer: Fix byte alignment issues (Ben Noordhuis, Erik Lundin) * tls: fix CryptoStream.setKeepAlive() (Shigeki Ohtsu) * Expose http parse error codes (Felix Geisendörfer) * events: don't delete the listeners array (Ben Noordhuis, Nathan Rajlich) * process: add process.config to view node's ./configure settings (Nathan Rajlich) * process: process.execArgv to see node's arguments (Micheil Smith) * process: fix process.title setter (Ben Noordhuis) * timers: handle negative or non-numeric timeout values (Ben Noordhuis)
-
isaacs authored
-
isaacs authored
-
isaacs authored
-
Nathan Rajlich authored
Technically saying `tty.ReadStream#setRawMode()` is correct, but since a typical use cannot instantiate `tty.ReadStream` themselves, and 99% of the time the only instance is `process.stdin`, then a little clarification seemed necessary.
-
- Mar 29, 2012
-
-
isaacs authored
Travis-CI is failing on this test repeatedly, but other Linux systems seem to be fine with it. Alter the logging so it's more clear which part is timing out.
-
Ben Noordhuis authored
Said test takes over 90 seconds on my Core 2 Duo which is too long, even for the pummel tests.
-
Yosef Dinerstein authored
Instead of allocating a new 64KB buffer each time when checking if there is something to transform, continue to use the same buffer. Once the buffer is exhausted, allocate a new buffer. This solves the problem of huge allocations when small fragments of data are processed, but will also continue to work well with big pieces of data.
-
Ben Noordhuis authored
The test is too slow / CPU intensive for the main test harness.
-
Ben Noordhuis authored
Said test adds little value and only serves to annoy me when moving around modules. It was broken anyway: it passed inside the test runner and failed when run from the command line thanks to the environment sniffing it did.
-
ssuda authored
Reduces the executable's size by a few kilobytes.
-
Shigeki Ohtsu authored
-
Shigeki Ohtsu authored
-
Shigeki Ohtsu authored
-
isaacs authored
-
isaacs authored
-
isaacs authored
-
Ben Noordhuis authored
-
Erik Lundin authored
-
Ben Noordhuis authored
Prevents alignment issues when people create a typed array from a buffer. Unaligned loads or stores are less efficent and (on some architectures) unsafe.
-
Mikael Bourges-Sevenier authored
-