From abf37c1e6655be89afaf5822108ca6dcf0f99096 Mon Sep 17 00:00:00 2001 From: isaacs Date: Wed, 24 Oct 2012 09:21:39 -0700 Subject: [PATCH 1/2] V8 build: 'echo -n' considered harmful --- deps/v8/build/common.gypi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deps/v8/build/common.gypi b/deps/v8/build/common.gypi index f4e63ea5d7e..45b6b482063 100644 --- a/deps/v8/build/common.gypi +++ b/deps/v8/build/common.gypi @@ -291,7 +291,7 @@ 'target_conditions': [ ['_toolset=="host"', { 'variables': { - 'm32flag': ' /dev/null 2>&1) && echo -n "-m32" || true)', + 'm32flag': ' /dev/null 2>&1) && echo "-m32" || true)', }, 'cflags': [ '<(m32flag)' ], 'ldflags': [ '<(m32flag)' ], @@ -301,7 +301,7 @@ }], ['_toolset=="target"', { 'variables': { - 'm32flag': ' /dev/null 2>&1) && echo -n "-m32" || true)', + 'm32flag': ' /dev/null 2>&1) && echo "-m32" || true)', }, 'cflags': [ '<(m32flag)' ], 'ldflags': [ '<(m32flag)' ], From 1ed4c6776e4f52956918b70565502e0f8869829d Mon Sep 17 00:00:00 2001 From: isaacs Date: Tue, 23 Oct 2012 12:08:59 -0700 Subject: [PATCH 2/2] 2012.10.24, Version 0.9.3 (Unstable) * V8: Upgrade to 3.13.7.4 * crypto: Default to buffers instead of binary strings (isaacs, Fedor Indutny) * crypto: add getHashes() and getCiphers() (Ben Noordhuis) * unix: add custom thread pool, remove libeio (Ben Noordhuis) * util: make `inspect()` accept an "options" argument (Nathan Rajlich) * https: fix renegotation attack protection (Ben Noordhuis) * cluster: make 'listening' handler see actual port (Aaditya Bhatia) * windows: use USERPROFILE to get the user's home dir (Bert Belder) * path: add platform specific path delimiter (Paul Serby) * http: add response.headersSent property (Pavel Lang) * child_process: make .fork()'d child auto-exit (Ben Noordhuis) * events: add 'removeListener' event (Ben Noordhuis) * string_decoder: Add 'end' method, do base64 properly (isaacs) * buffer: include encoding value in exception when invalid (Ricky Ng-Adam) * http: make http.ServerResponse no longer emit 'end' (isaacs) * streams: fix pipe is destructed by 'end' from destination (koichik) --- AUTHORS | 2 ++ ChangeLog | 35 +++++++++++++++++++++++++++++++++++ src/node_version.h | 2 +- 3 files changed, 38 insertions(+), 1 deletion(-) diff --git a/AUTHORS b/AUTHORS index 5ded3147f67..4d06908d216 100644 --- a/AUTHORS +++ b/AUTHORS @@ -376,3 +376,5 @@ Paul Serby Andrew Paprocki Ricky Ng-Adam Aaditya Bhatia +Max Ogden +Igor Soarez diff --git a/ChangeLog b/ChangeLog index feda2aa8ebd..f0751178869 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,38 @@ +2012.10.24, Version 0.9.3 (Unstable) + +* V8: Upgrade to 3.13.7.4 + +* crypto: Default to buffers instead of binary strings (isaacs, Fedor Indutny) + +* crypto: add getHashes() and getCiphers() (Ben Noordhuis) + +* unix: add custom thread pool, remove libeio (Ben Noordhuis) + +* util: make `inspect()` accept an "options" argument (Nathan Rajlich) + +* https: fix renegotation attack protection (Ben Noordhuis) + +* cluster: make 'listening' handler see actual port (Aaditya Bhatia) + +* windows: use USERPROFILE to get the user's home dir (Bert Belder) + +* path: add platform specific path delimiter (Paul Serby) + +* http: add response.headersSent property (Pavel Lang) + +* child_process: make .fork()'d child auto-exit (Ben Noordhuis) + +* events: add 'removeListener' event (Ben Noordhuis) + +* string_decoder: Add 'end' method, do base64 properly (isaacs) + +* buffer: include encoding value in exception when invalid (Ricky Ng-Adam) + +* http: make http.ServerResponse no longer emit 'end' (isaacs) + +* streams: fix pipe is destructed by 'end' from destination (koichik) + + 2012.09.17, Version 0.9.2 (Unstable) * http_parser: upgrade to ad3b631 diff --git a/src/node_version.h b/src/node_version.h index 0072f6720ce..cf79c684edf 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -25,7 +25,7 @@ #define NODE_MAJOR_VERSION 0 #define NODE_MINOR_VERSION 9 #define NODE_PATCH_VERSION 3 -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)