<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/node.git, branch buf-compare-normalize</title>
<subtitle>github.com: joyent/node.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/'/>
<entry>
<title>buffer: normalize compare() output</title>
<updated>2014-04-30T22:42:39+00:00</updated>
<author>
<name>Trevor Norris</name>
<email>trev.norris@gmail.com</email>
</author>
<published>2014-04-29T21:46:58+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=51f49ddb6615432b1a6437a8c932f9d2ce2a71cf'/>
<id>51f49ddb6615432b1a6437a8c932f9d2ce2a71cf</id>
<content type='text'>
Because of differences in memcmp() implementation, normalize output to
return -1, 0 or 1 only.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Because of differences in memcmp() implementation, normalize output to
return -1, 0 or 1 only.
</pre>
</div>
</content>
</entry>
<entry>
<title>stream: split `objectMode` for Duplex</title>
<updated>2014-04-30T17:44:31+00:00</updated>
<author>
<name>Vladimir Kurchatkin</name>
<email>vladimir.kurchatkin@gmail.com</email>
</author>
<published>2014-04-15T16:44:46+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=d0fc5538d1ac769885c7e449b0d1f6759a7d4230'/>
<id>d0fc5538d1ac769885c7e449b0d1f6759a7d4230</id>
<content type='text'>
This commit introduces `readableObjectMode` and
`writableObjectMode` options for Duplex streams.
This can be used mostly to make parsers and
serializers with Transform streams.

Also the docs section about stream state objects
is removed, because it is not relevant anymore.
The example from the section is remade to show
new options.

fixes #6284

Signed-off-by: Timothy J Fontaine &lt;tjfontaine@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This commit introduces `readableObjectMode` and
`writableObjectMode` options for Duplex streams.
This can be used mostly to make parsers and
serializers with Transform streams.

Also the docs section about stream state objects
is removed, because it is not relevant anymore.
The example from the section is remade to show
new options.

fixes #6284

Signed-off-by: Timothy J Fontaine &lt;tjfontaine@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>test: update test-dns.js after a60a9b0</title>
<updated>2014-04-30T16:14:55+00:00</updated>
<author>
<name>Timothy J Fontaine</name>
<email>tjfontaine@gmail.com</email>
</author>
<published>2014-04-30T16:14:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=7b72e156655afb6b998e8fb731cc65f4facb19ee'/>
<id>7b72e156655afb6b998e8fb731cc65f4facb19ee</id>
<content type='text'>
resolveTxt now returns a 2-d array for all the chunks string chunks
relating to the record
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
resolveTxt now returns a 2-d array for all the chunks string chunks
relating to the record
</pre>
</div>
</content>
</entry>
<entry>
<title>child_process: fix assertion error in spawnSync</title>
<updated>2014-04-30T16:02:18+00:00</updated>
<author>
<name>Shigeki Ohtsu</name>
<email>ohtsu@iij.ad.jp</email>
</author>
<published>2014-04-21T16:26:11+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=ab7a3d098ddb13967014c723333c1df730da4940'/>
<id>ab7a3d098ddb13967014c723333c1df730da4940</id>
<content type='text'>
When ExitCallback was not called with an error such as ENOENT in
uv_spawn, the process handle still remains refed and needs to be closed.

Signed-off-by: Timothy J Fontaine &lt;tjfontaine@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
When ExitCallback was not called with an error such as ENOENT in
uv_spawn, the process handle still remains refed and needs to be closed.

Signed-off-by: Timothy J Fontaine &lt;tjfontaine@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>crypto: improve error messages</title>
<updated>2014-04-29T10:20:14+00:00</updated>
<author>
<name>Ingmar Runge</name>
<email>ingmar@irsoft.de</email>
</author>
<published>2014-04-22T20:03:53+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=26a1b712ec4e39cedc0b305165ce4660f47ba4d5'/>
<id>26a1b712ec4e39cedc0b305165ce4660f47ba4d5</id>
<content type='text'>
1) ThrowCryptoTypeErrors was not actually used for
   type-related errors. Removed it.
2) For AEAD modes, OpenSSL does not set any internal
   error information if Final does not complete suc-
   cessfully. Therefore, "TypeError:error:00000000:l
   ib(0):func(0):reason(0)" would be the error mess-
   age. Use a default message for these cases.

