- Jul 26, 2012
-
-
Nathan Rajlich authored
AssertionError already inherits from Error above using util.inherits(), so this extra line was redundant. test/simple/test-assert.js already tests for `instanceof`, and still passes.
-
isaacs authored
-
isaacs authored
-
isaacs authored
-
isaacs authored
-
- Jul 25, 2012
-
-
isaacs authored
* V8: Upgrade to 3.11.10.17 * npm: Upgrade to 1.1.45 * net: fix Socket({ fd: 42 }) api (Ben Noordhuis) * readline: Remove event listeners on close (isaacs) * windows: correctly prep long path for fs.exists(Sync) (Bert Belder) * debugger: wake up the event loop when a debugger command is dispatched (Peter Rybin) * tls: verify server's identity (Fedor Indutny) * net: ignore socket.setTimeout(Infinity or NaN) (Fedor Indutny) -
isaacs authored
-
isaacs authored
-
Ben Noordhuis authored
Make the implementation match the documentation. This should work: var s = new net.Socket({ fd: 42, allowHalfOpen: true }; And now it does. -
isaacs authored
Fix #3756
-
isaacs authored
-
isaacs authored
-
isaacs authored
This includes node-gyp 0.6.1
-
- Jul 23, 2012
-
-
Bert Belder authored
Closes GH-3739
-
Peter Rybin authored
When the event loop was blocked in epoll / kqueue or similar, debugger commands wouldn't be processed. This patch fixes that by adding an uv_async handle which is triggered when a debugger command is dispatched. The async handle's callback makes sure that V8 is entered. Closes GH-3626 Closes GH-3718
-
Brian White authored
Closes GH-3754
-
- Jul 22, 2012
-
-
koichik authored
Fixes #3750.
-
- Jul 21, 2012
-
-
Fedor Indutny authored
-
Fedor Indutny authored
And fix last failing tests
-
Fedor Indutny authored
socket.authorizationError should always be string. Also make sni test pass.
-
Fedor Indutny authored
-
Fedor Indutny authored
This reverts commit 53716eb0.
-
- Jul 20, 2012
-
-
Fedor Indutny authored
-
Fedor Indutny authored
It's useful for passing some additional options of request object to the underlying API
-
Fedor Indutny authored
-
isaacs authored
-
isaacs authored
-
isaacs authored
-
isaacs authored
-
isaacs authored
* V8: upgrade to 3.11.10.15 * npm: Upgrade to 1.1.43 * net: fix net.Server.listen({fd:x}) error reporting (Ben Noordhuis) * net: fix bogus errno reporting (Ben Noordhuis) * build: Move npm shebang logic into an npm script (isaacs) * build: fix add-on loading on freebsd (Ben Noordhuis) * build: disable unsafe optimizations (Ben Noordhuis) * build: fix spurious mksnapshot crashes for good (Ben Noordhuis) * build: speed up genv8constants (Dave Pacheco) * fs: make unwatchFile() remove a specific listener (Ben Noordhuis) * domain: Remove first arg from intercepted fn (Toshihiro Nakamura) * domain: Fix memory leak on error (isaacs) * events: Fix memory leak from removeAllListeners (Nathan Rajlich) * zlib: Fix memory leak in Unzip class. (isaacs) * crypto: Fix memory leak in DecipherUpdate() (Ben Noordhuis) -
isaacs authored
-
isaacs authored
-
Ben Noordhuis authored
I disabled the -ffunction-sections and -fdata-sections switches in 202df30a because they're horribly buggy with some gcc/binutils combos. However, it turns out that the dtrace/ustack post-processing tool requires that V8 is compiled with said switches and was broken because of it. This commit turns them on again on SunOS systems. Let's hope for the best.
-
- Jul 19, 2012
-
-
Ben Noordhuis authored
The system linker on SunOS doesn't understand --export-dynamic.
-
Ben Noordhuis authored
Unconditionally compile V8 with -fno-strict-aliasing on all platforms. gcc 4.5.2 on sunos generates bad code when -fstrict-aliasing is enabled, which undoubtedly means that there are more buggy versions of gcc out there. -fstrict-aliasing does not give a significant performance boost so let's just disable it. Fixes #3736.
-
- Jul 18, 2012
-
-
Ben Noordhuis authored
-
Ben Noordhuis authored
Explicitly cast double to int64_t, it was making add-ons that compile with `-Wall -Wextra -Werror` fail to build. Don't use fully variadic macros, gcc in uber-strict mode rejects them.
-
Ben Noordhuis authored
-
isaacs authored
-
Dave Pacheco authored
genv8constants was much slower than necessary due to lack of pipe buffering.
-