| OLD | NEW |
| 1 2010-01-10: Version 3.0.7 | 1 2011-01-25: Version 3.0.11 |
| 2 | 2 |
| 3 Fixed a bug in deletion of lookup slots that could cause global |
| 4 variables to be accidentally deleted (http://crbug.com/70066). |
| 5 |
| 6 Added support for strict mode octal literal verification. |
| 7 |
| 8 Fixed a couple of crash bugs (issues 1070 and 1071). |
| 9 |
| 10 |
| 11 2011-01-24: Version 3.0.10 |
| 12 |
| 13 Fixed External::Wrap for 64-bit addresses (issue 1037). |
| 14 |
| 15 Fixed incorrect .arguments variable proxy handling in the full |
| 16 code generator (issue 1060). |
| 17 |
| 18 Introduced partial strict mode support. |
| 19 |
| 20 Changed formatting of recursive error messages to match Firefox and Safa
ri |
| 21 (issue http://crbug.com/70334). |
| 22 |
| 23 Fixed incorrect rounding for float-to-integer conversions for external |
| 24 array types, which implement the Typed Array spec |
| 25 (issue http://crbug.com/50972). |
| 26 |
| 27 Performance improvements on the IA32 platform. |
| 28 |
| 29 |
| 30 2011-01-19: Version 3.0.9 |
| 31 |
| 32 Added basic GDB JIT Interface integration. |
| 33 |
| 34 Make invalid break/continue statements a syntax error instead of a |
| 35 runtime error. |
| 36 |
| 37 |
| 38 2011-01-17: Version 3.0.8 |
| 39 |
| 40 Exposed heap size limit to the heap statistics gathered by |
| 41 the GetHeapStatistics API. |
| 42 |
| 43 Wrapped external pointers more carefully (issue 1037). |
| 44 |
| 45 Hardened the implementation of error objects to avoid setters |
| 46 intercepting the properties set then throwing an error. |
| 47 |
| 48 Avoided trashing the FPSCR when calculating Math.floor on ARM. |
| 49 |
| 50 Performance improvements on the IA32 platform. |
| 51 |
| 52 |
| 53 2011-01-10: Version 3.0.7 |
| 54 |
| 3 Stopped calling inherited setters when creating object literals | 55 Stopped calling inherited setters when creating object literals |
| 4 (issue 1015). | 56 (issue 1015). |
| 5 | 57 |
| 6 Changed interpretation of malformed \c? escapes in RegExp to match | 58 Changed interpretation of malformed \c? escapes in RegExp to match |
| 7 JSC. | 59 JSC. |
| 8 | 60 |
| 9 Enhanced the command-line debugger interface and fixed some minor | 61 Enhanced the command-line debugger interface and fixed some minor |
| 10 bugs in the debugger. | 62 bugs in the debugger. |
| 11 | 63 |
| 12 Performance improvements on the IA32 platform. | 64 Performance improvements on the IA32 platform. |
| 13 | 65 |
| 14 | 66 |
| 15 2010-01-05: Version 3.0.6 | 67 2011-01-05: Version 3.0.6 |
| 16 | 68 |
| 17 Allowed getters and setters on JSArray elements (issue 900). | 69 Allowed getters and setters on JSArray elements (issue 900). |
| 18 | 70 |
| 19 Stopped JSON objects from hitting inherited setters (part of | 71 Stopped JSON objects from hitting inherited setters (part of |
| 20 issue 1015). | 72 issue 1015). |
| 21 | 73 |
| 22 Allowed numbers and strings as names of getters/setters in object | 74 Allowed numbers and strings as names of getters/setters in object |
| 23 initializer (issue 820). | 75 initializer (issue 820). |
| 24 | 76 |
| 25 Added use_system_v8 option to gyp (off by default), to make it easier | 77 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 | 2417 |
| 2366 Improved debugger support by allowing nested break points and by | 2418 Improved debugger support by allowing nested break points and by |
| 2367 dealing with stack-overflows when compiling functions before | 2419 dealing with stack-overflows when compiling functions before |
| 2368 setting break points in them. | 2420 setting break points in them. |
| 2369 | 2421 |
| 2370 | 2422 |
| 2371 2008-07-03: Version 0.1.0 | 2423 2008-07-03: Version 0.1.0 |
| 2372 | 2424 |
| 2373 Initial export. | 2425 Initial export. |
| 2374 | 2426 |
| OLD | NEW |