summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* npm: upgrade to 1.3.26isaacs2014-02-08213-250/+238
|
* doc: fix diffieHellman.getGenerator() descriptionBrian White2014-02-091-1/+1
|
* Revert "dns: validate arguments in resolve"Fedor Indutny2014-02-082-32/+0
| | | | This reverts commit 56e80a37e0df0d131d3a3ad6426d52f887ef8e94.
* Revert "dns: verify argument is valid function in resolve"Fedor Indutny2014-02-081-3/+1
| | | | This reverts commit 2ee86c624ecd6b9dbaad10989143325fc64778cd.
* dns: verify argument is valid function in resolveKenan Sulayman2014-02-081-1/+3
| | | | | | Don't use argument as callback if it's not a valid callback function. Throw a valid exception instead explaining the issue. Adds to #7070 ("DNS — Throw meaningful error(s)").
* dns: validate arguments in resolveKenan Sulayman2014-02-082-0/+32
| | | | | | Mitigat C++-land assertion error, add test accordingly. fix #7070
* website: update cla email addressTimothy J Fontaine2014-02-071-2/+2
|
* fs: make unwatchFile() insensitive to pathiamdoron2014-02-062-0/+25
|
* doc: fix references to error keywordBenjamin Waters2014-02-041-2/+2
| | | | | | | References for err.signal and err.code should be error.signal and error.code. Fixes joyent/node#6862
* crypto: update root certificatesBen Noordhuis2014-02-042-3587/+3565
| | | | | | | | Update the list of root certificates in src/node_root_certs.h with tools/mk-ca-bundle.pl and update src/node_crypto.cc to make use of the new format. Fixes #6013.
* doc: add an example about multiple extensionsMaxime Quandalle2014-02-031-0/+4
| | | | `path.extname` returns only the last extension
* dtrace: fix arguments warningFedor Indutny2014-02-011-2/+2
| | | | | Add enough arguments to `NODE_NET_SOCKET_READ()` and `NODE_NET_SOCKET_WRITE()` stubs.
* deps: backport 883637bd from latest v8Fedor Indutny2014-02-014-3/+10
| | | | | | | | | | | | | | | | | | | | | | | | Original commit message: VS2013 contains a number of improvements, most notably the addition of all C99 math functions. I'm a little bit concerned about the change I had to make in cpu-profiler.cc, but I spent quite a bit of time looking at it and was unable to figure out any rational explanation for the warning. It's possible it's spurious. Since it seems like a useful warning in general though, I chose not to disable globally at the gyp level. I do think someone with expertise here should probably try to determine if this is a legitimate warning. BUG=288948 R=dslomov@chromium.org Review URL: https://codereview.chromium.org/23449035 NOTE: Path applied without `cpu-profiler.cc` changes because in our version it was looking totally different.
* node: do not ever close stdioFedor Indutny2014-01-304-5/+51
| | | | | | Even if stdio streams are opened as file streams, we should not ever try to close them. This could be accomplished by passing `autoClose: false` in options on their creation.
* blog: Post for v0.11.11Timothy J Fontaine2014-01-281-0/+106
|
* docs: clarify origin in agent.maxSockets sectionWyatt Preul2014-01-291-1/+2
|
* net: make Socket destroy() re-entrance safeJun Ma2014-01-272-1/+37
| | | | | | So that we are free to call socket.destroy() in error event handler. fix #6769
* crypto: throw on SignFinal failureFedor Indutny2014-01-262-2/+24
| | | | fix #6963
* net: reset `endEmitted` on reconnectFedor Indutny2014-01-252-0/+4
| | | | fix #6908
* deps: backport b5135bbc from c-ares repoFedor Indutny2014-01-251-41/+37
| | | | | | | | | | | Original commit message: ares_parse_txt_reply: return a ares_txt_reply node for each sub-string Previously, the function would wrongly return all substrings merged into one. fix #6931
* doc: readline document TTY utilsFedor Indutny2014-01-251-0/+20
| | | | fix #6933
* doc: fix typo in readlineScott González2014-01-241-1/+1
|
* npm: Upgrade to v1.3.25isaacs2014-01-23116-335/+111
|
* test: fix http-incoming-pipelined-socket-destroyAlexis Campailla2014-01-231-7/+15
| | | | | | | | | The test was calling server.close() after write on the socket had completed. However the fact that the write had completed was not valid indication that the server had received the data. This would result in a premutaure closing of the server and an ECONNRESET event on the client.
* test: fix http-many-ended-pipelines server closeAlexis Campailla2014-01-231-4/+6
| | | | | The test was calling server.close() without waiting for the server to have received all the requests. This would cause an ECONNRESET.
* blog: Post for v0.10.25Timothy J Fontaine2014-01-231-0/+72
|
* Now working on 0.10.26Timothy J Fontaine2014-01-231-2/+2
|
* Merge branch 'v0.10.25-release' into v0.10Timothy J Fontaine2014-01-234-22/+48
|\
| * src: lint lib/net.jsv0.10.25v0.10.25-releaseTimothy J Fontaine2014-01-221-20/+21
| |
| * 2014.01.23, Version 0.10.25 (Stable)Timothy J Fontaine2014-01-223-2/+27
|/ | | | | | | | | | | | | | | | | | * uv: Upgrade to v0.10.23 * npm: Upgrade to v1.3.24 * v8: Fix enumeration for objects with lots of properties * child_process: fix spawn() optional arguments (Sam Roberts) * cluster: report more errors to workers (Fedor Indutny) * domains: exit() only affects active domains (Ryan Graham) * src: OnFatalError handler must abort() (Timothy J Fontaine) * stream: writes may return false but forget to emit drain (Yang Tianyang)
* uv: Upgrade to v0.10.23Timothy J Fontaine2014-01-228-22/+148
|
* gyp: fix non-ninja buildFedor Indutny2014-01-201-1/+1
|
* npm: Upgrade to v1.3.24isaacs2014-01-19183-5712/+1190
|
* blog: nodejs v0.12 roadmap updateTimothy J Fontaine2014-01-161-0/+52
|
* gyp: fix `ninja` build on linuxFedor Indutny2014-01-162-6/+13
| | | | fix #6679
* doc: clarify Windows signal sending emulationSam Roberts2014-01-161-4/+10
|
* child_process: fix spawn() optional argumentsSam Roberts2014-01-161-2/+10
| | | | | | | Spawn's arguments were documented to be optional, as they are for the other similar child_process APIs, but the code was missing. Result was `child_process.spawn('node', {})` errored when calling slice() on an Object, now it behaves as the documentation said it would.
* doc: describe child_process.fork() silent optionSam Roberts2014-01-161-2/+4
|
* doc: child_process.execFile arguments are optionalSam Roberts2014-01-161-1/+1
|
* domains: exit() only affects active domainsRyan Graham2014-01-152-5/+41
| | | | | | | domain.create().exit() should not clear the domain stack if the domain instance does not exist within the stack. Signed-off-by: Trevor Norris <trev.norris@gmail.com>
* blog: TJ is the new node core project leadisaacs2014-01-151-0/+54
|
* gyp: fix build with python 2.6Fedor Indutny2014-01-131-1/+2
| | | | fix #6859
* deps: update gyp to 1eae492bFedor Indutny2014-01-138-56/+113
|
* doc: streams must be open to be passed to childSam Roberts2014-01-131-1/+3
| | | | | | | | | | | | | | spawn stdio options can be a 'stream', but the following code fails with "Incorrect value for stdio stream: [object Object]", despite being a stream. The problem is the test isn't really for a stream, its for an object with a numeric `.fd` property, and streams do not have an fd until their async 'open' event has occurred. This is reasonable, but was not documented. child_process.spawn('date', [], {stdio: [ 'ignore', fs.createWriteStream('out.txt',{flags:'a'}), 'ignore']})
* test: close debug client in test-debugger-clientAlexis Campailla2014-01-131-3/+8
| | | | | Killing the debuggee without first closing the socket can result in an ECONNRESET error.
* src: return empty set on ENOSYS for interfacesTimothy J Fontaine2014-01-121-2/+5
| | | | | | | If node was compiled with --no-ifaddrs to support older operating systems, don't throw instead simply return an empty object Fixes #6846
* v8: backport codereview.chromium.org/11362182svenpanne@chromium.org2014-01-101-1/+3
| | | | | | | Keep the number of descriptors below DescriptorArray::kMaxNumberOfDescriptors even for accessors Review URL: https://codereview.chromium.org/11362182
* doc: Fix argument typo in SimpleProtocol examplegluxon2014-01-101-1/+1
|
* src: OnFatalError handler must abort()Timothy J Fontaine2014-01-092-1/+40
| | | | | | | We are in an unrecoverable state if v8 throws a FatalError, actually ask the operating system to dump core in this case. Fixes #6836
* doc: fix typo in cluster pageLorenz Leutgeb2014-01-081-1/+1
|