| OLD | NEW |
| 1 2010-09-08: Version 2.4.2 |
| 2 |
| 3 Fixed GC crash bug. |
| 4 |
| 5 Fixed stack corruption bug. |
| 6 |
| 7 Fixed compilation for newer C++ compilers that found Operand(0) |
| 8 ambiguous. |
| 9 |
| 10 |
| 1 2010-09-06: Version 2.4.1 | 11 2010-09-06: Version 2.4.1 |
| 2 | 12 |
| 3 Added the ability for an embedding application to receive a callback | 13 Added the ability for an embedding application to receive a callback |
| 4 when V8 allocates (V8::AddMemoryAllocationCallback) or deallocates | 14 when V8 allocates (V8::AddMemoryAllocationCallback) or deallocates |
| 5 (V8::RemoveMemoryAllocationCallback) from the OS. | 15 (V8::RemoveMemoryAllocationCallback) from the OS. |
| 6 | 16 |
| 7 Fixed several JSON bugs (including issue 855). | 17 Fixed several JSON bugs (including issue 855). |
| 8 | 18 |
| 9 Fixed memory overrun crash bug triggered during V8's tick-based | 19 Fixed memory overrun crash bug triggered during V8's tick-based |
| 10 profiling. | 20 profiling. |
| 11 | 21 |
| 12 Performance improvements on all platforms. | 22 Performance improvements on all platforms. |
| 13 | 23 |
| 14 | 24 |
| 15 2010-09-01: Version 2.4.0 | 25 2010-09-01: Version 2.4.0 |
| 16 | 26 |
| 17 Fix bug in Object.freeze and Object.seal when Array.prototype or | 27 Fix bug in Object.freeze and Object.seal when Array.prototype or |
| 18 Object.prototype is changed (issue 842). | 28 Object.prototype is changed (issue 842). |
| 19 | 29 |
| 20 Update Array.splice to follow Safari and Firefox when called | 30 Update Array.splice to follow Safari and Firefox when called |
| 21 with zero arguments. | 31 with zero arguments. |
| 22 | 32 |
| 23 Fix a missing live register when breaking at keyed loads on ARM. | 33 Fix a missing live register when breaking at keyed loads on ARM. |
| 24 | 34 |
| 25 Performance improvements on all platforms. | 35 Performance improvements on all platforms. |
| 26 | 36 |
| 27 | 37 |
| 28 2010-08-25: Version 2.3.11 | 38 2010-08-25: Version 2.3.11 |
| 29 | 39 |
| 30 Fix bug in RegExp related to copy-on-write arrays. | 40 Fix bug in RegExp related to copy-on-write arrays. |
| 31 | 41 |
| 32 Refactoring of tools/test.py script, including the introduction of | 42 Refactoring of tools/test.py script, including the introduction of |
| 33 VARIANT_FLAGS that allows specification of sets of flags with which | 43 VARIANT_FLAGS that allows specification of sets of flags with which |
| 34 all tests should be run. | 44 all tests should be run. |
| 35 | 45 |
| 36 Fix a bug in the handling of debug breaks in CallIC. | 46 Fix a bug in the handling of debug breaks in CallIC. |
| 37 | 47 |
| 38 Performance improvements on all platforms. | 48 Performance improvements on all platforms. |
| 39 | 49 |
| 40 | 50 |
| 41 2010-08-23: Version 2.3.10 | 51 2010-08-23: Version 2.3.10 |
| 42 | 52 |
| 43 Fix bug in bitops on ARM. | 53 Fix bug in bitops on ARM. |
| 44 | 54 |
| 45 Build fixes for unusual compilers. | 55 Build fixes for unusual compilers. |
| 46 | 56 |
| 47 Track high water mark for RWX memory. | 57 Track high water mark for RWX memory. |
| 48 | 58 |
| (...skipping 1999 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2048 | 2058 |
| 2049 Improved debugger support by allowing nested break points and by | 2059 Improved debugger support by allowing nested break points and by |
| 2050 dealing with stack-overflows when compiling functions before | 2060 dealing with stack-overflows when compiling functions before |
| 2051 setting break points in them. | 2061 setting break points in them. |
| 2052 | 2062 |
| 2053 | 2063 |
| 2054 2008-07-03: Version 0.1.0 | 2064 2008-07-03: Version 0.1.0 |
| 2055 | 2065 |
| 2056 Initial export. | 2066 Initial export. |
| 2057 | 2067 |
| OLD | NEW |