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

Commit 0debf5a

Browse files
committed
2013.03.06, Version 0.9.12 (Unstable)
* stream: Allow strings in Readable.push/unshift (isaacs) * stream: Remove bufferSize option (isaacs) * stream: Increase highWaterMark on large reads (isaacs) * stream: _write: takes an encoding argument (isaacs) * stream: _transform: remove no output() method, provide encoding (isaacs) * stream: Don't require read(0) to emit 'readable' event (isaacs) * node: Add --throw-deprecation (isaacs) * http: fix multiple timeout events (Eugene Girshov) * http: More useful setTimeout API on server (isaacs) * net: use close callback, not process.nextTick (Ben Noordhuis) * net: Provide better error when writing after FIN (isaacs) * dns: Support NAPTR queries (Pavel Lang) * dns: fix ReferenceError in resolve() error path (Xidorn Quan) * child_process: handle ENOENT correctly on Windows (Scott Blomquist) * cluster: Rename destroy() to kill(signal=SIGTERM) (isaacs) * build: define nightly tag external to build system (Timothy J Fontaine) * build: make msi build work when spaces are present in the path (Bert Belder) * build: fix msi build issue with WiX 3.7/3.8 (Raymond Feng) * repl: make compatible with domains (Dave Olszewski) * events: Code cleanup and performance improvements (Trevor Norris)
1 parent 51c8b0e commit 0debf5a

File tree

3 files changed

+53
-2
lines changed

3 files changed

+53
-2
lines changed

AUTHORS

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -418,3 +418,11 @@ Victor Costan <costan@gmail.com>
418418
Timothy J Fontaine <tjfontaine@gmail.com>
419419
Arianit Uka <arianit@bigvikinggames.com>
420420
Andrei Sedoi <bsnote@gmail.com>
421+
Eugene Girshov <eugene.girshov@nixu.com>
422+
Evan Oxfeld <eoxfeld@nearinfinity.com>
423+
Lars-Magnus Skog <lars.magnus.skog@gmail.com>
424+
Raymond Feng <enjoyjava@gmail.com>
425+
Aaron Cannon <cannona@fireantproductions.com>
426+
Xidorn Quan <quanxunzhen@gmail.com>
427+
Paolo Fragomeni <paolo@async.ly>
428+
Scott Blomquist <github@scott.blomqui.st>

ChangeLog

Lines changed: 44 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,47 @@
1-
2013.03.01, Version 0.9.11 (Unstable)
1+
2013.03.06, Version 0.9.12 (Unstable)
2+
3+
* stream: Allow strings in Readable.push/unshift (isaacs)
4+
5+
* stream: Remove bufferSize option (isaacs)
6+
7+
* stream: Increase highWaterMark on large reads (isaacs)
8+
9+
* stream: _write: takes an encoding argument (isaacs)
10+
11+
* stream: _transform: remove no output() method, provide encoding (isaacs)
12+
13+
* stream: Don't require read(0) to emit 'readable' event (isaacs)
14+
15+
* node: Add --throw-deprecation (isaacs)
16+
17+
* http: fix multiple timeout events (Eugene Girshov)
18+
19+
* http: More useful setTimeout API on server (isaacs)
20+
21+
* net: use close callback, not process.nextTick (Ben Noordhuis)
22+
23+
* net: Provide better error when writing after FIN (isaacs)
24+
25+
* dns: Support NAPTR queries (Pavel Lang)
26+
27+
* dns: fix ReferenceError in resolve() error path (Xidorn Quan)
28+
29+
* child_process: handle ENOENT correctly on Windows (Scott Blomquist)
30+
31+
* cluster: Rename destroy() to kill(signal=SIGTERM) (isaacs)
32+
33+
* build: define nightly tag external to build system (Timothy J Fontaine)
34+
35+
* build: make msi build work when spaces are present in the path (Bert Belder)
36+
37+
* build: fix msi build issue with WiX 3.7/3.8 (Raymond Feng)
38+
39+
* repl: make compatible with domains (Dave Olszewski)
40+
41+
* events: Code cleanup and performance improvements (Trevor Norris)
42+
43+
44+
2013.03.01, Version 0.9.11 (Unstable), 83392403b7a9b7782b37c17688938c75010f81ba
245

346
* V8: downgrade to 3.14.5
447

src/node_version.h

Lines changed: 1 addition & 1 deletion
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)