Skip to content

Commit 89223ae

Browse files
committed
2014.05.01, Version 0.11.13 (Unstable)
* v8: upgrade to 3.24.35.22 * buffer: add compare and equals methods (Sean McArthur) * buffer: improve {read,write}{U}Int* methods (Nick Apperson) * buffer: return uint if MSB is 1 in readUInt32 (goussardg) * buffer: truncate buffer after string decode (Fedor Indutny) * child_process: fix assertion error in spawnSync (Shigeki Ohtsu) * crypto: fix memory leak in CipherBase::Final (Fedor Indutny) * crypto: improve error messages (Ingmar Runge) * crypto: move `createCredentials` to tls (Fedor Indutny) * crypto: work around OpenSSL oddness (Fedor Indutny) * dgram: introduce `reuseAddr` option (Fedor Indutny) * domain: don't crash on "throw null" (Alex Kocharin) * events: check if _events is an own property (Vladimir Kurchatkin) * fs: improve performance of all stat functions (James Pickard) * fs: return blksize on stats object (Trevor Norris) * http: add request.flush() method (Ben Noordhuis) * http: better client "protocol not supported" error (Nathan Rajlich) * http: use defaultAgent.protocol in protocol check (Nathan Rajlich) * main: Handle SIGINT properly. (Geir Hauge) * net: bind to `::` TCP address by default (Fedor Indutny) * readline: consider newlines for cursor position (Yazhong Liu) * stream: split `objectMode` for Duplex (Vladimir Kurchatkin) * tls: `getPeerCertificate(detailed)` (Fedor Indutny) * tls: do not call SNICallback unless present (Fedor Indutny) * tls: force readable/writable to `true` (Fedor Indutny) * tls: support OCSP on client and server (Fedor Indutny) * util: made util.isArray a direct alias for Array.isArray (Evan Carroll)
1 parent 8637a40 commit 89223ae

File tree

3 files changed

+71
-2
lines changed

3 files changed

+71
-2
lines changed

AUTHORS

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -541,3 +541,15 @@ Yuriy Nemtsov <[email protected]>
541541
Josh Dague <[email protected]>
542542
Goh Yisheng (Andrew) <[email protected]>
543543
William Bert <[email protected]>
544+
James Pickard <[email protected]>
545+
Andrew Low <[email protected]>
546+
Nick Apperson <[email protected]>
547+
C. Scott Ananian <[email protected]>
548+
549+
Evan Carroll <[email protected]>
550+
goussardg <[email protected]>
551+
Geir Hauge <[email protected]>
552+
Farrin Reid <[email protected]>
553+
Denys Zariaiev <[email protected]>
554+
Sean McArthur <[email protected]>
555+
Rasmus Christian Pedersen <[email protected]>

ChangeLog

Lines changed: 58 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,61 @@
1-
2014.03.11, Version 0.11.12 (Unstable)
1+
2014.05.01, Version 0.11.13 (Unstable)
2+
3+
* v8: upgrade to 3.24.35.22
4+
5+
* buffer: add compare and equals methods (Sean McArthur)
6+
7+
* buffer: improve {read,write}{U}Int* methods (Nick Apperson)
8+
9+
* buffer: return uint if MSB is 1 in readUInt32 (goussardg)
10+
11+
* buffer: truncate buffer after string decode (Fedor Indutny)
12+
13+
* child_process: fix assertion error in spawnSync (Shigeki Ohtsu)
14+
15+
* crypto: fix memory leak in CipherBase::Final (Fedor Indutny)
16+
17+
* crypto: improve error messages (Ingmar Runge)
18+
19+
* crypto: move `createCredentials` to tls (Fedor Indutny)
20+
21+
* crypto: work around OpenSSL oddness (Fedor Indutny)
22+
23+
* dgram: introduce `reuseAddr` option (Fedor Indutny)
24+
25+
* domain: don't crash on "throw null" (Alex Kocharin)
26+
27+
* events: check if _events is an own property (Vladimir Kurchatkin)
28+
29+
* fs: improve performance of all stat functions (James Pickard)
30+
31+
* fs: return blksize on stats object (Trevor Norris)
32+
33+
* http: add request.flush() method (Ben Noordhuis)
34+
35+
* http: better client "protocol not supported" error (Nathan Rajlich)
36+
37+
* http: use defaultAgent.protocol in protocol check (Nathan Rajlich)
38+
39+
* main: Handle SIGINT properly. (Geir Hauge)
40+
41+
* net: bind to `::` TCP address by default (Fedor Indutny)
42+
43+
* readline: consider newlines for cursor position (Yazhong Liu)
44+
45+
* stream: split `objectMode` for Duplex (Vladimir Kurchatkin)
46+
47+
* tls: `getPeerCertificate(detailed)` (Fedor Indutny)
48+
49+
* tls: do not call SNICallback unless present (Fedor Indutny)
50+
51+
* tls: force readable/writable to `true` (Fedor Indutny)
52+
53+
* tls: support OCSP on client and server (Fedor Indutny)
54+
55+
* util: made util.isArray a direct alias for Array.isArray (Evan Carroll)
56+
57+
58+
2014.03.11, Version 0.11.12 (Unstable), 7d6b8db40f32e817ff145b7cfe6b3aec3179fba7
259

360
* uv: Upgrade to v0.11.22 (Timothy J Fontaine)
461

src/node_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#define NODE_MINOR_VERSION 11
2727
#define NODE_PATCH_VERSION 13
2828

29-
#define NODE_VERSION_IS_RELEASE 0
29+
#define NODE_VERSION_IS_RELEASE 1
3030

3131
#ifndef NODE_TAG
3232
# define NODE_TAG ""

0 commit comments

Comments
 (0)