Skip to content

Commit 7fabdc2

Browse files
committedAug 19, 2014
2014.08.19, Version 0.10.31 (Stable)
* v8: backport CVE-2013-6668 * openssl: Update to v1.0.1i * npm: Update to v1.4.23 * cluster: disconnect should not be synchronous (Sam Roberts) * fs: fix fs.readFileSync fd leak when get RangeError (Jackson Tian) * stream: fix Readable.wrap objectMode falsy values (James Halliday) * timers: fix timers with non-integer delay hanging. (Julien Gilli)
1 parent 6a11bfe commit 7fabdc2

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
lines changed
 

‎AUTHORS

+4
Original file line numberDiff line numberDiff line change
@@ -509,3 +509,7 @@ Oguz Bastemur <obastemur@gmail.com>
509509
Maurice Butler <maurice.butler@gmail.com>
510510
Chris Dickinson <christopher.s.dickinson@gmail.com>
511511
Julien Gilli <julien.gilli@joyent.com>
512+
Jakob Gillich <jakob@gillich.me>
513+
James Halliday <mail@substack.net>
514+
Kevin Simper <kevin.simper@gmail.com>
515+
Jackson Tian <shyvo1987@gmail.com>

‎ChangeLog

+18-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,21 @@
1-
2014.07.31, Version 0.10.30 (Stable)
1+
2014.08.19, Version 0.10.31 (Stable)
2+
3+
* v8: backport CVE-2013-6668
4+
5+
* openssl: Update to v1.0.1i
6+
7+
* npm: Update to v1.4.23
8+
9+
* cluster: disconnect should not be synchronous (Sam Roberts)
10+
11+
* fs: fix fs.readFileSync fd leak when get RangeError (Jackson Tian)
12+
13+
* stream: fix Readable.wrap objectMode falsy values (James Halliday)
14+
15+
* timers: fix timers with non-integer delay hanging. (Julien Gilli)
16+
17+
18+
2014.07.31, Version 0.10.30 (Stable), bc0ff830aff1e016163d855e86ded5c98b0899e8
219

320
* uv: Upgrade to v0.10.28
421

‎src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#define NODE_MINOR_VERSION 10
2727
#define NODE_PATCH_VERSION 31
2828

29-
#define NODE_VERSION_IS_RELEASE 0
29+
#define NODE_VERSION_IS_RELEASE 1
3030

3131
#ifndef NODE_TAG
3232
# define NODE_TAG ""

0 commit comments

Comments
 (0)
Please sign in to comment.