| OLD | NEW |
| 1 2011-06-15: Version 3.4.4 |
| 2 |
| 3 Added snapshot compression support and --stress-opt flag to d8. |
| 4 |
| 5 Improved performance of try/catch. |
| 6 |
| 7 Several GYP-related changes: Added support for building Xcode project |
| 8 files. Make the ARM simulator build with GYP again. Generate Makefiles |
| 9 for all architectures on Linux. |
| 10 |
| 11 Fixed Array.prototype.{reduce,reduceRight} to pass undefined as the |
| 12 receiver for strict mode callbacks. (issue 1436) |
| 13 |
| 14 Fixed a bug where an array load was incorrectly hoisted by GVN. |
| 15 |
| 16 Handle 'undefined' correctly when === has been specialized for doubles. |
| 17 (issue 1434) |
| 18 |
| 19 Corrected the limit of local variables in an optimized function from 64 |
| 20 to 63. |
| 21 |
| 22 Correctly set ReadOnly flag on indexed properties when using the API Set |
| 23 method. (issue 1470) |
| 24 |
| 25 Give the correct error message when Object.isExtensible is called on a |
| 26 non-object. (issue 1452) |
| 27 |
| 28 Added GetOwnPropertyNames method for Object in the API. Patch by Peter |
| 29 Varga. |
| 30 |
| 31 Do not redefine properties unneccesarily in seal and freeze. (issue |
| 32 1447) |
| 33 |
| 34 IsExecutionTerminating has an Isolate parameter now. |
| 35 |
| 36 Distinguish keyed loads with a symbol key from fast elements loads, |
| 37 avoiding some useless deoptimizations. (issue 1471) |
| 38 |
| 39 |
| 1 2011-06-08: Version 3.4.3 | 40 2011-06-08: Version 3.4.3 |
| 2 | 41 |
| 3 Clear the global thread table when an isolate is disposed | 42 Clear the global thread table when an isolate is disposed |
| 4 (issue 1433). | 43 (issue 1433). |
| 5 | 44 |
| 6 Converted time zone name to UTF8 on Windows (issue 1290). | 45 Converted time zone name to UTF8 on Windows (issue 1290). |
| 7 | 46 |
| 8 Limited the number of arguments in a function call to 32766 | 47 Limited the number of arguments in a function call to 32766 |
| 9 (issue 1413). | 48 (issue 1413). |
| 10 | 49 |
| 11 Compress sources of JS libraries in addition to the snapshot. | 50 Compress sources of JS libraries in addition to the snapshot. |
| 12 | 51 |
| 13 Fixed a bug in Lithium environment iteration. | 52 Fixed a bug in Lithium environment iteration. |
| 14 | 53 |
| 15 Performance improvements on all platforms. | 54 Performance improvements on all platforms. |
| 16 | 55 |
| 56 |
| 17 2011-06-06: Version 3.4.2 | 57 2011-06-06: Version 3.4.2 |
| 18 | 58 |
| 19 More work on ES-Harmony proxies. Still hidden behind a flag. | 59 More work on ES-Harmony proxies. Still hidden behind a flag. |
| 20 | 60 |
| 21 Fixed some crash bugs and improved performance. | 61 Fixed some crash bugs and improved performance. |
| 22 | 62 |
| 23 Fixed building with gdb debugging support. | 63 Fixed building with gdb debugging support. |
| 24 | 64 |
| 25 Do not install SIGPROF handler until it is needed. | 65 Do not install SIGPROF handler until it is needed. |
| 26 | 66 |
| 27 Added DateTimeFormat to i18n API. | 67 Added DateTimeFormat to i18n API. |
| 28 | 68 |
| 29 Fixed compilation on OpenBSD. | 69 Fixed compilation on OpenBSD. |
| 30 | 70 |
| 31 Take the ulimit into account when sizing the heap. OpenBSD users | 71 Take the ulimit into account when sizing the heap. OpenBSD users |
| 32 may still have to increase the default ulimit to run heavy pages in | 72 may still have to increase the default ulimit to run heavy pages in |
| 33 the browser. | 73 the browser. |
| 34 | 74 |
| 75 |
| 35 2011-06-01: Version 3.4.1 | 76 2011-06-01: Version 3.4.1 |
| 36 | 77 |
| 37 Fixed JSON stringify issue with arrays. | 78 Fixed JSON stringify issue with arrays. |
| 38 | 79 |
| 39 Changed calls to JS builtins to be passed undefined when called with | 80 Changed calls to JS builtins to be passed undefined when called with |
| 40 implicit receiver. | 81 implicit receiver. |
| 41 | 82 |
| 42 Implemented the set trap for Harmony proxies. Proxies still need to | 83 Implemented the set trap for Harmony proxies. Proxies still need to |
| 43 be enabled with the --harmony-proxies flag. | 84 be enabled with the --harmony-proxies flag. |
| 44 | 85 |
| (...skipping 2842 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2887 | 2928 |
| 2888 Improved debugger support by allowing nested break points and by | 2929 Improved debugger support by allowing nested break points and by |
| 2889 dealing with stack-overflows when compiling functions before | 2930 dealing with stack-overflows when compiling functions before |
| 2890 setting break points in them. | 2931 setting break points in them. |
| 2891 | 2932 |
| 2892 | 2933 |
| 2893 2008-07-03: Version 0.1.0 | 2934 2008-07-03: Version 0.1.0 |
| 2894 | 2935 |
| 2895 Initial export. | 2936 Initial export. |
| 2896 | 2937 |
| 2938 # Local Variables: |
| 2939 # mode:text |
| 2940 # End: |
| OLD | NEW |