Skip to content

Commit 1e0de9c

Browse files
committedMar 28, 2013
2013.03.28, Version 0.10.2 (Stable)
* npm: Upgrade to 1.2.15 * uv: Upgrade to 0.10.3 * tls: handle SSL_ERROR_ZERO_RETURN (Fedor Indutny) * tls: handle errors before calling C++ methods (Fedor Indutny) * tls: remove harmful unnecessary bounds checking (Marcel Laverdet) * crypto: make getCiphers() return non-SSL ciphers (Ben Noordhuis) * crypto: check randomBytes() size argument (Ben Noordhuis) * timers: do not calculate Timeout._when property (Alexey Kupershtokh) * timers: fix off-by-one ms error (Alexey Kupershtokh) * timers: handle signed int32 overflow in enroll() (Fedor Indutny) * stream: Fix stall in Transform under very specific conditions (Gil Pedersen) * stream: Handle late 'readable' event listeners (isaacs) * stream: Fix early end in Writables on zero-length writes (isaacs) * domain: fix domain callback from MakeCallback (Trevor Norris) * child_process: don't emit same handle twice (Ben Noordhuis) * child_process: fix sending utf-8 to child process (Ben Noordhuis)
1 parent 1b5ec03 commit 1e0de9c

File tree

3 files changed

+39
-2
lines changed

3 files changed

+39
-2
lines changed
 

‎AUTHORS

+2
Original file line numberDiff line numberDiff line change
@@ -429,3 +429,5 @@ Henry Chin <hheennrryy@gmail.com>
429429
Julian Gruber <julian@juliangruber.com>
430430
JeongHoon Byun <outsideris@gmail.com>
431431
Iskren Ivov Chernev <iskren.chernev@gmail.com>
432+
Alexey Kupershtokh <alexey.kupershtokh@gmail.com>
433+
Benjamin Ruston <benjy.ruston@gmail.com>

‎ChangeLog

+36-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,39 @@
1-
2013.03.21, Version 0.10.1 (Stable)
1+
2013.03.28, Version 0.10.2 (Stable)
2+
3+
* npm: Upgrade to 1.2.15
4+
5+
* uv: Upgrade to 0.10.3
6+
7+
* tls: handle SSL_ERROR_ZERO_RETURN (Fedor Indutny)
8+
9+
* tls: handle errors before calling C++ methods (Fedor Indutny)
10+
11+
* tls: remove harmful unnecessary bounds checking (Marcel Laverdet)
12+
13+
* crypto: make getCiphers() return non-SSL ciphers (Ben Noordhuis)
14+
15+
* crypto: check randomBytes() size argument (Ben Noordhuis)
16+
17+
* timers: do not calculate Timeout._when property (Alexey Kupershtokh)
18+
19+
* timers: fix off-by-one ms error (Alexey Kupershtokh)
20+
21+
* timers: handle signed int32 overflow in enroll() (Fedor Indutny)
22+
23+
* stream: Fix stall in Transform under very specific conditions (Gil Pedersen)
24+
25+
* stream: Handle late 'readable' event listeners (isaacs)
26+
27+
* stream: Fix early end in Writables on zero-length writes (isaacs)
28+
29+
* domain: fix domain callback from MakeCallback (Trevor Norris)
30+
31+
* child_process: don't emit same handle twice (Ben Noordhuis)
32+
33+
* child_process: fix sending utf-8 to child process (Ben Noordhuis)
34+
35+
36+
2013.03.21, Version 0.10.1 (Stable), c274d1643589bf104122674a8c3fd147527a667d
237

338
* npm: upgrade to 1.2.15
439

‎src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
# define NODE_TAG ""
3131
#endif
3232

33-
#define NODE_VERSION_IS_RELEASE 0
33+
#define NODE_VERSION_IS_RELEASE 1
3434

3535
#ifndef NODE_STRINGIFY
3636
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)