From 38c72d4e29574dec5205bcf23c2a85efe65331a4 Mon Sep 17 00:00:00 2001 From: isaacs Date: Thu, 11 Oct 2012 14:22:13 -0700 Subject: [PATCH] 2012.10.12, Version 0.8.12 (Stable) * npm: Upgrade to 1.1.63 * crypto: Reduce stability index to 2-Unstable (isaacs) * windows: fix handle leak in uv_fs_utime (Bert Belder) * windows: fix application crashed popup in debug version (Bert Belder) * buffer: report proper retained size in profiler (Ben Noordhuis) * buffer: fix byteLength with UTF-16LE (koichik) * repl: make "end of input" JSON.parse() errors throw in the REPL (Nathan Rajlich) * repl: make invalid RegExp modifiers throw in the REPL (Nathan Rajlich) * http: handle multiple Proxy-Authenticate values (Willi Eggeling) --- AUTHORS | 2 ++ ChangeLog | 23 ++++++++++++++++++++++- src/node_version.h | 2 +- 3 files changed, 25 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index 7f757c802b..05d4a7a484 100644 --- a/AUTHORS +++ b/AUTHORS @@ -364,3 +364,5 @@ Pooya Karimian Frédéric Germain Robin Lee Adam Blackburn +Willi Eggeling +Andrew Paprocki diff --git a/ChangeLog b/ChangeLog index f74e667341..b4cf0febb7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,25 @@ -2012.09.27, Version 0.8.11 (Stable) +2012.10.12, Version 0.8.12 (Stable) + +* npm: Upgrade to 1.1.63 + +* crypto: Reduce stability index to 2-Unstable (isaacs) + +* windows: fix handle leak in uv_fs_utime (Bert Belder) + +* windows: fix application crashed popup in debug version (Bert Belder) + +* buffer: report proper retained size in profiler (Ben Noordhuis) + +* buffer: fix byteLength with UTF-16LE (koichik) + +* repl: make "end of input" JSON.parse() errors throw in the REPL (Nathan Rajlich) + +* repl: make invalid RegExp modifiers throw in the REPL (Nathan Rajlich) + +* http: handle multiple Proxy-Authenticate values (Willi Eggeling) + + +2012.09.27, Version 0.8.11 (Stable), e1f39468fa580c1e4cb15fac621f87944ee625dc * fs: Fix stat() size reporting for large files (Ben Noordhuis) diff --git a/src/node_version.h b/src/node_version.h index a16dddb8a8..7b58a7b507 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -25,7 +25,7 @@ #define NODE_MAJOR_VERSION 0 #define NODE_MINOR_VERSION 8 #define NODE_PATCH_VERSION 12 -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)