OLD | NEW |
| 1 2010-07-05: Version 2.2.22 |
| 2 |
| 3 Added ES5 Object.isExtensible and Object.preventExtensions. |
| 4 |
| 5 Enabled building V8 as a DLL. |
| 6 |
| 7 Fixed a bug in date code where -0 was not interpreted as 0 |
| 8 (issue 736). |
| 9 |
| 10 Performance improvements on all platforms. |
| 11 |
| 12 |
1 2010-06-30: Version 2.2.21 | 13 2010-06-30: Version 2.2.21 |
2 | 14 |
3 Fix bug in externalizing some ASCII strings (Chromium issue 47824). | 15 Fix bug in externalizing some ASCII strings (Chromium issue 47824). |
4 | 16 |
5 Update JSON.stringify to floor the space parameter (issue 753). | 17 Update JSON.stringify to floor the space parameter (issue 753). |
6 | 18 |
7 Update the Mozilla test expectations to the newest version. | 19 Update the Mozilla test expectations to the newest version. |
8 | 20 |
9 Update the ES5 Conformance Test expectations to the latest version. | 21 Update the ES5 Conformance Test expectations to the latest version. |
10 | 22 |
11 Update the V8 benchmark suite. | 23 Update the V8 benchmark suite. |
12 | 24 |
13 Provide actual breakpoints locations in response to setBreakpoint | 25 Provide actual breakpoints locations in response to setBreakpoint |
14 and listBreakpoints requests. | 26 and listBreakpoints requests. |
15 | 27 |
| 28 |
16 2010-06-28: Version 2.2.20 | 29 2010-06-28: Version 2.2.20 |
| 30 |
17 Fix bug with for-in on x64 platform (issue 748). | 31 Fix bug with for-in on x64 platform (issue 748). |
18 | 32 |
19 Fix crash bug on x64 platform (issue 756). | 33 Fix crash bug on x64 platform (issue 756). |
20 | 34 |
21 Fix bug in Object.getOwnPropertyNames. (chromium issue 41243). | 35 Fix bug in Object.getOwnPropertyNames. (chromium issue 41243). |
22 | 36 |
23 Fix a bug on ARM that caused the result of 1 << x to be | 37 Fix a bug on ARM that caused the result of 1 << x to be |
24 miscalculated for some inputs. | 38 miscalculated for some inputs. |
25 | 39 |
26 Performance improvements on all platforms. | 40 Performance improvements on all platforms. |
27 | 41 |
| 42 |
28 2010-06-23: Version 2.2.19 | 43 2010-06-23: Version 2.2.19 |
29 | 44 |
30 Fix bug that causes the build to break when profillingsupport=off | 45 Fix bug that causes the build to break when profillingsupport=off |
31 (issue 738). | 46 (issue 738). |
32 | 47 |
33 Added expose-externalize-string flag for testing extensions. | 48 Added expose-externalize-string flag for testing extensions. |
34 | 49 |
35 Resolve linker issues with using V8 as a DLL causing a number of | 50 Resolve linker issues with using V8 as a DLL causing a number of |
36 problems with unresolved symbols. | 51 problems with unresolved symbols. |
37 | 52 |
(...skipping 19 matching lines...) Expand all Loading... |
57 | 72 |
58 2010-06-14: Version 2.2.17 | 73 2010-06-14: Version 2.2.17 |
59 | 74 |
60 Improved debugger support for stepping out of functions. | 75 Improved debugger support for stepping out of functions. |
61 | 76 |
62 Incremental performance improvements. | 77 Incremental performance improvements. |
63 | 78 |
64 | 79 |
65 2010-06-09: Version 2.2.16 | 80 2010-06-09: Version 2.2.16 |
66 | 81 |
67 Removed the SetExternalStringDiposeCallback API. Changed the | 82 Removed the SetExternalStringDiposeCallback API. Changed the |
68 disposal of external string resources to call a virtual Dispose | 83 disposal of external string resources to call a virtual Dispose |
69 method on the resource. | 84 method on the resource. |
70 | 85 |
71 Added support for more precise break points when debugging and | 86 Added support for more precise break points when debugging and |
72 stepping. | 87 stepping. |
73 | 88 |
74 Memory usage improvements on all platforms. | 89 Memory usage improvements on all platforms. |
75 | 90 |
76 | 91 |
77 2010-06-07: Version 2.2.15 | 92 2010-06-07: Version 2.2.15 |
78 | 93 |
79 Add an API to control the disposal of external string resources. | 94 Add an API to control the disposal of external string resources. |
80 | 95 |
81 Add missing initialization of a couple of variables which makes | 96 Add missing initialization of a couple of variables which makes |
(...skipping 1740 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1822 | 1837 |
1823 Improved debugger support by allowing nested break points and by | 1838 Improved debugger support by allowing nested break points and by |
1824 dealing with stack-overflows when compiling functions before | 1839 dealing with stack-overflows when compiling functions before |
1825 setting break points in them. | 1840 setting break points in them. |
1826 | 1841 |
1827 | 1842 |
1828 2008-07-03: Version 0.1.0 | 1843 2008-07-03: Version 0.1.0 |
1829 | 1844 |
1830 Initial export. | 1845 Initial export. |
1831 | 1846 |
OLD | NEW |