Skip to content

Commit be52549

Browse files
committed
2013.08.21, Version 0.11.7 (Unstable)
* uv: upgrade to v0.11.13 * v8: upgrade to 3.20.17 * buffer: adhere to INSPECT_MAX_BYTES (Timothy J Fontaine) * buffer: fix regression for large buffer creation (Trevor Norris) * buffer: don't throw if slice length too long (Trevor Norris) * buffer: Buffer(buf) constructor copies into the proper buffer (Ben Noordhuis) * cli: remove --max-stack-size (Ben Noordhuis) * cli: unknown command line options are errors (Ben Noordhuis) * child_process: exec accept buffer as an encoding (Seth Fitzsimmons) * crypto: make randomBytes/pbkdf2 callbacks domain aware (Ben Noordhuis) * domain: deprecate domain.dispose(). (Forrest L Norvell) * fs: Expose birthtime on stat objects (isaacs) * http: Only send connection:keep-alive if necessary (isaacs) * repl: Catch syntax errors better (isaacs, Nathan Rajlich) * stream: change default highWaterMark for objectMode to 16 (Mathias Buus) * stream: make setEncoding/pause/resume chainable (Julian Gruber, isaacs) * util: pass opts to custom inspect functions (Timothy J Fontaine) * vm: rewritten to behave like Contextify (Domenic Denicola)
1 parent 15a5a4a commit be52549

File tree

3 files changed

+42
-2
lines changed

3 files changed

+42
-2
lines changed

AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -483,3 +483,4 @@ Matthias Bartelmeß <[email protected]>
483483
James Halliday <[email protected]>
484484
Matthew Aynalem <[email protected]>
485485
Vsevolod Strukchinsky <[email protected]>
486+
Jay Beavers <[email protected]>

ChangeLog

+40-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,43 @@
1-
2013.08.21, Version 0.11.6 (Unstable)
1+
2013.08.21, Version 0.11.7 (Unstable)
2+
3+
* uv: upgrade to v0.11.13
4+
5+
* v8: upgrade to 3.20.17
6+
7+
* buffer: adhere to INSPECT_MAX_BYTES (Timothy J Fontaine)
8+
9+
* buffer: fix regression for large buffer creation (Trevor Norris)
10+
11+
* buffer: don't throw if slice length too long (Trevor Norris)
12+
13+
* buffer: Buffer(buf) constructor copies into the proper buffer (Ben Noordhuis)
14+
15+
* cli: remove --max-stack-size (Ben Noordhuis)
16+
17+
* cli: unknown command line options are errors (Ben Noordhuis)
18+
19+
* child_process: exec accept buffer as an encoding (Seth Fitzsimmons)
20+
21+
* crypto: make randomBytes/pbkdf2 callbacks domain aware (Ben Noordhuis)
22+
23+
* domain: deprecate domain.dispose(). (Forrest L Norvell)
24+
25+
* fs: Expose birthtime on stat objects (isaacs)
26+
27+
* http: Only send connection:keep-alive if necessary (isaacs)
28+
29+
* repl: Catch syntax errors better (isaacs, Nathan Rajlich)
30+
31+
* stream: change default highWaterMark for objectMode to 16 (Mathias Buus)
32+
33+
* stream: make setEncoding/pause/resume chainable (Julian Gruber, isaacs)
34+
35+
* util: pass opts to custom inspect functions (Timothy J Fontaine)
36+
37+
* vm: rewritten to behave like Contextify (Domenic Denicola)
38+
39+
40+
2013.08.21, Version 0.11.6 (Unstable), 04018d4b3938fd30ba14822e79195e4af2be36f6
241

342
* uv: Upgrade to v0.11.8
443

src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#define NODE_MINOR_VERSION 11
2727
#define NODE_PATCH_VERSION 7
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)