Skip to content

Commit 0c2e28d

Browse files
committed
2014.03.11, Version 0.11.12 (Unstable)
* uv: Upgrade to v0.11.22 (Timothy J Fontaine) * buffer: allow toString to accept Infinity for end (Brian White) * child_process: add spawnSync/execSync (Bert Belder, Timothy J Fontaine) * cluster: handle bind errors on Windows (Alexis Campailla) * contextify: handle infinite recursion errors (Fedor Indutny) * crypto: allow custom generator for DiffieHellman (Brian White) * crypto: allow setting add'l authenticated data (Brian White) * crypto: fix CipherFinal return value check (Brian White) * crypto: make NewSessionDoneCb public (Fedor Indutny) * dgram: pass the bytes sent to the send callback (Timothy J Fontaine) * dns: validate arguments in resolver (Kenan Sulayman) * dns: verify argument is valid function in resolve (Kenan Sulayman) * http: avoid duplicate keys in writeHead (David Björklund) * net: add localPort to connect options (Timothy J Fontaine) * node: do not print SyntaxError hints to stderr (Fedor Indutny) * node: invoke `beforeExit` again if loop was active (Fedor Indutny) * node: make AsyncListenerInst field more explicit (Trevor Norris) * os: networkInterfaces include scopeid for ipv6 (Xidorn Quan) * process: allow changing `exitCode` in `on('exit')` (Fedor Indutny) * readline: fix `line` event, if input emit 'end' (Yazhong Liu) * src: add tracing.v8.on('gc') statistics hooks (Ben Noordhuis) * src: add v8.getHeapStatistics() function (Ben Noordhuis) * src: emit 'beforeExit' event on process object (Ben Noordhuis) * src: move AsyncListener from process to tracing (Trevor Norris) * tls: fix crash in SNICallback (Fedor Indutny) * tls: introduce asynchronous `newSession` (Fedor Indutny) * util: show meaningful values for boxed primitives (Nathan Rajlich) * vm: don't copy Proxy object from parent context (Ben Noordhuis) * windows: make stdout/sterr pipes blocking (Alexis Campailla) * zlib: add sync versions for convenience methods (Nikolai Vavilov)
1 parent e496707 commit 0c2e28d

File tree

3 files changed

+74
-2
lines changed

3 files changed

+74
-2
lines changed

AUTHORS

+9
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,16 @@ Jacob Hoffman-Andrews <[email protected]>
525525
Keith M Wesolowski <[email protected]>
526526
Maxime Quandalle <[email protected]>
527527
Doron Pagot <[email protected]>
528+
Oguz Bastemur <[email protected]>
528529
Kenan Sulayman <[email protected]>
529530
Christian Schulz <[email protected]>
530531
Pedro Ballesteros <[email protected]>
531532
Anton Khlynovskiy <[email protected]>
533+
Nicolas Talle <[email protected]>
534+
Austin Moran <[email protected]>
535+
Mike Pennisi <[email protected]>
536+
Maxwell Krohn <[email protected]>
537+
Saúl Ibarra Corretgé <[email protected]>
538+
Greg Brail <[email protected]>
539+
Shuhei Kagawa <[email protected]>
540+
Yuriy Nemtsov <[email protected]>

ChangeLog

+64-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,67 @@
1-
2014.01.29, Version 0.11.11 (Unstable)
1+
2014.03.11, Version 0.11.12 (Unstable)
2+
3+
* uv: Upgrade to v0.11.22 (Timothy J Fontaine)
4+
5+
* buffer: allow toString to accept Infinity for end (Brian White)
6+
7+
* child_process: add spawnSync/execSync (Bert Belder, Timothy J Fontaine)
8+
9+
* cluster: handle bind errors on Windows (Alexis Campailla)
10+
11+
* contextify: handle infinite recursion errors (Fedor Indutny)
12+
13+
* crypto: allow custom generator for DiffieHellman (Brian White)
14+
15+
* crypto: allow setting add'l authenticated data (Brian White)
16+
17+
* crypto: fix CipherFinal return value check (Brian White)
18+
19+
* crypto: make NewSessionDoneCb public (Fedor Indutny)
20+
21+
* dgram: pass the bytes sent to the send callback (Timothy J Fontaine)
22+
23+
* dns: validate arguments in resolver (Kenan Sulayman)
24+
25+
* dns: verify argument is valid function in resolve (Kenan Sulayman)
26+
27+
* http: avoid duplicate keys in writeHead (David Björklund)
28+
29+
* net: add localPort to connect options (Timothy J Fontaine)
30+
31+
* node: do not print SyntaxError hints to stderr (Fedor Indutny)
32+
33+
* node: invoke `beforeExit` again if loop was active (Fedor Indutny)
34+
35+
* node: make AsyncListenerInst field more explicit (Trevor Norris)
36+
37+
* os: networkInterfaces include scopeid for ipv6 (Xidorn Quan)
38+
39+
* process: allow changing `exitCode` in `on('exit')` (Fedor Indutny)
40+
41+
* readline: fix `line` event, if input emit 'end' (Yazhong Liu)
42+
43+
* src: add tracing.v8.on('gc') statistics hooks (Ben Noordhuis)
44+
45+
* src: add v8.getHeapStatistics() function (Ben Noordhuis)
46+
47+
* src: emit 'beforeExit' event on process object (Ben Noordhuis)
48+
49+
* src: move AsyncListener from process to tracing (Trevor Norris)
50+
51+
* tls: fix crash in SNICallback (Fedor Indutny)
52+
53+
* tls: introduce asynchronous `newSession` (Fedor Indutny)
54+
55+
* util: show meaningful values for boxed primitives (Nathan Rajlich)
56+
57+
* vm: don't copy Proxy object from parent context (Ben Noordhuis)
58+
59+
* windows: make stdout/sterr pipes blocking (Alexis Campailla)
60+
61+
* zlib: add sync versions for convenience methods (Nikolai Vavilov)
62+
63+
64+
2014.01.29, Version 0.11.11 (Unstable), b46e77421581ea358e221a8a843d057c747f7e90
265

366
* v8: Upgrade to 3.22.24.19
467

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