OLD | NEW |
| 1 2010-09-06: Version 2.4.1 |
| 2 |
| 3 Added the ability for an embedding application to receive a callback |
| 4 when V8 allocates (V8::AddMemoryAllocationCallback) or deallocates |
| 5 (V8::RemoveMemoryAllocationCallback) from the OS. |
| 6 |
| 7 Fixed several JSON bugs (including issue 855). |
| 8 |
| 9 Fixed memory overrun crash bug triggered during V8's tick-based |
| 10 profiling. |
| 11 |
| 12 Performance improvements on all platforms. |
| 13 |
| 14 |
1 2010-09-01: Version 2.4.0 | 15 2010-09-01: Version 2.4.0 |
2 | 16 |
3 Fix bug in Object.freeze and Object.seal when Array.prototype or | 17 Fix bug in Object.freeze and Object.seal when Array.prototype or |
4 Object.prototype is changed (issue 842). | 18 Object.prototype is changed (issue 842). |
5 | 19 |
6 Update Array.splice to follow Safari and Firefox when called | 20 Update Array.splice to follow Safari and Firefox when called |
7 with zero arguments. | 21 with zero arguments. |
8 | 22 |
9 Fix a missing live register when breaking at keyed loads on ARM. | 23 Fix a missing live register when breaking at keyed loads on ARM. |
10 | 24 |
(...skipping 23 matching lines...) Expand all Loading... |
34 | 48 |
35 Performance improvements on all platforms. | 49 Performance improvements on all platforms. |
36 | 50 |
37 | 51 |
38 2010-08-18: Version 2.3.9 | 52 2010-08-18: Version 2.3.9 |
39 | 53 |
40 Fix compilation for ARMv4 on OpenBSD/FreeBSD. | 54 Fix compilation for ARMv4 on OpenBSD/FreeBSD. |
41 | 55 |
42 Removed specialized handling of GCC 4.4 (issue 830). | 56 Removed specialized handling of GCC 4.4 (issue 830). |
43 | 57 |
44 Fixed DST cache to take into account the suspension of DST in | 58 Fixed DST cache to take into account the suspension of DST in |
45 Egypt during the 2010 Ramadan (issue http://crbug.com/51855). | 59 Egypt during the 2010 Ramadan (issue http://crbug.com/51855). |
46 | 60 |
47 Performance improvements on all platforms. | 61 Performance improvements on all platforms. |
48 | 62 |
49 | 63 |
50 2010-08-16: Version 2.3.8 | 64 2010-08-16: Version 2.3.8 |
51 | 65 |
52 Fixed build with strict aliasing on GCC 4.4 (issue 463). | 66 Fixed build with strict aliasing on GCC 4.4 (issue 463). |
53 | 67 |
54 Fixed issue with incorrect handling of custom valueOf methods on | 68 Fixed issue with incorrect handling of custom valueOf methods on |
(...skipping 1979 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2034 | 2048 |
2035 Improved debugger support by allowing nested break points and by | 2049 Improved debugger support by allowing nested break points and by |
2036 dealing with stack-overflows when compiling functions before | 2050 dealing with stack-overflows when compiling functions before |
2037 setting break points in them. | 2051 setting break points in them. |
2038 | 2052 |
2039 | 2053 |
2040 2008-07-03: Version 0.1.0 | 2054 2008-07-03: Version 0.1.0 |
2041 | 2055 |
2042 Initial export. | 2056 Initial export. |
2043 | 2057 |
OLD | NEW |