OLD | NEW |
| 1 2009-12-03: Version 2.0.3 |
| 2 |
| 3 Optimized handling and adding of strings, for-in and Array.join. |
| 4 |
| 5 Heap serialization is now non-destructive. |
| 6 |
| 7 Improved profiler support with information on time spend in C++ |
| 8 callbacks registered through the API. |
| 9 |
| 10 Added commands to the debugger protocol for starting/stopping |
| 11 profiling. |
| 12 |
| 13 Enabled the non-optimizing compiler for top-level code. |
| 14 |
| 15 Changed the API to only allow strings to be set as data objects on |
| 16 Contexts and scripts to avoid potentially keeping global objects |
| 17 around for too long (issue 528). |
| 18 |
| 19 OpenBSD support patch by Peter Valchev <pvalchev@gmail.com>. |
| 20 |
| 21 Fixed bugs. |
| 22 |
| 23 |
1 2009-11-24: Version 2.0.2 | 24 2009-11-24: Version 2.0.2 |
2 | 25 |
3 Improved profiler support. | 26 Improved profiler support. |
4 | 27 |
5 Fixed bug that broke compilation of d8 with readline support. | 28 Fixed bug that broke compilation of d8 with readline support. |
6 | 29 |
7 | 30 |
8 2009-11-20: Version 2.0.1 | 31 2009-11-20: Version 2.0.1 |
9 | 32 |
10 Fixed crash bug in String.prototype.replace. | 33 Fixed crash bug in String.prototype.replace. |
(...skipping 16 matching lines...) Expand all Loading... |
27 | 50 |
28 Fixed a number of debugger issues. | 51 Fixed a number of debugger issues. |
29 | 52 |
30 Fixed bugs. | 53 Fixed bugs. |
31 | 54 |
32 | 55 |
33 2009-10-29: Version 1.3.18 | 56 2009-10-29: Version 1.3.18 |
34 | 57 |
35 Reverted a change which caused crashes in RegExp replace. | 58 Reverted a change which caused crashes in RegExp replace. |
36 | 59 |
37 » Reverted a change which caused Chromium ui_tests failure. | 60 Reverted a change which caused Chromium ui_tests failure. |
38 | 61 |
39 | 62 |
40 2009-10-28: Version 1.3.17 | 63 2009-10-28: Version 1.3.17 |
41 | 64 |
42 Added API method to get simple heap statistics. | 65 Added API method to get simple heap statistics. |
43 | 66 |
44 Improved heap profiler support. | 67 Improved heap profiler support. |
45 | 68 |
46 Fixed the implementation of the resource constraint API so it | 69 Fixed the implementation of the resource constraint API so it |
47 works when using snapshots. | 70 works when using snapshots. |
(...skipping 1351 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1399 | 1422 |
1400 Improved debugger support by allowing nested break points and by | 1423 Improved debugger support by allowing nested break points and by |
1401 dealing with stack-overflows when compiling functions before | 1424 dealing with stack-overflows when compiling functions before |
1402 setting break points in them. | 1425 setting break points in them. |
1403 | 1426 |
1404 | 1427 |
1405 2008-07-03: Version 0.1.0 | 1428 2008-07-03: Version 0.1.0 |
1406 | 1429 |
1407 Initial export. | 1430 Initial export. |
1408 | 1431 |
OLD | NEW |