Revision:

Revisions

# Date Author Comment
832ec1cd 07/28/2014 10:30 AM Sam Roberts

process: throw TypeError if kill pid not a number

Currently, invalid usage such as:

process.kill('SIGTERM')
process.kill(null)
process.kill(undefined);

all coerce the pid to 0, and signal the current process.

Signed-off-by: Fedor Indutny <>

9a63a1d8 07/24/2014 06:44 PM Fedor Indutny

deps: backport 60c316 from v8 trunk

Original commit message:

Extend the interceptor setter ASSERT to support the JSGlobalProxy case.
BUG=v8:3463
LOG=n
R=
Review URL: https://codereview.chromium.org/415973004
git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@22589 ce2b1a6d-e550-0410-aec6-3dcde31c8c00...
61ddad13 07/23/2014 04:41 PM cjihrig

querystring: do not add sep for empty array

Currently, stringification of an empty array outputs a single
separator character. This commit causes an empty array to output
the empty string.

Signed-off-by: Fedor Indutny <>

338ba2bc 07/23/2014 03:55 PM Fedor Indutny

test: fix test-https-foafssl

93390ffc 07/23/2014 03:51 PM Fedor Indutny

test: fix test-tls-server-verify

fix #7963

e1ce8ba6 07/23/2014 03:44 PM Jackson Tian

net: add remoteFamily for socket

Signed-off-by: Fedor Indutny <>

2bb48673 07/23/2014 03:43 PM Shigeki Ohtsu

tls: fix to send TLS Alert before socket destroyed

When TLS Alert is occured in handshake, ClearOut only write it into
wbio and does not flush to socket. TLS Alert should be written to
socket with EncOut before socket is destroyed within its error
callback....

300dd349 07/23/2014 03:42 PM Maciej Małecki

gyp: fix ARM build

According to V8 changelog, `armv7` config variable was replaced by
`arm_version`, with value either '7', '6' or 'default'.

Detect ARMv7 and ARMv6 CPUs and default to 'default'.

Signed-off-by: Fedor Indutny <>

ea89fdfe 07/23/2014 03:39 PM cjihrig

child_process: do not access stderr when stdio set to 'ignore'

Currently, checkExecSyncError() attempts to access the contents
of stderr. When stdio is set to 'ignore', this causes a crash.
This commit adds a check on the access of stderr. Closes #7966.
...

96b166f2 07/23/2014 03:09 PM Sam Roberts

doc: console.trace takes a message format

Documentation claimed it accepted a single label argument, as time and
timeEnd do, which was incorrect.

Signed-off-by: Fedor Indutny <>

2f0017aa 07/23/2014 03:08 PM Fedor Indutny

deps: update http_parser to 2.3.0

ba094094 07/23/2014 02:47 PM Dean McNamee

src: export additional startup functions

This allows embedders enough control to initialize node, run the
event loop, and cleanly exit (including calling handlers).

Signed-off-by: Fedor Indutny <>

eba7aae1 07/23/2014 10:56 AM Fedor Indutny

gyp: fix post-mortem in v0.11

Expose missing constants and keep symbols on OSX.

4c48df5a 07/23/2014 08:25 AM Fedor Indutny

gyp: fix post-mortem in v0.11

Expose missing constants and keep symbols on OSX.

3530fa9c 07/18/2014 06:57 AM Fedor Indutny

deps: backport 4ed5fde4f from v8 upstream

Original commit message:

Fix x64 MathMinMax for negative untagged int32 arguments.
An untagged int32 has zeros in the upper half even if it is negative.
Using cmpq to compare such numbers will incorrectly ignore the sign....
1d3d8c0e 07/17/2014 07:16 AM Fedor Indutny

gyp: do not let `v8dbg_` slip away on osx

Pass `-force_load` to linker when linking to `libv8_base` to preserve
`v8dbg_` symbols, which are useful for debugging.

857975d5 07/17/2014 12:46 AM Brian White

tls_wrap: remove unused variable

Closes #7957.

9d9fc3fa 07/15/2014 04:43 AM Fedor Indutny

lib: jslint string_decoder.js

a96d6603 07/15/2014 04:38 AM Chris Dickinson

stream2: flush extant data on read of ended stream

A ReadableStream with a base64 StringDecoder backed by only
one or two bytes would fail to output its partial data before
ending. This fix adds a check to see if the `read` was triggered
by an internal `flow`, and if so, empties any remaining data....

04d6fc2c 07/14/2014 04:12 PM Ryan Graham

cluster: include settings object in 'setup' event

Emits on every call to cluster.setupMaster(), even if no new settings
are given. This is because calling cluster.setupMaster() without
arguments (or with an empty options object) results in the settings
being restored to their defaults....

b96e38ac 07/14/2014 04:12 PM Ryan Graham

cluster: allow multiple calls to setupMaster()

Only attributes of 'cluster.settings' will be modified after the first
call, leaving all other cluster initialization alone. Each call that
includes a 'settings' argument triggers a 'setup' event to be emitted....

b6924937 07/13/2014 03:15 PM Fedor Indutny

test: fix regress-GH-1726

da30c008 07/13/2014 03:07 PM Dean McNamee

src: pass the v8::Context to CreateEnvironment

Pass in the v8::Context, instead of creating it
within CreateEnvironment. This allows callers
to use a pre-existing context.

Signed-off-by: Fedor Indutny <>

c4e5fde3 07/12/2014 05:46 AM cjihrig

child_process: copy spawnSync() cwd option to proper buffer

The spawnSync() cwd option was being copied to the incorrect
location. This commit copies to the correct location.

Closes #7824

Signed-off-by: Fedor Indutny <>

7f86baf5 07/12/2014 05:35 AM Fedor Indutny

child_process: handle writeUtf8String error

When handling `writeUtf8String` error, return after emitting it.
Otherwise a runtime failure can occur.

fix #7923

1 2 3 4 5 ... 406 (51-75/10129) Per page: 25, 50, 100

Also available in: Atom