Fedor Indutny
e0c5302590
installer: copy `node.d` only with node_use_dtrace
11 years ago
Fedor Indutny
a6f89ccd76
dtrace: workaround linker bug on FreeBSD
11 years ago
Fedor Indutny
b7776fb192
configure: allow --with-dtrace on freebsd
11 years ago
Fedor Indutny
b940e0fd86
gyp: specialize node.d for freebsd
`node.d` should use `psinfo.d` instead of `procfs.d` and have statically
defined architecture on FreeBSD.
11 years ago
Timothy J Fontaine
085db9dd6c
tools: update to support separate website repo
11 years ago
Timothy J Fontaine
ae418f974d
Now working on v0.10.27
11 years ago
Timothy J Fontaine
0206925b0d
Merge branch 'v0.10.26-release' into v0.10
11 years ago
Timothy J Fontaine
cc56c62ed8
build: readd missing installer resources
This were accidentally moved during the website refactor
11 years ago
Timothy J Fontaine
31c510ca88
2014.02.18, Version 0.10.26 (Stable)
* 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)
11 years ago
Anton Khlynovskiy
1fa5cff4f2
docs: clarify process.stdin and old mode
12 years ago
Pedro Ballesteros
1d734a75b5
doc: stdout blocking or non-blocking behaviour
Makes clear that the behaviour of stdout is blocking
in Linux/Unix even when they refer to pipes.
11 years ago
Timothy J Fontaine
3e6e63406d
test: make test-net-error-twice less racey
11 years ago
Timothy J Fontaine
c2aea3747d
uv: Upgrade to v0.10.25
11 years ago
Raynos
abbde2fafa
doc: mention objectMode for Writable streams
12 years ago
Farid Neshat
562b015170
debugger: Fix breakpoint not showing after restart
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
11 years ago
isaacs
217bb0c964
npm: upgrade to 1.4.3
11 years ago
Fedor Indutny
829a9b8cba
zlib: introduce pending close state
zlib should not crash in `close()` if the write is still in progress.
fix #7101
11 years ago
Timothy J Fontaine
86b8d84811
doc: re-add node.1 man page
The man page was accidentally removed in 37376de
for the website
refactor, bring it back.
Fixes #7117
11 years ago
isaacs
55543d3c45
npm: Upgrade to v1.4.0
- Removes 'npm publish -f'
- Documentation
- Bug-fixes
- Update license etc to refer to npm, Inc. rather than @isaacs personally
11 years ago
Timothy J Fontaine
37376debe5
website: move website to joyent/node-website
The website will no longer be living in the source repository instead
it can be found at http://github.com/joyent/node-website
11 years ago
Christian
b222374b07
doc: changed timer id to object
fix #7074
11 years ago
Fedor Indutny
dee5270a6c
net: do not re-emit stream errors
fix #7015
11 years ago
Timothy J Fontaine
5c832e44c3
src: refactor buffer bounds checking
Consolidate buffer bounds checking logic into Buffer namespace and use
it consistently throughout the source.
11 years ago
isaacs
2e8bb57fe3
npm: upgrade to 1.3.26
11 years ago
Brian White
3595139b51
doc: fix diffieHellman.getGenerator() description
11 years ago
Fedor Indutny
d10a68736d
Revert "dns: validate arguments in resolve"
This reverts commit 56e80a37e0
.
11 years ago
Fedor Indutny
96379f83e0
Revert "dns: verify argument is valid function in resolve"
This reverts commit 2ee86c624e
.
11 years ago
Kenan Sulayman
2ee86c624e
dns: verify argument is valid function in resolve
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)").
11 years ago
Kenan Sulayman
56e80a37e0
dns: validate arguments in resolve
Mitigat C++-land assertion error, add test accordingly.
fix #7070
11 years ago
Timothy J Fontaine
e3d8359021
website: update cla email address
11 years ago
iamdoron
1317032c97
fs: make unwatchFile() insensitive to path
11 years ago
Benjamin Waters
d2147c55c2
doc: fix references to error keyword
References for err.signal and err.code should be error.signal and
error.code.
Fixes joyent/node#6862
11 years ago
Ben Noordhuis
09c51d5e40
crypto: update root certificates
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 .
12 years ago
Maxime Quandalle
154d9d2163
doc: add an example about multiple extensions
`path.extname` returns only the last extension
11 years ago
Fedor Indutny
643a7d8c16
dtrace: fix arguments warning
Add enough arguments to `NODE_NET_SOCKET_READ()` and
`NODE_NET_SOCKET_WRITE()` stubs.
11 years ago
Fedor Indutny
fac8f396cc
deps: backport 883637bd from latest v8
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.
11 years ago
Fedor Indutny
e796e11087
node: do not ever close stdio
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.
11 years ago
Timothy J Fontaine
a98d541733
blog: Post for v0.11.11
11 years ago
Wyatt Preul
8c05570258
docs: clarify origin in agent.maxSockets section
12 years ago
Jun Ma
d2de8ba34d
net: make Socket destroy() re-entrance safe
So that we are free to call socket.destroy() in error event handler.
fix #6769
11 years ago
Fedor Indutny
b4c4e0bbaa
crypto: throw on SignFinal failure
fix #6963
11 years ago
Fedor Indutny
00efcb4cd7
net: reset `endEmitted` on reconnect
fix #6908
11 years ago
Fedor Indutny
896e19330a
deps: backport b5135bbc from c-ares repo
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
11 years ago
Fedor Indutny
0ec3770767
doc: readline document TTY utils
fix #6933
11 years ago
Scott González
9975ff603b
doc: fix typo in readline
11 years ago
isaacs
485fcf9c63
npm: Upgrade to v1.3.25
11 years ago
Alexis Campailla
42cd468901
test: fix http-incoming-pipelined-socket-destroy
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.
11 years ago
Alexis Campailla
5d4f4ee310
test: fix http-many-ended-pipelines server close
The test was calling server.close() without waiting for the server
to have received all the requests. This would cause an ECONNRESET.
11 years ago
Timothy J Fontaine
5aebc73525
blog: Post for v0.10.25
11 years ago
Timothy J Fontaine
eb7c7be7da
Now working on 0.10.26
11 years ago