| OLD | NEW |
| 1 2010-12-21: Version 3.0.4 |
| 2 |
| 3 Added Date::ResetCache() to the API so that the cached values in the |
| 4 Date object can be reset to allow live DST / timezone changes. |
| 5 |
| 6 Extended existing support for printing (while debugging) the contents |
| 7 of objects. Added support for printing objects from release builds. |
| 8 |
| 9 Fixed V8 issues 989, 1006, and 1007. |
| 10 |
| 11 |
| 12 2010-12-17: Version 3.0.3 |
| 13 |
| 14 Reapplied all changes for version 3.0.1. |
| 15 |
| 16 Improved debugger protocol for remote debugging. |
| 17 |
| 18 Added experimental support for using gyp to generate build files |
| 19 for V8. |
| 20 |
| 21 Fixed implementation of String::Write in the API (issue 975). |
| 22 |
| 23 |
| 24 2010-12-15: Version 3.0.2 |
| 25 |
| 26 Revert version 3.0.1 and patch 3.0.1.1. |
| 27 |
| 28 |
| 29 2010-12-13: Version 3.0.1 |
| 30 |
| 31 Added support for an experimental internationalization API as an |
| 32 extension. This extension is disabled by default but can be enabled |
| 33 when building V8. The ECMAScript internationalization strawman is |
| 34 at http://wiki.ecmascript.org/doku.php?id=strawman:i18n_api. |
| 35 |
| 36 Made RegExp character class parsing stricter. This mirrors a change |
| 37 to RegExp parsing in WebKit. |
| 38 |
| 39 Fixed a bug in Object.defineProperty when used to change attributes |
| 40 of an existing property. It incorrectly set the property value to |
| 41 undefined (issue 965). |
| 42 |
| 43 Fixed several different compilation failures on various platforms |
| 44 caused by the 3.0.0 release. |
| 45 |
| 46 Optimized Math.pow so it can work on unboxed doubles. |
| 47 |
| 48 Sped up quoting of JSON strings by removing one traversal of the |
| 49 string. |
| 50 |
| 51 |
| 1 2010-12-07: Version 3.0.0 | 52 2010-12-07: Version 3.0.0 |
| 2 | 53 |
| 3 Improved performance by (partially) addressing issue 957 on | 54 Improved performance by (partially) addressing issue 957 on |
| 4 IA-32. Still needs more work for the other architectures. | 55 IA-32. Still needs more work for the other architectures. |
| 5 | 56 |
| 6 | 57 |
| 7 2010-11-29: Version 2.5.9 | 58 2010-11-29: Version 2.5.9 |
| 8 | 59 |
| 9 Fixed crashes during GC caused by partially initialize heap | 60 Fixed crashes during GC caused by partially initialize heap |
| 10 objects. | 61 objects. |
| (...skipping 114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 125 script to tools and --ll-prof flag to V8. | 176 script to tools and --ll-prof flag to V8. |
| 126 | 177 |
| 127 | 178 |
| 128 2010-10-18: Version 2.5.0 | 179 2010-10-18: Version 2.5.0 |
| 129 | 180 |
| 130 Fixed bug in cache handling of lastIndex on global regexps | 181 Fixed bug in cache handling of lastIndex on global regexps |
| 131 (issue http://crbug.com/58740). | 182 (issue http://crbug.com/58740). |
| 132 | 183 |
| 133 Added USE_SIMULATOR macro that explicitly indicates that we wish to use | 184 Added USE_SIMULATOR macro that explicitly indicates that we wish to use |
| 134 the simulator as the execution engine (by Mark Lam <mark.lam@palm.com> | 185 the simulator as the execution engine (by Mark Lam <mark.lam@palm.com> |
| 135 » from Hewlett-Packard Development Company, LP). | 186 from Hewlett-Packard Development Company, LP). |
| 136 | 187 |
| 137 Fixed compilation error on ARM with gcc 4.4 (issue 894). | 188 Fixed compilation error on ARM with gcc 4.4 (issue 894). |
| 138 | 189 |
| 139 | 190 |
| 140 2010-10-13: Version 2.4.9 | 191 2010-10-13: Version 2.4.9 |
| 141 | 192 |
| 142 Fixed a bug in the handling of conditional expressions in test | 193 Fixed a bug in the handling of conditional expressions in test |
| 143 contexts in compiler for top-level code. | 194 contexts in compiler for top-level code. |
| 144 | 195 |
| 145 Added "//@ sourceURL" information to the StackTrace API. | 196 Added "//@ sourceURL" information to the StackTrace API. |
| (...skipping 2129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2275 | 2326 |
| 2276 Improved debugger support by allowing nested break points and by | 2327 Improved debugger support by allowing nested break points and by |
| 2277 dealing with stack-overflows when compiling functions before | 2328 dealing with stack-overflows when compiling functions before |
| 2278 setting break points in them. | 2329 setting break points in them. |
| 2279 | 2330 |
| 2280 | 2331 |
| 2281 2008-07-03: Version 0.1.0 | 2332 2008-07-03: Version 0.1.0 |
| 2282 | 2333 |
| 2283 Initial export. | 2334 Initial export. |
| 2284 | 2335 |
| OLD | NEW |