Skip to content
This repository was archived by the owner on Apr 22, 2023. It is now read-only.

Commit 50b4c90

Browse files
committed
2013.08.16, Version 0.10.16 (Stable)
* v8: back-port fix for CVE-2013-2882 * npm: Upgrade to 1.3.8 * crypto: fix assert() on malformed hex input (Ben Noordhuis) * crypto: fix memory leak in randomBytes() error path (Ben Noordhuis) * events: fix memory leak, don't leak event names (Ben Noordhuis) * http: Handle hex/base64 encodings properly (isaacs) * http: improve chunked res.write(buf) performance (Ben Noordhuis) * stream: Fix double pipe error emit (Eran Hammer)
1 parent 5abdef7 commit 50b4c90

File tree

3 files changed

+24
-1
lines changed

3 files changed

+24
-1
lines changed

AUTHORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -457,3 +457,7 @@ Veres Lajos <vlajos@gmail.com>
457457
Yuan Chuan <yuanchuan23@gmail.com>
458458
Peter Rust <peter@cornerstonenw.com>
459459
Shuan Wang <shuanwang@gmail.com>
460+
Andrew Chilton <andychilton@gmail.com>
461+
Wyatt Preul <wpreul@gmail.com>
462+
Forrest L Norvell <ogd@aoaioxxysz.net>
463+
Eran Hammer <eran@hueniverse.com>

ChangeLog

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
2013.08.16, Version 0.10.16 (Stable)
2+
3+
* v8: back-port fix for CVE-2013-2882
4+
5+
* npm: Upgrade to 1.3.8
6+
7+
* crypto: fix assert() on malformed hex input (Ben Noordhuis)
8+
9+
* crypto: fix memory leak in randomBytes() error path (Ben Noordhuis)
10+
11+
* events: fix memory leak, don't leak event names (Ben Noordhuis)
12+
13+
* http: Handle hex/base64 encodings properly (isaacs)
14+
15+
* http: improve chunked res.write(buf) performance (Ben Noordhuis)
16+
17+
* stream: Fix double pipe error emit (Eran Hammer)
18+
19+
120
2013.07.25, Version 0.10.15 (Stable)
221

322
* src: fix process.getuid() return value (Ben Noordhuis)

src/node_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#define NODE_MINOR_VERSION 10
2727
#define NODE_PATCH_VERSION 16
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)