Skip to content

Commit 52795f8

Browse files
committed
2014.12.17, Version 0.10.34 (Stable)
* uv: update to v0.10.30 * zlib: upgrade to v1.2.8 * child_process: check execFile args is an array (Sam Roberts) * child_process: check fork args is an array (Sam Roberts) * crypto: update root certificates (Ben Noordhuis) * domains: fix issues with abort on uncaught (Julien Gilli) * timers: Avoid linear scan in _unrefActive. (Julien Gilli) * timers: fix unref() memory leak (Trevor Norris) * v8: add api for aborting on uncaught exception (Julien Gilli) * debugger: fix when using "use strict" (Julien Gilli)
1 parent 542234a commit 52795f8

File tree

3 files changed

+34
-4
lines changed

3 files changed

+34
-4
lines changed

AUTHORS

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,6 +515,13 @@ Kevin Simper <kevin.simper@gmail.com>
515515
Jackson Tian <shyvo1987@gmail.com>
516516
Tristan Berger <tristan.berger@gmail.com>
517517
Mathias Schreck <schreck.mathias@googlemail.com>
518-
Calvin Metcalf <cmetcalf@appgeo.com>
519518
Matthew Fitzsimmons <matt@fitzage.com>
520519
Swaagie <info@martijnswaagman.nl>
520+
Emmanuel Odeke <emmanuel.odeke@cmgcanada.ca>
521+
Eric Mill <eric@konklone.com>
522+
Brendan Ashworth <squirrelslikeacorns@gmail.com>
523+
Alejandro Oviedo <alejandro.oviedo.g@gmail.com>
524+
pkcs <pkcs@gmx.com>
525+
Saúl Ibarra Corretgé <saghul@gmail.com>
526+
silverwind <silv3rwind@gmail.com>
527+
Steven R. Loomis <srl@icu-project.org>

ChangeLog

Lines changed: 25 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,27 @@
1-
2014.10.20, Version 0.10.33 (Stable)
1+
2014.12.17, Version 0.10.34 (Stable)
2+
3+
* uv: update to v0.10.30
4+
5+
* zlib: upgrade to v1.2.8
6+
7+
* child_process: check execFile args is an array (Sam Roberts)
8+
9+
* child_process: check fork args is an array (Sam Roberts)
10+
11+
* crypto: update root certificates (Ben Noordhuis)
12+
13+
* domains: fix issues with abort on uncaught (Julien Gilli)
14+
15+
* timers: Avoid linear scan in _unrefActive. (Julien Gilli)
16+
17+
* timers: fix unref() memory leak (Trevor Norris)
18+
19+
* v8: add api for aborting on uncaught exception (Julien Gilli)
20+
21+
* debugger: fix when using "use strict" (Julien Gilli)
22+
23+
24+
2014.10.20, Version 0.10.33 (Stable), 8d045a30e95602b443eb259a5021d33feb4df079
225

326
* openssl: Update to 1.0.1j (Addressing multiple CVEs)
427

@@ -71,7 +94,7 @@
7194

7295
* deps: backport 4ed5fde4f from v8 upstream (Fedor Indutny)
7396

74-
* deps: cherry-pick eca441b2 from OpenSSL (Fedor Indutny)
97+
*
7598

7699
* lib: remove and restructure calls to isNaN() (cjihrig)
77100

src/node_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#define NODE_MINOR_VERSION 10
2727
#define NODE_PATCH_VERSION 34
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)