- Feb 14, 2012
-
-
isaacs authored
* Upgrade V8 to 3.9.5 * Upgrade npm to 1.1.1 * build: Detect host_arch better (Karl Skomski) * debugger: export `debug_port` to `process` (Fedor Indutny) * api docs: CSS bug fixes (isaacs) * build: use -fPIC for native addons on UNIX (Nathan Rajlich) * Re-add top-level v8::Locker (Marcel Laverdet) * Move images out of the dist tarballs (isaacs) * libuv: Remove uv_export and uv_import (Ben Noordhuis)
-
isaacs authored
-
isaacs authored
-
isaacs authored
This puts all images in doc/images/ and references them via http://nodejs.org/images/. Any complaints about copyright usage etc. can thus be node/joyent's problem, rather than the problem of a downstream distribution channel.
-
Fedor Indutny authored
* See: http://codereview.chromium.org/9382033/
-
isaacs authored
-
isaacs authored
Only SConstruct and build/common.gypi at this point. All others are accepted upstream, which greatly simplifies things.
-
isaacs authored
-
Karl Skomski authored
-
- Feb 13, 2012
-
-
Fedor Indutny authored
`process.debug_port` is useful for changing debugger port in runtime, before starting it (via SIGUSR1). Using `--port=` argument for debugger repl, tests will run debugger server on a `common.PORT` (as it usually does for any other servers). `process._debugEnd()` stops debugger and its server. * debugger: implemented process._debugEnd(), `node debug --port=5858 app.js` * test: start debugger repl on common.PORT * fixes #2613 * fixes #2614
-
- Feb 12, 2012
-
-
Ben Noordhuis authored
Conflicts: common.gypi
-
Ben Noordhuis authored
-
koichik authored
-
- Feb 11, 2012
-
-
Ben Noordhuis authored
-
isaacs authored
-
isaacs authored
-
Igor Zinkovsky authored
-
Igor Zinkovsky authored
-
Ben Noordhuis authored
Fixes #2733.
-
- Feb 10, 2012
-
-
Ben Noordhuis authored
Hitherto undocumented option that lets the user select the list of ciphers to use or exclude in a SSL/TLS session.
-
- Feb 09, 2012
-
-
Nathan Rajlich authored
No -fPIC on 32 bits Linux but do enable for the other UNIX flavors.
-
Ben Noordhuis authored
This test starts two clustered HTTP servers on the same port. It expects the first cluster to succeed and the second cluster to fail with EADDRINUSE.
-
isaacs authored
-
Andreas Madsen authored
-
Dave Pacheco authored
-
isaacs authored
Many shells don't have GLOBSTAR turned on by default. This is why uv and v8 so often don't get cleaned out properly.
-
- Feb 08, 2012
-
-
Marcel Laverdet authored
11d1eca9 added a v8 locker to ease development of 3rd party threading extensions but it created a condition which would cause node to exit uncleanly while in debug mode; it was reverted in 7543c38d. The problem here is that the Locker was being disposed after V8 was torn down. Adding some scoping fixes that.
-
isaacs authored
-
isaacs authored
* Upgrade V8 to 3.9.2 * Revert support for isolates. (Ben Noordhuis) * cluster: Cleanup docs, event handling, and process.disconnect (Andreas Madsen) * gyp_addon: link with node.lib on Windows (Nathan Rajlich) * http: fix case where http-parser is freed twice (koichik) * Windows: disable RTTI and exceptions (Bert Belder)
-
isaacs authored
I keep forgetting to do this. It's such a stupid thing.
-
Ben Noordhuis authored
-
Ben Noordhuis authored
Commit 840229a8 forgot to update the debugger special case in lib/module.js Fixes #2710.
-
Igor Zinkovsky authored
use "vcbuild x64" to do x64 build of node.exe
-
- Feb 07, 2012
-
-
isaacs authored
Thanks, @AndreasMadsen
-
isaacs authored
Conflicts: ChangeLog deps/v8/src/version.cc deps/v8/tools/gyp/v8.gyp doc/about/index.html doc/community/index.html doc/index.html doc/logos/index.html doc/template.html lib/path.js lib/querystring.js src/node_version.h
-
isaacs authored
-
isaacs authored
-
Andreas Madsen authored
-
Andreas Madsen authored
After adding a .disconect method and connected flag in child_process we should no longer use the process._channel object.
-
Andreas Madsen authored
This simplify the internalMessage and exit event handling And simply relay message and error event to the worker object Note that the error event was not relayed before
-