- Nov 09, 2012
-
-
Bert Belder authored
Closes #4256
-
Bert Belder authored
-
- Oct 30, 2012
-
-
Francois Marier authored
-
Francois Marier authored
The documentation for http.request and https.request states that `hostname` is preferred over `host` so the code examples should use that option name.
-
- Oct 26, 2012
-
-
isaacs authored
-
isaacs authored
-
isaacs authored
-
isaacs authored
-
isaacs authored
* events: Don't clobber pre-existing _events obj in EE ctor (isaacs)
-
isaacs authored
-
isaacs authored
-
isaacs authored
-
isaacs authored
-
isaacs authored
* V8: Upgrade to 3.11.10.25 * npm: Upgrade to 1.1.65 * url: parse hostnames that start with - or _ (Ben Noordhuis) * repl: Fix Windows 8 terminal issue (Bert Belder) * typed arrays: use signed char for signed int8s (Aaron Jacobs) * crypto: fix bugs in DiffieHellman (Ben Noordhuis) * configure: turn on VFPv3 on ARMv7 (Ben Noordhuis) * Re-enable OpenSSL UI for entering passphrases via tty (Ben Noordhuis) * repl: ensure each REPL instance gets its own "context" (Nathan Rajlich)
-
isaacs authored
-
isaacs authored
-
- Oct 25, 2012
-
-
isaacs authored
Always add domain, _events, and _maxListeners properties, set to the default values at first. Leads to a very very slight perf improvement when using setMaxListeners, or dealing with a lot of EE objects that don't have any listeners.
-
Ben Noordhuis authored
Remove compiler switches from $(TOPLEVEL)/deps/v8/build/common.gypi, we set them globally in $(TOPLEVEL)/common.gypi. Commit 29d12c73 accidentally reintroduced the switches again. In particular, the 'cflags!': ['-O2','-Os'] section forced building V8 without any optimizations, resulting in a steep (~66%) performance drop on some benchmarks. Fixes #4191.
-
Ben Noordhuis authored
Turns on -O3 and other optimizations that may produce buggy code with some toolchains. Use at your own risk.
-
Ben Noordhuis authored
Allow hostnames like '-lovemonsterz.tumblr.com' and '_jabber._tcp.google.com'. Fixes #4177.
-
isaacs authored
-
- Oct 24, 2012
-
-
Bert Belder authored
Solves #4178, but does not fix the underlying issue
-
Olivier Lalonde authored
-
isaacs authored
-
isaacs authored
-
isaacs authored
-
- Oct 23, 2012
-
-
Ben Noordhuis authored
Ensure that uint8 values >= 128 are correctly promoted to int8 <= -1.
-
Aaron Jacobs authored
The C standard allows plain `char` to be unsigned. The build environment at Google trips this issue.
-
yangguo@chromium.org authored
`timezone` variable contains the difference, in seconds, between UTC and local standard time (see `man 3 localtime` on Solaris). Call to `tzset` is required to apply contents of `TZ` variable to `timezone` variable. BUG=v8:2064 Review URL: https://chromiumcodereview.appspot.com/10967066 Patch from Maciej Małecki <me@mmalecki.com>. This is a back-port of upstream commit r12802.
-
- Oct 22, 2012
-
-
Ben Noordhuis authored
Fix a use-after-free bug and a memory leak in the error path of DiffieHellman::ComputeSecret(). * the BIGNUM key was used after being freed with BN_free(). * the output buffer was not freed
-
Ben Noordhuis authored
Passing a bad key to DiffieHellman::ComputeSecret() made it zero the byte before the heap allocated buffer due to an erroneous size calculation.
-
Ben Noordhuis authored
Exercises the error path in DiffieHellman::ComputeSecret() in src/node_crypto.cc
-
- Oct 17, 2012
-
-
isaacs authored
-
- Oct 16, 2012
-
-
Nathan Rajlich authored
Previously, the "global" mode of REPLs was broken when created after another non-global REPL (they would end up sharing the same context). Now that "global" mode is fixed for that case (b1e78cef), this test case gets its global scope modified with "module" and other REPL-specific properties, so disable the global check.
-
Ben Noordhuis authored
Fixes a V8 build error caused by missing arm_fpu and arm_neon settings. This is a back-port of commit bbf6b4ec from the master branch. Fixes #4142.
-
Ben Noordhuis authored
This reverts commit 1c88c3b3. It breaks the "read a password from stdin" functionality that OpenSSL provides. Fixes #4059, #4143. Conflicts: deps/openssl/openssl.gyp
-
- Oct 14, 2012
-
-
Jan Lehnardt authored
-
- Oct 13, 2012
-
-
Ben Noordhuis authored
* The 'close' event doesn't emit an error object. * It's possible for a 'close' event to come after an 'end' event, contrary to what the documentation said. Fixes #4116.
-
Nathan Rajlich authored
Before there was this weird module-scoped "context" variable which seemingly shared the "context" of subsequent REPL instances, unless ".clear" was invoked inside the REPL. To be proper, we need to ensure that each REPL gets its own "context" object. I literally don't know why this "sharing" behavior was in place before, but it was just plain wrong.
-
Max Ogden authored
-