Skip to content

Commit 8339240

Browse files
committedMar 1, 2013
2013.03.01, Version 0.9.10 (Unstable)
* V8: downgrade 3.14.5 * openssl: update to 1.0.1e * darwin: Make process.title work properly (Ben Noordhuis) * fs: Support mode/flag options to read/append/writeFile (isaacs) * stream: _read() no longer takes a callback (isaacs) * stream: Add stream.unshift(chunk) (isaacs) * stream: remove lowWaterMark feature (isaacs) * net: omit superfluous 'connect' event (Ben Noordhuis) * build, windows: disable SEH (Ben Noordhuis) * core: remove errno global (Ben Noordhuis) * core: Remove the nextTick for running the main file (isaacs) * core: Mark exit() calls with status codes (isaacs) * core: Fix debug signal handler race condition lock (isaacs) * crypto: clear error stack (Ben Noordhuis) * test: optionally set common.PORT via env variable (Timothy J Fontaine) * path: Throw TypeError on non-string args to path.resolve/join (isaacs, Arianit Uka) * crypto: fix uninitialized memory access in openssl (Ben Noordhuis)
1 parent 687522c commit 8339240

File tree

3 files changed

+46
-7
lines changed

3 files changed

+46
-7
lines changed
 

‎AUTHORS

+2
Original file line numberDiff line numberDiff line change
@@ -416,3 +416,5 @@ Sugendran Ganess <sugendran@sugendran.net>
416416
Jim Schubert <james.schubert@gmail.com>
417417
Victor Costan <costan@gmail.com>
418418
Timothy J Fontaine <tjfontaine@gmail.com>
419+
Arianit Uka <arianit@bigvikinggames.com>
420+
Andrei Sedoi <bsnote@gmail.com>

‎ChangeLog

+43-6
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,38 @@
1-
2013.02.25, Version 0.8.21 (Stable)
1+
2013.03.01, Version 0.9.10 (Unstable)
22

3-
* http: Do not free the wrong parser on socket close (isaacs)
3+
* V8: downgrade 3.14.5
44

5-
* http: Handle hangup writes more gently (isaacs)
5+
* openssl: update to 1.0.1e
66

7-
* zlib: fix assert on bad input (Ben Noordhuis)
7+
* darwin: Make process.title work properly (Ben Noordhuis)
88

9-
* test: add TAP output to the test runner (Timothy J Fontaine)
9+
* fs: Support mode/flag options to read/append/writeFile (isaacs)
1010

11-
* unix: Handle EINPROGRESS from domain sockets (Ben Noordhuis)
11+
* stream: _read() no longer takes a callback (isaacs)
12+
13+
* stream: Add stream.unshift(chunk) (isaacs)
14+
15+
* stream: remove lowWaterMark feature (isaacs)
16+
17+
* net: omit superfluous 'connect' event (Ben Noordhuis)
18+
19+
* build, windows: disable SEH (Ben Noordhuis)
20+
21+
* core: remove errno global (Ben Noordhuis)
22+
23+
* core: Remove the nextTick for running the main file (isaacs)
24+
25+
* core: Mark exit() calls with status codes (isaacs)
26+
27+
* core: Fix debug signal handler race condition lock (isaacs)
28+
29+
* crypto: clear error stack (Ben Noordhuis)
30+
31+
* test: optionally set common.PORT via env variable (Timothy J Fontaine)
32+
33+
* path: Throw TypeError on non-string args to path.resolve/join (isaacs, Arianit Uka)
34+
35+
* crypto: fix uninitialized memory access in openssl (Ben Noordhuis)
1236

1337

1438
2013.02.19, Version 0.9.10 (Unstable)
@@ -400,6 +424,19 @@
400424
* Fix #3521 Make process.env more like a regular Object (isaacs)
401425

402426

427+
2013.02.25, Version 0.8.21 (Stable), 530d8c05d4c546146f18e5ba811d7eb3b7b7c0c5
428+
429+
* http: Do not free the wrong parser on socket close (isaacs)
430+
431+
* http: Handle hangup writes more gently (isaacs)
432+
433+
* zlib: fix assert on bad input (Ben Noordhuis)
434+
435+
* test: add TAP output to the test runner (Timothy J Fontaine)
436+
437+
* unix: Handle EINPROGRESS from domain sockets (Ben Noordhuis)
438+
439+
403440
2013.02.15, Version 0.8.20 (Stable), e10c75579b536581ddd7ae4e2c3bf8a9d550d343
404441

405442
* npm: Upgrade to v1.2.11

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