- Jul 07, 2014
-
-
Robert Kowalski authored
As we are going to need fs in any case, just require it at the beginning of the file. Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
- Jul 03, 2014
-
-
Ed Umansky authored
Fix for `error` events emitting only once when reconnecting a single instance of net.Socket. Fixes joyent/node#7888 Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Trevor Norris authored
-
Andrius Bentkus authored
A udp packet can have 0 content. In that case nread will be equal to 0, but addr != NULL. Add test case for empty data gram packets and fixed test that checked for OOB when length == 0. Signed-off-by:Trevor Norris <trev.norris@gmail.com>
-
Fedor Indutny authored
Original commit message: bn_exp.c: fix x86_64-specific crash with one-word modulus. PR: #3397 Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Fedor Indutny authored
fix #7417 Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Fedor Indutny authored
Accept uid/gid option in every execute/spawn call (including cluster.fork). Add documentation where needed. fix #7881 Signed-off-by:Trevor Norris <trev.norris@gmail.com>
-
Eli Skeggs authored
Fixes #7834 Signed-off-by:Trevor Norris <trev.norris@gmail.com>
-
- Jul 01, 2014
-
-
Yazhong Liu authored
Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Ionică Bizău authored
Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Refael Ackermann authored
Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Arnout Kazemier authored
Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
- Jun 30, 2014
-
-
Fedor Indutny authored
The refactor in 3ae0b17c broke the multiline input's visual appearence. While actually switching to this mode, the `...` prefix is not displayed. Additionally, account only SyntaxErrors that are happening at the parse time, everything else should not be switching repl to the multiline mode. Signed-off-by:
Fedor Indutny <fedor@indutny.com>
-
Jonathan Reem authored
The [Stream documentation for .push](http://nodejs.org/api/stream.html#stream_readable_push_chunk_encoding ) explicitly states multiple times that null is a special cased value that indicates the end of a stream. It is confusing and undocumented that undefined *also* ends the stream, even though in object mode there is a distinct and important difference. The docs for Object-Mode also explicitly mention null as the *only* special cased value, making no mention of undefined. Signed-off-by:
Fedor Indutny <fedor@indutny.com>
-
- Jun 27, 2014
-
-
Fedor Indutny authored
fix #7769 Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Yazhong Liu authored
Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
cjihrig authored
Creating a new buffer from the toJSON() output of another buffer does not currently work. This commit adds that support. Closes #7849. Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Fedor Indutny authored
-
Saúl Ibarra Corretgé authored
Uses getnameinfo to resolve an address an port into a hostname and service. Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
- Jun 25, 2014
-
-
Fedor Indutny authored
Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Fedor Indutny authored
Add `honorCipherOrder` argument to `crypto.createCredentials`. fix #7249
-
Fedor Indutny authored
-
Fedor Indutny authored
The test execution should not depend on the servers running locally. fix #7832
-
Chris Dickinson authored
Calling dns.lookup with arguments that generate an error from c-ares previously sent those errors back to the callback. This commit restores the ca9eb718 behavior. Fixes #7731. Signed-off-by:
Trevor Norris <trev.norris@gmail.com> Signed-off-by:
Fedor Indutny <fedor@indutny.com>
-
Fred K. Schott authored
Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Kyle Robinson Young authored
Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Jan Krems authored
Instrumentation code might need to find out the entry point of the process in a global context. Documenting the existing process.mainModule to officially support this. Fixes #7808 Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
- Jun 24, 2014
-
-
Yazhong Liu authored
Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Charles authored
Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Ed Morley authored
Currently child_process.exec() assumes that cmd.exe is on the PATH, and fails with a spawn ENOENT error if it is not. The Windows 'comspec' environment variable contains the full filepath to the default command interpreter, eg "C:\Windows\System32\cmd.exe". Should it not be set, we fall-back to using 'cmd.exe' from PATH, as before. Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
- Jun 17, 2014
-
-
Timothy J Fontaine authored
-
Timothy J Fontaine authored
fixes #7793
-
- Jun 14, 2014
-
-
Timothy J Fontaine authored
Building MSIs for different arch's can sometimes confuse MSBuild and Wix, isntead run the toolchain externally so we don't have to worry about which arch cmd.exe is running as.
-
- Jun 13, 2014
-
-
Fedor Indutny authored
fix #7509
-
Fedor Indutny authored
-
Ben Noordhuis authored
Check for cached transition to ExternalArray elements kind. See [1] and [2] for details. [1] https://code.google.com/p/v8/issues/detail?id=3337 [2] https://codereview.chromium.org/291193011 Signed-off-by:
Fedor Indutny <fedor@indutny.com>
-
Ben Noordhuis authored
Changes the return value of PropertyCallbackInfo<T>::This() from Local<Value> back to Local<Object>. See [1] and [2] for background. [1] https://groups.google.com/forum/#!topic/v8-users/wP2UcQ4cBW4 [2] https://codereview.chromium.org/285643008/ Signed-off-by:
Fedor Indutny <fedor@indutny.com>
-
Ben Noordhuis authored
Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Ben Noordhuis authored
Signed-off-by:Fedor Indutny <fedor@indutny.com>
-
Euan authored
Signed-off-by:Fedor Indutny <fedor@indutny.com>
-