OLD | NEW |
1 2010-01-10: Version 3.0.7 | 1 2011-01-17: Version 3.0.8 |
2 | 2 |
| 3 Exposed heap size limit to the heap statistics gathered by |
| 4 the GetHeapStatistics API. |
| 5 |
| 6 Wrapped external pointers more carefully (issue 1037). |
| 7 |
| 8 Hardened the implementation of error objects to avoid setters |
| 9 intercepting the properties set then throwing an error. |
| 10 |
| 11 Avoided trashing the FPSCR when calculating Math.floor on ARM. |
| 12 |
| 13 Performance improvements on the IA32 platform. |
| 14 |
| 15 |
| 16 2011-01-10: Version 3.0.7 |
| 17 |
3 Stopped calling inherited setters when creating object literals | 18 Stopped calling inherited setters when creating object literals |
4 (issue 1015). | 19 (issue 1015). |
5 | 20 |
6 Changed interpretation of malformed \c? escapes in RegExp to match | 21 Changed interpretation of malformed \c? escapes in RegExp to match |
7 JSC. | 22 JSC. |
8 | 23 |
9 Enhanced the command-line debugger interface and fixed some minor | 24 Enhanced the command-line debugger interface and fixed some minor |
10 bugs in the debugger. | 25 bugs in the debugger. |
11 | 26 |
12 Performance improvements on the IA32 platform. | 27 Performance improvements on the IA32 platform. |
13 | 28 |
14 | 29 |
15 2010-01-05: Version 3.0.6 | 30 2011-01-05: Version 3.0.6 |
16 | 31 |
17 Allowed getters and setters on JSArray elements (issue 900). | 32 Allowed getters and setters on JSArray elements (issue 900). |
18 | 33 |
19 Stopped JSON objects from hitting inherited setters (part of | 34 Stopped JSON objects from hitting inherited setters (part of |
20 issue 1015). | 35 issue 1015). |
21 | 36 |
22 Allowed numbers and strings as names of getters/setters in object | 37 Allowed numbers and strings as names of getters/setters in object |
23 initializer (issue 820). | 38 initializer (issue 820). |
24 | 39 |
25 Added use_system_v8 option to gyp (off by default), to make it easier | 40 Added use_system_v8 option to gyp (off by default), to make it easier |
(...skipping 2339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2365 | 2380 |
2366 Improved debugger support by allowing nested break points and by | 2381 Improved debugger support by allowing nested break points and by |
2367 dealing with stack-overflows when compiling functions before | 2382 dealing with stack-overflows when compiling functions before |
2368 setting break points in them. | 2383 setting break points in them. |
2369 | 2384 |
2370 | 2385 |
2371 2008-07-03: Version 0.1.0 | 2386 2008-07-03: Version 0.1.0 |
2372 | 2387 |
2373 Initial export. | 2388 Initial export. |
2374 | 2389 |
OLD | NEW |