From 89223ae860fe1df0e1394d1df4782e1b5708a23f Mon Sep 17 00:00:00 2001 From: Timothy J Fontaine Date: Thu, 1 May 2014 16:06:44 -0700 Subject: [PATCH] 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) --- AUTHORS | 12 +++++++++++ ChangeLog | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++++- src/node_version.h | 2 +- 3 files changed, 71 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index cea8eb1..a42355f 100644 --- a/AUTHORS +++ b/AUTHORS @@ -541,3 +541,15 @@ Yuriy Nemtsov Josh Dague Goh Yisheng (Andrew) William Bert +James Pickard +Andrew Low +Nick Apperson +C. Scott Ananian +Yuki KAN +Evan Carroll +goussardg +Geir Hauge +Farrin Reid +Denys Zariaiev +Sean McArthur +Rasmus Christian Pedersen diff --git a/ChangeLog b/ChangeLog index 8b123c0..dfb6b53 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,61 @@ -2014.03.11, Version 0.11.12 (Unstable) +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) + + +2014.03.11, Version 0.11.12 (Unstable), 7d6b8db40f32e817ff145b7cfe6b3aec3179fba7 * uv: Upgrade to v0.11.22 (Timothy J Fontaine) diff --git a/src/node_version.h b/src/node_version.h index ff26812..ec2bbea 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -26,7 +26,7 @@ #define NODE_MINOR_VERSION 11 #define NODE_PATCH_VERSION 13 -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_TAG # define NODE_TAG "" -- 2.7.4