Signed-off-by: Fedor Indutny &lt;fedor@indutny.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
1) ThrowCryptoTypeErrors was not actually used for
   type-related errors. Removed it.
2) For AEAD modes, OpenSSL does not set any internal
   error information if Final does not complete suc-
   cessfully. Therefore, "TypeError:error:00000000:l
   ib(0):func(0):reason(0)" would be the error mess-
   age. Use a default message for these cases.

Signed-off-by: Fedor Indutny &lt;fedor@indutny.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>crypto: fix a couple of VC++ warnings</title>
<updated>2014-04-29T10:13:28+00:00</updated>
<author>
<name>Rasmus Christian Pedersen</name>
<email>zerhacken@yahoo.com</email>
</author>
<published>2014-04-28T12:45:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=d13e0297c362c99062ba61d9569248938b2bb72a'/>
<id>d13e0297c362c99062ba61d9569248938b2bb72a</id>
<content type='text'>
Signed-off-by: Fedor Indutny &lt;fedor@indutny.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Signed-off-by: Fedor Indutny &lt;fedor@indutny.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>buffer: add compare and equals methods</title>
<updated>2014-04-29T05:09:48+00:00</updated>
<author>
<name>Sean McArthur</name>
<email>sean.monstar@gmail.com</email>
</author>
<published>2014-03-06T18:21:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=226f98a356fb62a706bc860c36c9ebc6124d776e'/>
<id>226f98a356fb62a706bc860c36c9ebc6124d776e</id>
<content type='text'>
compare() works like String.localeCompare such that:

    Buffer.compare(a, b) === a.compare(b);

equals() does a native check to see if two buffers are equal.

Signed-off-by: Trevor Norris &lt;trev.norris@gmail.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
compare() works like String.localeCompare such that:

    Buffer.compare(a, b) === a.compare(b);

equals() does a native check to see if two buffers are equal.

Signed-off-by: Trevor Norris &lt;trev.norris@gmail.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>vm: assign Environment to created context</title>
<updated>2014-04-25T20:34:55+00:00</updated>
<author>
<name>Denys Zariaiev</name>
<email>denys.zariaiev@gmail.com</email>
</author>
<published>2014-04-25T12:06:06+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=681fe599d7a45fb537f948c08e64cdce06bc585d'/>
<id>681fe599d7a45fb537f948c08e64cdce06bc585d</id>
<content type='text'>
ContextifyContext::CreateV8Context is now create context
with Environment pointer

Signed-off-by: Fedor Indutny &lt;fedor@indutny.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
ContextifyContext::CreateV8Context is now create context
with Environment pointer

Signed-off-by: Fedor Indutny &lt;fedor@indutny.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>http: add request.flush() method</title>
<updated>2014-04-24T06:43:51+00:00</updated>
<author>
<name>Ben Noordhuis</name>
<email>info@bnoordhuis.nl</email>
</author>
<published>2014-04-09T13:02:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=bd24ab2bd788a196adaac316db20cde2c8c8e14d'/>
<id>bd24ab2bd788a196adaac316db20cde2c8c8e14d</id>
<content type='text'>
Forcibly flushes the request headers.  You need this with long-lived
HTTP connections where the first data isn't written until the connection
has been established (think: tunneling requests over HTTP CONNECT.)

Fixes #7296.

Signed-off-by: Fedor Indutny &lt;fedor@indutny.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Forcibly flushes the request headers.  You need this with long-lived
HTTP connections where the first data isn't written until the connection
has been established (think: tunneling requests over HTTP CONNECT.)

Fixes #7296.

Signed-off-by: Fedor Indutny &lt;fedor@indutny.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>deps: provide TXT chunk info in c-ares</title>
<updated>2014-04-24T06:40:35+00:00</updated>
<author>
<name>Fedor Indutny</name>
<email>fedor@indutny.com</email>
</author>
<published>2014-03-27T20:09:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=a60a9b0dbd064cd70de9400ad47421c19d29b021'/>
<id>a60a9b0dbd064cd70de9400ad47421c19d29b021</id>
<content type='text'>
Provide more information in `ares_txt_reply` to coalesce chunks from the
same record into one string.

fix #7367
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Provide more information in `ares_txt_reply` to coalesce chunks from the
same record into one string.

fix #7367
</pre>
</div>
</content>
</entry>
</feed>
