OLD | NEW |
| 1 2009-10-28: Version 1.3.17 |
| 2 |
| 3 Added API method to get simple heap statistics. |
| 4 |
| 5 Improved heap profiler support. |
| 6 |
| 7 Fixed the implementation of the resource constraint API so it |
| 8 works when using snapshots. |
| 9 |
| 10 Fixed a number of issues in the Windows 64-bit version. |
| 11 |
| 12 Optimized calls to API getters. |
| 13 |
| 14 Added valgrind notification on code modification to the 64-bit version. |
| 15 |
| 16 Fixed issue where we logged shared library addresses on Windows at |
| 17 startup and never used them. |
| 18 |
| 19 |
1 2009-10-16: Version 1.3.16 | 20 2009-10-16: Version 1.3.16 |
2 | 21 |
3 X64: Convert smis to holding 32 bits of payload. | 22 X64: Convert smis to holding 32 bits of payload. |
4 | 23 |
5 Introduce v8::Integer::NewFromUnsigned method. | 24 Introduce v8::Integer::NewFromUnsigned method. |
6 | 25 |
7 Add missing null check in Context::GetCurrent. | 26 Add missing null check in Context::GetCurrent. |
8 | 27 |
9 Add trim, trimLeft and trimRight methods to String | 28 Add trim, trimLeft and trimRight methods to String |
10 Patch by Jan de Mooij <jandemooij@gmail.com> | 29 Patch by Jan de Mooij <jandemooij@gmail.com> |
(...skipping 23 matching lines...) Expand all Loading... |
34 interceptors. | 53 interceptors. |
35 | 54 |
36 Fix the stack limits setting API to work correctly with threads. The | 55 Fix the stack limits setting API to work correctly with threads. The |
37 stack limit now needs to be set to each thread thich is used with V8. | 56 stack limit now needs to be set to each thread thich is used with V8. |
38 | 57 |
39 Remove the high-priority flag from IdleNotification() | 58 Remove the high-priority flag from IdleNotification() |
40 | 59 |
41 Ensure V8 is initialized before locking and unlocking threads. | 60 Ensure V8 is initialized before locking and unlocking threads. |
42 | 61 |
43 Implemented a new JavaScript minifier for compressing the source of | 62 Implemented a new JavaScript minifier for compressing the source of |
44 the built-in JavaScript. This Remove non-Open Source code from Douglas | 63 the built-in JavaScript. This removes non-Open Source code from Douglas |
45 Crockford from the project. | 64 Crockford from the project. |
46 | 65 |
47 Added a missing optimization in StringCharAt. | 66 Added a missing optimization in StringCharAt. |
48 | 67 |
49 Fixed some flaky socket tests. | 68 Fixed some flaky socket tests. |
50 | 69 |
51 Change by Alexander Botero-Lowry to fix profiler sampling on FreeBSD | 70 Change by Alexander Botero-Lowry to fix profiler sampling on FreeBSD |
52 in 64-bit mode. | 71 in 64-bit mode. |
53 | 72 |
54 Fixed memory leaks in the thread management code. | 73 Fixed memory leaks in the thread management code. |
(...skipping 1286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1341 | 1360 |
1342 Improved debugger support by allowing nested break points and by | 1361 Improved debugger support by allowing nested break points and by |
1343 dealing with stack-overflows when compiling functions before | 1362 dealing with stack-overflows when compiling functions before |
1344 setting break points in them. | 1363 setting break points in them. |
1345 | 1364 |
1346 | 1365 |
1347 2008-07-03: Version 0.1.0 | 1366 2008-07-03: Version 0.1.0 |
1348 | 1367 |
1349 Initial export. | 1368 Initial export. |
1350 | 1369 |
OLD | NEW |