OLD | NEW |
| 1 2010-09-30: Version 2.4.7 |
| 2 |
| 3 Changed the command-line flag --max-new-space-size to be in kB and the |
| 4 flag --max-old-space-size to be in MB (previously they were in bytes). |
| 5 |
| 6 Added Debug::CancelDebugBreak to the debugger API. |
| 7 |
| 8 Fixed a bug in getters for negative numeric property names |
| 9 (https://bugs.webkit.org/show_bug.cgi?id=46689). |
| 10 |
| 11 Performance improvements on all platforms. |
| 12 |
| 13 |
1 2010-09-27: Version 2.4.6 | 14 2010-09-27: Version 2.4.6 |
| 15 |
2 Fixed assertion failure related to copy-on-write arrays (issue 876). | 16 Fixed assertion failure related to copy-on-write arrays (issue 876). |
3 | 17 |
4 Fixed build failure of 64-bit V8 on Windows. | 18 Fixed build failure of 64-bit V8 on Windows. |
5 | 19 |
6 Fixed a bug in RegExp (issue http://crbug.com/52801). | 20 Fixed a bug in RegExp (issue http://crbug.com/52801). |
7 | 21 |
8 Improved the profiler's coverage to cover more functions (issue 858). | 22 Improved the profiler's coverage to cover more functions (issue 858). |
9 | 23 |
10 Fixed error in shift operators on 64-bit V8 | 24 Fixed error in shift operators on 64-bit V8 |
11 (issue http://crbug.com/54521). | 25 (issue http://crbug.com/54521). |
12 | 26 |
13 | 27 |
14 2010-09-22: Version 2.4.5 | 28 2010-09-22: Version 2.4.5 |
| 29 |
15 Changed the RegExp benchmark to exercise the regexp engine on different | 30 Changed the RegExp benchmark to exercise the regexp engine on different |
16 inputs by scrambling the input strings. | 31 inputs by scrambling the input strings. |
17 | 32 |
18 Fixed a bug in keyed loads on strings. | 33 Fixed a bug in keyed loads on strings. |
19 | 34 |
20 Fixed a bug with loading global function prototypes. | 35 Fixed a bug with loading global function prototypes. |
21 | 36 |
22 Fixed a bug with profiling RegExp calls (issue http://crbug.com/55999). | 37 Fixed a bug with profiling RegExp calls (issue http://crbug.com/55999). |
23 | 38 |
24 Performance improvements on all platforms. | 39 Performance improvements on all platforms. |
(...skipping 2078 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2103 | 2118 |
2104 Improved debugger support by allowing nested break points and by | 2119 Improved debugger support by allowing nested break points and by |
2105 dealing with stack-overflows when compiling functions before | 2120 dealing with stack-overflows when compiling functions before |
2106 setting break points in them. | 2121 setting break points in them. |
2107 | 2122 |
2108 | 2123 |
2109 2008-07-03: Version 0.1.0 | 2124 2008-07-03: Version 0.1.0 |
2110 | 2125 |
2111 Initial export. | 2126 Initial export. |
2112 | 2127 |
OLD | NEW |