Skip to content

Commit f98562f

Browse files
committedJul 25, 2012
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)
1 parent 7fd3cb6 commit f98562f

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed
 

‎AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -350,3 +350,4 @@ Ivan Torres <mexpolk@gmail.com>
350350
Philipp Hagemeister <phihag@phihag.de>
351351
George Shank <shankga@gmail.com>
352352
Mike Morearty <mike@morearty.com>
353+
Peter Rybin <peter.rybin@gmail.com>

‎ChangeLog

+20-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,23 @@
1-
2012.07.19, Version 0.8.3 (Stable)
1+
2012.07.25, Version 0.8.4 (Stable)
2+
3+
* V8: Upgrade to 3.11.10.17
4+
5+
* npm: Upgrade to 1.1.45
6+
7+
* net: fix Socket({ fd: 42 }) api (Ben Noordhuis)
8+
9+
* readline: Remove event listeners on close (isaacs)
10+
11+
* windows: correctly prep long path for fs.exists(Sync) (Bert Belder)
12+
13+
* debugger: wake up the event loop when a debugger command is dispatched (Peter Rybin)
14+
15+
* tls: verify server's identity (Fedor Indutny)
16+
17+
* net: ignore socket.setTimeout(Infinity or NaN) (Fedor Indutny)
18+
19+
20+
2012.07.19, Version 0.8.3 (Stable), 60bf2d6cb33e4ce55604f73889ab840a9de8bdab
221

322
* V8: upgrade to 3.11.10.15
423

‎src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#define NODE_MAJOR_VERSION 0
2626
#define NODE_MINOR_VERSION 8
2727
#define NODE_PATCH_VERSION 4
28-
#define NODE_VERSION_IS_RELEASE 0
28+
#define NODE_VERSION_IS_RELEASE 1
2929

3030
#ifndef NODE_STRINGIFY
3131
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)
Please sign in to comment.