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

Commit 9712aa9

Browse files
committed
2013.04.11, Version 0.10.4 (Stable)
* uv: Upgrade to 0.10.4 * npm: Upgrade to 1.2.18 * v8: Avoid excessive memory growth in JSON.parse (Fedor Indutny) * child_process, cluster: fix O(n*m) scan of cmd string (Ben Noordhuis) * net: fix socket.bytesWritten Buffers support (Fedor Indutny) * buffer: fix offset checks (Łukasz Walukiewicz) * stream: call write cb before finish event (isaacs) * http: Support write(data, 'hex') (isaacs) * crypto: dh secret should be left-padded (Fedor Indutny) * process: expose NODE_MODULE_VERSION in process.versions (Rod Vagg) * crypto: fix constructor call in crypto streams (Andreas Madsen) * net: account for encoding in .byteLength (Fedor Indutny) * net: fix buffer iteration in bytesWritten (Fedor Indutny) * crypto: zero is not an error if writing 0 bytes (Fedor Indutny) * tls: Re-enable check of CN-ID in cert verification (Tobias Müllerleile)
1 parent 1ccae9c commit 9712aa9

File tree

3 files changed

+38
-3
lines changed

3 files changed

+38
-3
lines changed

AUTHORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -434,3 +434,5 @@ Benjamin Ruston <benjy.ruston@gmail.com>
434434
Mitar Milutinovic <mitar.git@tnode.com>
435435
Michael Hart <michael.hart.au@gmail.com>
436436
Andrew Hart <hartandrewr@gmail.com>
437+
Rafael Garcia <rgarcia2009@gmail.com>
438+
Tobias Müllerleile <tobias@muellerleile.net>

ChangeLog

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,37 @@
1-
2013.04.03, Version 0.10.3 (Stable)
1+
2013.04.11, Version 0.10.4 (Stable)
2+
3+
* uv: Upgrade to 0.10.4
4+
5+
* npm: Upgrade to 1.2.18
6+
7+
* v8: Avoid excessive memory growth in JSON.parse (Fedor Indutny)
8+
9+
* child_process, cluster: fix O(n*m) scan of cmd string (Ben Noordhuis)
10+
11+
* net: fix socket.bytesWritten Buffers support (Fedor Indutny)
12+
13+
* buffer: fix offset checks (Łukasz Walukiewicz)
14+
15+
* stream: call write cb before finish event (isaacs)
16+
17+
* http: Support write(data, 'hex') (isaacs)
18+
19+
* crypto: dh secret should be left-padded (Fedor Indutny)
20+
21+
* process: expose NODE_MODULE_VERSION in process.versions (Rod Vagg)
22+
23+
* crypto: fix constructor call in crypto streams (Andreas Madsen)
24+
25+
* net: account for encoding in .byteLength (Fedor Indutny)
26+
27+
* net: fix buffer iteration in bytesWritten (Fedor Indutny)
28+
29+
* crypto: zero is not an error if writing 0 bytes (Fedor Indutny)
30+
31+
* tls: Re-enable check of CN-ID in cert verification (Tobias Müllerleile)
32+
33+
34+
2013.04.03, Version 0.10.3 (Stable), d4982f6f5e4a9a703127489a553b8d782997ea43
235

336
* npm: Upgrade to 1.2.17
437

src/node_version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@
2626
#define NODE_MINOR_VERSION 10
2727
#define NODE_PATCH_VERSION 4
2828

29+
#define NODE_VERSION_IS_RELEASE 1
30+
2931
#ifndef NODE_TAG
3032
# define NODE_TAG ""
3133
#endif
3234

33-
#define NODE_VERSION_IS_RELEASE 0
34-
3535
#ifndef NODE_STRINGIFY
3636
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
3737
#define NODE_STRINGIFY_HELPER(n) #n

0 commit comments

Comments
 (0)