OLD | NEW |
| 1 2011-10-05: Version 3.6.5 |
| 2 |
| 3 New incremental garbage collector. |
| 4 |
| 5 Removed the hard heap size limit (soft heap size limit is still |
| 6 700/1400Mbytes by default). |
| 7 |
| 8 Implemented ES5 generic Array.prototype.toString (Issue 1361). |
| 9 |
| 10 V8 now allows surrogate pair codes in decodeURIComponent (Issue 1415). |
| 11 |
| 12 Fixed x64 RegExp start-of-string bug (Issues 1746, 1748). |
| 13 |
| 14 Fixed propertyIsEnumerable for numeric properties (Issue 1692). |
| 15 |
| 16 Fixed the MinGW and Windows 2000 builds. |
| 17 |
| 18 Fixed "Prototype chain is not searched if named property handler does |
| 19 not set a property" (Issue 1636). |
| 20 |
| 21 Made the RegExp.prototype object be a RegExp object (Issue 1217). |
| 22 |
| 23 Disallowed future reserved words as labels in strict mode. |
| 24 |
| 25 Fixed string split to correctly coerce the separator to a string |
| 26 (Issue 1711). |
| 27 |
| 28 API: Added an optional source length field to the Extension |
| 29 constructor. |
| 30 |
| 31 API: Added Debug::DisableAgent to match existing Debug::EnableAgent |
| 32 (Issue 1573). |
| 33 |
| 34 Added "native" target to Makefile for the benefit of Linux distros. |
| 35 |
| 36 Fixed: debugger stops stepping outside evaluate (Issue 1639). |
| 37 |
| 38 More work on ES-Harmony proxies. Still hidden behind a flag. |
| 39 |
| 40 Bug fixes and performance improvements on all platforms. |
| 41 |
| 42 |
1 2011-09-15: Version 3.6.4 | 43 2011-09-15: Version 3.6.4 |
2 | 44 |
3 Fixed d8's broken readline history. | 45 Fixed d8's broken readline history. |
4 | 46 |
5 Removed the need for code delete events in CPU profiler (Issue 1466). | 47 Removed the need for code delete events in CPU profiler (Issue 1466). |
6 | 48 |
7 Fixed debugger stepping next with trycatch recursion (Issue 1639). | 49 Fixed debugger stepping next with trycatch recursion (Issue 1639). |
8 | 50 |
9 Fixing parallel execution in d8 (with -p) and some memory leaks. | 51 Fixing parallel execution in d8 (with -p) and some memory leaks. |
10 | 52 |
(...skipping 3273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3284 setting break points in them. | 3326 setting break points in them. |
3285 | 3327 |
3286 | 3328 |
3287 2008-07-03: Version 0.1.0 | 3329 2008-07-03: Version 0.1.0 |
3288 | 3330 |
3289 Initial export. | 3331 Initial export. |
3290 | 3332 |
3291 # Local Variables: | 3333 # Local Variables: |
3292 # mode:text | 3334 # mode:text |
3293 # End: | 3335 # End: |
OLD | NEW |