OLD | NEW |
| 1 2009-04-23: Version 1.2.0 |
| 2 |
| 3 Optimized floating-point operations on ARM. |
| 4 |
| 5 Added a number of extensions to the debugger API. |
| 6 |
| 7 Changed the enumeration order for unsigned integer keys to always |
| 8 be numerical order. |
| 9 |
| 10 Added a "read" extension to the shell sample. |
| 11 |
| 12 Added support for Array.prototype.reduce and |
| 13 Array.prototype.reduceRight. |
| 14 |
| 15 Added an option to the SCons build to control Microsoft Visual C++ |
| 16 link-time code generation. |
| 17 |
| 18 Fixed a number of bugs (in particular issue 315, issue 316, |
| 19 issue 317 and issue 318). |
| 20 |
| 21 |
1 2009-04-15: Version 1.1.10 | 22 2009-04-15: Version 1.1.10 |
2 | 23 |
3 Fixed crash bug that occurred when loading a const variable in the | 24 Fixed crash bug that occurred when loading a const variable in the |
4 presence of eval. | 25 presence of eval. |
5 | 26 |
6 Allowed using with and eval in registered extensions in debug mode | 27 Allowed using with and eval in registered extensions in debug mode |
7 by fixing bogus assert. | 28 by fixing bogus assert. |
8 | 29 |
9 Fixed the source position for function returns to enable the | 30 Fixed the source position for function returns to enable the |
10 debugger to break there. | 31 debugger to break there. |
11 | 32 |
12 | 33 |
13 2009-04-14: Version 1.1.9 | 34 2009-04-14: Version 1.1.9 |
14 | 35 |
15 Made the stack traversal code in the profiler robust by avoiding | 36 Made the stack traversal code in the profiler robust by avoiding |
16 to look into the heap. | 37 to look into the heap. |
17 | 38 |
18 Added name inferencing for anonymous functions to facilitate | 39 Added name inferencing for anonymous functions to facilitate |
19 debugging and profiling. | 40 debugging and profiling. |
20 | 41 |
21 Re-enabled stats timers in the developer shell (d8). | 42 Re-enabled stats timers in the developer shell (d8). |
22 | 43 |
23 Fixed issue 303 by avoiding to shortcut cons-symbols. | 44 Fixed issue 303 by avoiding to shortcut cons-symbols. |
24 | 45 |
25 | 46 |
26 2009-04-11: Version 1.1.8 | 47 2009-04-11: Version 1.1.8 |
27 | 48 |
28 Changed test-debug/ThreadedDebugging to be non-flaky (issue 96). | 49 Changed test-debug/ThreadedDebugging to be non-flaky (issue 96). |
29 | 50 |
30 Fixed step-in handling for Function.prototype.apply and call in | 51 Fixed step-in handling for Function.prototype.apply and call in |
31 the debugger (issue 269). | 52 the debugger (issue 269). |
32 | 53 |
33 Fixed v8::Object::DeleteHiddenValue to not bail out when there | 54 Fixed v8::Object::DeleteHiddenValue to not bail out when there |
34 are no hidden properties. | 55 are no hidden properties. |
35 | 56 |
36 Added workaround for crash bug, where external symbol table | 57 Added workaround for crash bug, where external symbol table |
37 entries with deleted resources would lead to NPEs when looking | 58 entries with deleted resources would lead to NPEs when looking |
38 up in the symbol table. | 59 up in the symbol table. |
39 | 60 |
40 | 61 |
41 2009-04-07: Version 1.1.7 | 62 2009-04-07: Version 1.1.7 |
42 | 63 |
43 Added support for easily importing additional environment | 64 Added support for easily importing additional environment |
44 variables into the SCons build. | 65 variables into the SCons build. |
45 | 66 |
46 Optimized strict equality checks. | 67 Optimized strict equality checks. |
(...skipping 760 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
807 | 828 |
808 Improved debugger support by allowing nested break points and by | 829 Improved debugger support by allowing nested break points and by |
809 dealing with stack-overflows when compiling functions before | 830 dealing with stack-overflows when compiling functions before |
810 setting break points in them. | 831 setting break points in them. |
811 | 832 |
812 | 833 |
813 2008-07-03: Version 0.1.0 | 834 2008-07-03: Version 0.1.0 |
814 | 835 |
815 Initial export. | 836 Initial export. |
816 | 837 |
OLD | NEW |