File tree 3 files changed +41
-5
lines changed
3 files changed +41
-5
lines changed Original file line number Diff line number Diff line change 1
- 2012.06.29, Version 0.8.1 (stable)
1
+ 2012.07.09, Version 0.8.2 (Stable)
2
+
3
+ * npm: Upgrade to 1.1.36
4
+
5
+ * readline: don't use Function#call() (Nathan Rajlich)
6
+
7
+ * Code cleanup to pass 'use strict' (Jonas Westerlund)
8
+
9
+ * module: add filename to require() json errors (TJ Holowaychuk)
10
+
11
+ * readline: fix for unicode prompts (Tim Macfarlane)
12
+
13
+ * timers: fix handling of large timeouts (Ben Noordhuis)
14
+
15
+ * repl: fix passing an empty line inserting "undefined" into the buffer (Nathan Rajlich)
16
+
17
+ * repl: fix crashes when buffering command (Maciej Małecki)
18
+
19
+ * build: rename strict_aliasing to node_no_strict_aliasing (Ben Noordhuis)
20
+
21
+ * build: disable -fstrict-aliasing for any gcc < 4.6.0 (Ben Noordhuis)
22
+
23
+ * build: detect cc version with -dumpversion (Ben Noordhuis)
24
+
25
+ * build: handle output of localized gcc or clang (Ben Noordhuis)
26
+
27
+ * unix: fix memory corruption in freebsd.c (Ben Noordhuis)
28
+
29
+ * unix: fix 'zero handles, one request' busy loop (Ben Noordhuis)
30
+
31
+ * unix: fix busy loop on unexpected tcp message (Ben Noordhuis)
32
+
33
+ * unix: fix EINPROGRESS busy loop (Ben Noordhuis)
34
+
35
+
36
+ 2012.06.29, Version 0.8.1 (stable), 2134aa3d5c622fc3c3b02ccb713fcde0e0df479a
2
37
3
38
* V8: upgrade to v3.11.10.12
4
39
Original file line number Diff line number Diff line change 25
25
#define NODE_MAJOR_VERSION 0
26
26
#define NODE_MINOR_VERSION 8
27
27
#define NODE_PATCH_VERSION 2
28
- #define NODE_VERSION_IS_RELEASE 0
28
+ #define NODE_VERSION_IS_RELEASE 1
29
29
30
30
#ifndef NODE_STRINGIFY
31
31
#define NODE_STRINGIFY (n ) NODE_STRINGIFY_HELPER(n)
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ var assert = require('assert');
24
24
try {
25
25
require ( '../fixtures/invalid.json' ) ;
26
26
} catch ( err ) {
27
- var i = err . message . indexOf ( 'test/fixtures/invalid.json: Unexpected string' )
28
- assert ( - 1 != i , 'require() json error should include path' ) ;
29
- }
27
+ var re = / t e s t [ \/ \\ ] f i x t u r e s [ \/ \\ ] i n v a l i d .j s o n : U n e x p e c t e d s t r i n g / ;
28
+ var i = err . message . match ( re ) ;
29
+ assert ( null !== i , 'require() json error should include path' ) ;
30
+ }
You can’t perform that action at this time.
0 commit comments