Timothy J Fontaine
d7234c8d50
2013.09.30, Version 0.10.20 (Stable)
...
* tls: fix sporadic hang and partial reads (Fedor Indutny)
- fixes "npm ERR! cb() never called!"
v0.10.20
2013-09-30 13:52:48 -07:00
Ben Noordhuis
994ce4c99f
src: turn uv_pipe_open() failures into exceptions
...
uv_pipe_open() is unlikely to fail but when it does, the failure should
not be quietly ignored. Raise the error as an exception.
See joyent/libuv#941 .
2013-09-28 10:35:57 +02:00
Fedor Indutny
671b5be6e9
tls: fix sporadic hang and partial reads
...
Do not decrement size in read loop, its used later, when comparing to
`bytesRead`.
fix #6270
NOTE: Original patch contributed by @roadrunner2
2013-09-27 23:47:13 +04:00
Timothy J Fontaine
cfa03ad2e3
blog: add missing shasums for v0.10.19 release
2013-09-24 15:16:44 -07:00
Timothy J Fontaine
9135c7fea8
blog: Post for v0.10.19
2013-09-24 15:10:22 -07:00
Timothy J Fontaine
093efafce3
Now working on 0.10.20
2013-09-24 15:10:22 -07:00
Timothy J Fontaine
cb150406c8
Merge branch 'v0.10.19-release' into v0.10
2013-09-24 15:10:10 -07:00
Timothy J Fontaine
6b5e6a5a3e
2013.09.24, Version 0.10.19 (Stable)
...
* uv: Upgrade to v0.10.17
* npm: upgrade to 1.3.11
* readline: handle input starting with control chars (Eric Schrock)
* configure: add mips-float-abi (soft, hard) option (Andrei Sedoi)
* stream: objectMode transforms allow falsey values (isaacs)
* tls: prevent duplicate values returned from read (Nathan Rajlich)
* tls: NPN protocols are now local to connections (Fedor Indutny)
v0.10.19
2013-09-24 14:10:33 -07:00
Timothy J Fontaine
55546f55d4
uv: Upgrade to v0.10.17
2013-09-24 13:46:19 -07:00
Eric Schrock
35ae696822
readline: handle input starting with control chars
...
Handle control characters only when there is a single byte in the
stream, otherwise fall through to the standard multibyte handling.
2013-09-23 14:22:37 -07:00
Ben Noordhuis
7c554a5cd0
doc: document reserved status of SIGUSR1
...
Fixes #1212 .
2013-09-19 12:31:52 +02:00
Nathan Rajlich
5bda2bed37
doc: fix typos in the tls NPNProtocols
option
2013-09-16 13:57:34 -07:00
Nathan Rajlich
afabdf0e15
doc: specify the format of the ca
tls option
2013-09-16 13:57:00 -07:00
Nathan Rajlich
7196742852
tls: don't push() incoming data when ondata is set
...
Otherwise the data ends up "on the wire" twice, and
switching between consuming the stream using `ondata`
vs. `read()` would yield duplicate data, which was bad.
2013-09-13 10:08:35 -07:00
Ben Noordhuis
9fad8e5dc4
doc: fix blog link in blog posts and README
...
Apparently Joyent decommissioned joyeur.com but at least they saved the
contents of the blog. Update the links in the README and the nodejs.org
blog posts.
Hat tip to Eugen Pirogoff (@eugenpirogoff) for pointing it out.
Fixes #6224 .
2013-09-13 14:55:08 +02:00
Fedor Indutny
1c3863abfd
tls: fix setting NPN protocols
...
The NPN protocols was set on `require('tls')` or `global` object instead
of being a local property. This fact lead to strange persistence of NPN
protocols, and sometimes incorrect protocol selection (when no NPN
protocols were passed in client options).
fix #6168
2013-09-09 18:18:05 +04:00
Andrei Sedoi
3546825b14
configure: add mips-float-abi (soft, hard) option
2013-09-07 22:25:50 +02:00
isaacs
ebeae2df51
npm: upgrade to 1.3.11
2013-09-07 14:31:04 -05:00
isaacs
1be09dfc25
npm: upgrade to v1.3.10
2013-09-05 17:13:50 -07:00
isaacs
1da7bcc22c
stream: objectMode transforms allow falsey values
...
Closes #6183
2013-09-05 13:19:23 -07:00
Bert Belder
6301613ff5
uv: upgrade to v0.10.16
2013-09-05 16:50:47 +02:00
Timothy J Fontaine
8b05206665
blog: Post for v0.11.7
2013-09-04 15:27:06 -07:00
Timothy J Fontaine
9c19c1e19c
blog: Post for v0.10.18
2013-09-04 11:25:19 -07:00
Timothy J Fontaine
65ed79a6dc
Now working on 0.10.19
2013-09-04 11:25:19 -07:00
Timothy J Fontaine
86d881f888
Merge branch 'v0.10.18-release' into v0.10
2013-09-04 11:25:04 -07:00
Timothy J Fontaine
67a1f0c52e
2013.09.04, Version 0.10.18 (Stable)
...
* uv: Upgrade to v0.10.15
* stream: Don't crash on unset _events property (isaacs)
* stream: Pass 'buffer' encoding with decoded writable chunks (isaacs)
v0.10.18
2013-09-04 10:51:53 -07:00
Kyle Robinson Young
95794641d2
doc: fix writable.write link
2013-09-04 10:25:51 +02:00
isaacs
00a1d3633c
benchmark: Fix execArgv handling
...
Bug in 01f3b46 causes the same benchmark to be run repeatedly.
Not so useful for the compare scripts.
2013-08-31 17:58:17 -07:00
isaacs
01f3b468a9
benchmark: Support passing v8 flags to benchmarks
...
The better to test --use-strict effects on performance.
(Spoiler: it has no measurable effect on performance.)
2013-08-31 10:36:44 -07:00
isaacs
fbb963b5d5
stream: check _events before _events.error
...
This fixes the regression introduced by 5458079, which breaks the
net/net-pipe benchmark script.
Closes #6145
2013-08-28 09:35:39 -07:00
isaacs
02eb9c834a
doc: Adjust util stability index to 'API Frozen'
...
Closes #6087
2013-08-27 19:52:49 -07:00
isaacs
a3da3e7312
stream: Pass 'buffer' encoding to decoded writables
...
Since the encoding is no longer relevant once it is decoded to a Buffer,
it is confusing and incorrect to pass the encoding as 'utf8' or whatever
in those cases.
Closes #6119
2013-08-27 14:53:06 -07:00
Bert Belder
5508236c49
uv: update to v0.10.15
2013-08-23 19:02:14 +02:00
Timothy J Fontaine
3f1dba18b2
tools: script release steps after jenkins build
2013-08-21 16:59:15 -07:00
Timothy J Fontaine
92e4375173
tools: script to report [un]stable build
2013-08-21 16:55:27 -07:00
Timothy J Fontaine
1d27987dab
blog: Post for v0.10.17
2013-08-21 16:38:30 -07:00
Timothy J Fontaine
3c66b15789
Now working on 0.10.18
2013-08-21 16:37:43 -07:00
Timothy J Fontaine
fcf180327b
Merge branch 'v0.10.17-release' into v0.10
2013-08-21 16:37:31 -07:00
Timothy J Fontaine
469a4a5091
2013.08.21, Version 0.10.17 (Stable)
...
* uv: Upgrade v0.10.14
* http_parser: Do not accept PUN/GEM methods as PUT/GET (Chris Dickinson)
* tls: fix assertion when ssl is destroyed at read (Fedor Indutny)
* stream: Throw on 'error' if listeners removed (isaacs)
* dgram: fix assertion on bad send() arguments (Ben Noordhuis)
* readline: pause stdin before turning off terminal raw mode (Daniel Chatfield)
v0.10.17
2013-08-21 15:00:56 -07:00
Timothy J Fontaine
e445fbda1f
uv: Upgrade v0.10.14
2013-08-21 14:44:20 -07:00
Timothy J Fontaine
985695e4d6
blog: v0.11.6
2013-08-21 14:26:32 -07:00
isaacs
8a9434c4ef
doc: Mention python dep in downloads page
...
Closes #3604
2013-08-21 11:11:02 -07:00
Ben Noordhuis
8d42c6344b
deps: upgrade http_parser to 303c4e4
...
Upgrade to joyent/http-parser@303c4e4 . Changes:
* Do not accept PUN/GEM methods as PUT/GET.
* Further request method check strengthening.
2013-08-21 03:40:43 +02:00
Fedor Indutny
af6a2339c5
tls: fix assertion when ssl is destroyed at read
...
`maybeInitFinished()` can emit the 'secure' event which
in turn destroys the connection in case of authentication
failure and sets `this.pair.ssl` to `null`.
If such condition appeared after non-empty read - loop will continue
and `clearOut` will be called on `null` object instead of
`crypto::Connection` instance. Resulting in the following assertion:
ERROR: Error: Hostname/IP doesn't match certificate's altnames
Assertion failed: handle->InternalFieldCount() > 0
fix #5756
2013-08-21 16:15:08 +04:00
Gil Pedersen
e04c8a8ee4
fs: use correct self reference for autoClose test
2013-08-20 17:10:18 +02:00
isaacs
26a8c0c6b8
doc: Minor typos in dgram doc
...
a/an usage. Thanks @KenanSulayman
2013-08-19 17:55:58 -07:00
Duan Yao
9456cf8fe2
doc: Add callback parameter to dgram socket.bind()
...
Also, describe more details of bind().
2013-08-19 16:33:38 -07:00
ChrisWren
2385fbbc3a
doc: fixed syntax error in stream.Transform
2013-08-19 16:10:05 -07:00
Edward Hutchins
31a27ca72d
Added documentation for process.execArgv
2013-08-19 15:53:09 -07:00
Eivind Uggedal
732f8b9641
doc: add missing word in Transform stream intro
2013-08-19 15:45:35 -07:00