From 5809426d758af04bcd55de960081316729279838 Mon Sep 17 00:00:00 2001 From: isaacs Date: Tue, 24 Jul 2012 17:05:22 -0700 Subject: [PATCH 1/3] net.js: lint --- lib/net.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/net.js b/lib/net.js index 7fe892f65d..170c06e57a 100644 --- a/lib/net.js +++ b/lib/net.js @@ -132,12 +132,12 @@ function Socket(options) { Stream.call(this); switch (typeof options) { - case 'number': - options = { fd: options }; // Legacy interface. - break; - case 'undefined': - options = {}; - break; + case 'number': + options = { fd: options }; // Legacy interface. + break; + case 'undefined': + options = {}; + break; } if (typeof options.fd === 'undefined') { From 7fd3cb666bd2f39e675fb766a40cf83869ea232d Mon Sep 17 00:00:00 2001 From: isaacs Date: Tue, 24 Jul 2012 17:06:50 -0700 Subject: [PATCH 2/3] Build: add jslintfix --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 0e419b4c2c..5e40074b0c 100644 --- a/Makefile +++ b/Makefile @@ -261,6 +261,9 @@ bench-idle: sleep 1 ./node benchmark/idle_clients.js & +jslintfix: + PYTHONPATH=tools/closure_linter/ $(PYTHON) tools/closure_linter/closure_linter/fixjsstyle.py --strict --nojsdoc -r lib/ -r src/ --exclude_files lib/punycode.js + jslint: PYTHONPATH=tools/closure_linter/ $(PYTHON) tools/closure_linter/closure_linter/gjslint.py --unix_mode --strict --nojsdoc -r lib/ -r src/ --exclude_files lib/punycode.js From f98562fcd7d1cab573ca4dc1612157d6999befd4 Mon Sep 17 00:00:00 2001 From: isaacs Date: Tue, 24 Jul 2012 16:04:40 -0700 Subject: [PATCH 3/3] 2012.07.25, Version 0.8.4 (Stable) * V8: Upgrade to 3.11.10.17 * npm: Upgrade to 1.1.45 * net: fix Socket({ fd: 42 }) api (Ben Noordhuis) * readline: Remove event listeners on close (isaacs) * windows: correctly prep long path for fs.exists(Sync) (Bert Belder) * debugger: wake up the event loop when a debugger command is dispatched (Peter Rybin) * tls: verify server's identity (Fedor Indutny) * net: ignore socket.setTimeout(Infinity or NaN) (Fedor Indutny) --- AUTHORS | 1 + ChangeLog | 21 ++++++++++++++++++++- src/node_version.h | 2 +- 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index fcd0c1fe3d..7b8069e522 100644 --- a/AUTHORS +++ b/AUTHORS @@ -350,3 +350,4 @@ Ivan Torres Philipp Hagemeister George Shank Mike Morearty +Peter Rybin diff --git a/ChangeLog b/ChangeLog index 48633a7691..50269ce671 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,23 @@ -2012.07.19, Version 0.8.3 (Stable) +2012.07.25, Version 0.8.4 (Stable) + +* V8: Upgrade to 3.11.10.17 + +* npm: Upgrade to 1.1.45 + +* net: fix Socket({ fd: 42 }) api (Ben Noordhuis) + +* readline: Remove event listeners on close (isaacs) + +* windows: correctly prep long path for fs.exists(Sync) (Bert Belder) + +* debugger: wake up the event loop when a debugger command is dispatched (Peter Rybin) + +* tls: verify server's identity (Fedor Indutny) + +* net: ignore socket.setTimeout(Infinity or NaN) (Fedor Indutny) + + +2012.07.19, Version 0.8.3 (Stable), 60bf2d6cb33e4ce55604f73889ab840a9de8bdab * V8: upgrade to 3.11.10.15 diff --git a/src/node_version.h b/src/node_version.h index c8e8264d0b..af2936a65d 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 4 -#define NODE_VERSION_IS_RELEASE 0 +#define NODE_VERSION_IS_RELEASE 1 #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)