| OLD | NEW |
| 1 2008-10-30: Version 0.4.2 |
| 2 |
| 3 Improved performance of Array.prototype.concat by moving the |
| 4 implementation to C++ (issue 123). |
| 5 |
| 6 Fixed heap growth policy to avoid growing old space to its maximum |
| 7 capacity before doing a garbage collection and fixed issue that |
| 8 would lead to artificial out of memory situations (issue 129). |
| 9 |
| 10 Fixed Date.prototype.toLocaleDateString to return the date in the |
| 11 same format as WebKit. |
| 12 |
| 13 Added missing initialization checks to debugger API. |
| 14 |
| 15 Added removing of unused maps during GC. |
| 16 |
| 17 |
| 1 2008-10-28: Version 0.4.1 | 18 2008-10-28: Version 0.4.1 |
| 2 | 19 |
| 3 Added caching of RegExp data in compilation cache. | 20 Added caching of RegExp data in compilation cache. |
| 4 | 21 |
| 5 Added Visual Studio project file for d8 shell. | 22 Added Visual Studio project file for d8 shell. |
| 6 | 23 |
| 7 Fixed function call performance regression introduced in version | 24 Fixed function call performance regression introduced in version |
| 8 0.4.0 when splitting the global object in two parts (issue 120). | 25 0.4.0 when splitting the global object in two parts (issue 120). |
| 9 | 26 |
| 10 Fixed issue 131 by checking for empty handles before throwing and | 27 Fixed issue 131 by checking for empty handles before throwing and |
| (...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 | 424 |
| 408 Improved debugger support by allowing nested break points and by | 425 Improved debugger support by allowing nested break points and by |
| 409 dealing with stack-overflows when compiling functions before | 426 dealing with stack-overflows when compiling functions before |
| 410 setting break points in them. | 427 setting break points in them. |
| 411 | 428 |
| 412 | 429 |
| 413 2008-07-03: Version 0.1.0 | 430 2008-07-03: Version 0.1.0 |
| 414 | 431 |
| 415 Initial export. | 432 Initial export. |
| 416 | 433 |
| OLD | NEW |