summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* build: readd missing installer resourcesv0.10.26v0.10.26-releaseTimothy J Fontaine2014-02-183-0/+0
| | | | This were accidentally moved during the website refactor
* 2014.02.18, Version 0.10.26 (Stable)Timothy J Fontaine2014-02-183-2/+39
| | | | | | | | | | | | | | | | | | | | | | | | | | | | * uv: Upgrade to v0.10.25 (Timothy J Fontaine) * npm: upgrade to 1.4.3 (isaacs) * v8: support compiling with VS2013 (Fedor Indutny) * cares: backport TXT parsing fix (Fedor Indutny) * crypto: throw on SignFinal failure (Fedor Indutny) * crypto: update root certificates (Ben Noordhuis) * debugger: Fix breakpoint not showing after restart (Farid Neshat) * fs: make unwatchFile() insensitive to path (iamdoron) * net: do not re-emit stream errors (Fedor Indutny) * net: make Socket destroy() re-entrance safe (Jun Ma) * net: reset `endEmitted` on reconnect (Fedor Indutny) * node: do not close stdio implicitly (Fedor Indutny) * zlib: avoid assertion in close (Fedor Indutny)
* docs: clarify process.stdin and old modeAnton Khlynovskiy2014-02-181-5/+17
|
* doc: stdout blocking or non-blocking behaviourPedro Ballesteros2014-02-181-6/+14
| | | | | Makes clear that the behaviour of stdout is blocking in Linux/Unix even when they refer to pipes.
* test: make test-net-error-twice less raceyTimothy J Fontaine2014-02-181-2/+5
|
* uv: Upgrade to v0.10.25Timothy J Fontaine2014-02-1811-13/+143
|
* doc: mention objectMode for Writable streamsRaynos2014-02-181-0/+3
|
* debugger: Fix breakpoint not showing after restartFarid Neshat2014-02-172-3/+13
| | | | | | | | | | The reason this wasn't working was because after restart, when restoring breakpoints the scripts wasn't loaded, so the breakpoint.script was undefined. As a fix I added another check to use breakpoint.scriptReq instead of breakpoint.script, which is the same except when the breakpoint is a function. fixes #7027
* npm: upgrade to 1.4.3isaacs2014-02-17175-609/+1556
|
* zlib: introduce pending close stateFedor Indutny2014-02-182-1/+52
| | | | | | zlib should not crash in `close()` if the write is still in progress. fix #7101
* doc: re-add node.1 man pageTimothy J Fontaine2014-02-141-0/+448
| | | | | | | The man page was accidentally removed in 37376de for the website refactor, bring it back. Fixes #7117
* npm: Upgrade to v1.4.0isaacs2014-02-13176-2139/+1261
| | | | | | | - Removes 'npm publish -f' - Documentation - Bug-fixes - Update license etc to refer to npm, Inc. rather than @isaacs personally
* website: move website to joyent/node-websiteTimothy J Fontaine2014-02-13333-24345/+4
| | | | | The website will no longer be living in the source repository instead it can be found at http://github.com/joyent/node-website
* doc: changed timer id to objectChristian2014-02-131-6/+6
| | | | fix #7074
* net: do not re-emit stream errorsFedor Indutny2014-02-103-3/+56
| | | | fix #7015
* src: refactor buffer bounds checkingTimothy J Fontaine2014-02-085-9/+23
| | | | | Consolidate buffer bounds checking logic into Buffer namespace and use it consistently throughout the source.
* 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
|