| OLD | NEW |
| 1 2010-01-10: Version 3.0.7 |
| 2 |
| 3 Stopped calling inherited setters when creating object literals |
| 4 (issue 1015). |
| 5 |
| 6 Changed interpretation of malformed \c? escapes in RegExp to match |
| 7 JSC. |
| 8 |
| 9 Enhanced the command-line debugger interface and fixed some minor |
| 10 bugs in the debugger. |
| 11 |
| 12 Performance improvements on the IA32 platform. |
| 13 |
| 14 |
| 15 2010-01-05: Version 3.0.6 |
| 16 |
| 17 Allowed getters and setters on JSArray elements (issue 900). |
| 18 |
| 19 Stopped JSON objects from hitting inherited setters (part of |
| 20 issue 1015). |
| 21 |
| 22 Allowed numbers and strings as names of getters/setters in object |
| 23 initializer (issue 820). |
| 24 |
| 25 Added use_system_v8 option to gyp (off by default), to make it easier |
| 26 for Linux distributions to ship with system-provided V8 library. |
| 27 |
| 28 Exported external array data accessors (issue 1016). |
| 29 |
| 30 Added labelled thread names to help with debugging (on Linux). |
| 31 |
| 32 |
| 33 2011-01-03: Version 3.0.5 |
| 34 |
| 35 Fixed a couple of cast errors for gcc-3.4.3. |
| 36 |
| 37 Performance improvements in GC and IA32 code generator. |
| 38 |
| 39 |
| 1 2010-12-21: Version 3.0.4 | 40 2010-12-21: Version 3.0.4 |
| 2 | 41 |
| 3 Added Date::ResetCache() to the API so that the cached values in the | 42 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. | 43 Date object can be reset to allow live DST / timezone changes. |
| 5 | 44 |
| 6 Extended existing support for printing (while debugging) the contents | 45 Extended existing support for printing (while debugging) the contents |
| 7 of objects. Added support for printing objects from release builds. | 46 of objects. Added support for printing objects from release builds. |
| 8 | 47 |
| 9 Fixed V8 issues 989, 1006, and 1007. | 48 Fixed V8 issues 989, 1006, and 1007. |
| 10 | 49 |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 (issue http://crbug.com/60753). | 184 (issue http://crbug.com/60753). |
| 146 | 185 |
| 147 | 186 |
| 148 2010-10-27: Version 2.5.2 | 187 2010-10-27: Version 2.5.2 |
| 149 | 188 |
| 150 Improved sampler resolution on Linux. | 189 Improved sampler resolution on Linux. |
| 151 | 190 |
| 152 Allowed forcing the use of a simulator from the build script | 191 Allowed forcing the use of a simulator from the build script |
| 153 independently of the host architecture. | 192 independently of the host architecture. |
| 154 | 193 |
| 155 Fixed FreeBSD port (Issue 912). | 194 Fixed FreeBSD port (issue 912). |
| 156 | 195 |
| 157 Made windows-tick-processor respect D8_PATH. | 196 Made windows-tick-processor respect D8_PATH. |
| 158 | 197 |
| 159 Implemented --noinline-new flag fully on IA32, X64 and ARM platforms. | 198 Implemented --noinline-new flag fully on IA32, X64 and ARM platforms. |
| 160 | 199 |
| 161 | 200 |
| 162 2010-10-20: Version 2.5.1 | 201 2010-10-20: Version 2.5.1 |
| 163 | 202 |
| 164 Fixed bug causing spurious out of memory exceptions | 203 Fixed bug causing spurious out of memory exceptions |
| 165 (issue http://crbug.com/54580). | 204 (issue http://crbug.com/54580). |
| (...skipping 2160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2326 | 2365 |
| 2327 Improved debugger support by allowing nested break points and by | 2366 Improved debugger support by allowing nested break points and by |
| 2328 dealing with stack-overflows when compiling functions before | 2367 dealing with stack-overflows when compiling functions before |
| 2329 setting break points in them. | 2368 setting break points in them. |
| 2330 | 2369 |
| 2331 | 2370 |
| 2332 2008-07-03: Version 0.1.0 | 2371 2008-07-03: Version 0.1.0 |
| 2333 | 2372 |
| 2334 Initial export. | 2373 Initial export. |
| 2335 | 2374 |
| OLD | NEW |