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

Commit ce82d6b

Browse files
committed
2014.06.05, Version 0.10.29 (Stable)
* openssl: to 1.0.1h (CVE-2014-0224) * npm: upgrade to 1.4.10 * utf8: Prevent Node from sending invalid UTF-8 (Felix Geisendörfer) - *NOTE* this introduces a breaking change, previously you could construct invalid UTF-8 and invoke an error in a client that was expecting valid UTF-8, now unmatched surrogate pairs are replaced with the unknown UTF-8 character. To restore the old functionality simply have NODE_INVALID_UTF8 environment variable set. * child_process: do not set args before throwing (Greg Sabia Tucker) * child_process: spawn() does not throw TypeError (Greg Sabia Tucker) * constants: export O_NONBLOCK (Fedor Indutny) * crypto: improve memory usage (Alexis Campailla) * fs: close file if fstat() fails in readFile() (cjihrig) * lib: name EventEmitter prototype methods (Ben Noordhuis) * tls: fix performance issue (Alexis Campailla)
1 parent 7fd5a4d commit ce82d6b

File tree

3 files changed

+34
-2
lines changed

3 files changed

+34
-2
lines changed

AUTHORS

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -500,3 +500,7 @@ Shuhei Kagawa <shuhei.kagawa@gmail.com>
500500
Josh Dague <daguej@email.uc.edu>
501501
Goh Yisheng (Andrew) <mail.yisheng@gmail.com>
502502
William Bert <william@spanishdict.com>
503+
Greg Sabia Tucker <greg@narrowlabs.com>
504+
Calvin Metcalf <calvin.metcalf@gmail.com>
505+
cjihrig <cjihrig@gmail.com>
506+
Chris Barber <chris@cb1inc.com>

ChangeLog

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,32 @@
1-
2014.05.01, Version 0.10.28 (Stable)
1+
2014.06.05, Version 0.10.29 (Stable)
2+
3+
* openssl: to 1.0.1h (CVE-2014-0224)
4+
5+
* npm: upgrade to 1.4.10
6+
7+
* utf8: Prevent Node from sending invalid UTF-8 (Felix Geisendörfer)
8+
- *NOTE* this introduces a breaking change, previously you could construct
9+
invalid UTF-8 and invoke an error in a client that was expecting valid
10+
UTF-8, now unmatched surrogate pairs are replaced with the unknown UTF-8
11+
character. To restore the old functionality simply have NODE_INVALID_UTF8
12+
environment variable set.
13+
14+
* child_process: do not set args before throwing (Greg Sabia Tucker)
15+
16+
* child_process: spawn() does not throw TypeError (Greg Sabia Tucker)
17+
18+
* constants: export O_NONBLOCK (Fedor Indutny)
19+
20+
* crypto: improve memory usage (Alexis Campailla)
21+
22+
* fs: close file if fstat() fails in readFile() (cjihrig)
23+
24+
* lib: name EventEmitter prototype methods (Ben Noordhuis)
25+
26+
* tls: fix performance issue (Alexis Campailla)
27+
28+
29+
2014.05.01, Version 0.10.28 (Stable), b148cbe09d4657766fdb61575ba985734c2ff0a8
230

331
* npm: upgrade to v1.4.9
432

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 29
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)