OLD | NEW |
| 1 2010-08-11: Version 2.3.7 |
| 2 |
| 3 Reduced size of heap snapshots produced by heap profiler (issue 783). |
| 4 |
| 5 Introduced v8::Value::IsRegExp method. |
| 6 |
| 7 Fixed CPU profiler crash in start / stop sequence when non-existent |
| 8 name is passed (issue http://crbug.com/51594). |
| 9 |
| 10 Introduced new indexed property query callbacks API (issue 816). This |
| 11 API is guarded by USE_NEW_QUERY_CALLBACK define and is disabled |
| 12 by default. |
| 13 |
| 14 Removed support for object literal get/set with number/string |
| 15 property name. |
| 16 |
| 17 Fixed handling of JSObject::elements in CalculateNetworkSize |
| 18 (issue 822). |
| 19 |
| 20 Allow compiling with strict aliasing enabled on GCC 4.4 (issue 463). |
| 21 |
| 22 |
1 2010-08-09: Version 2.3.6 | 23 2010-08-09: Version 2.3.6 |
2 | 24 |
3 » RegExp literals create a new object every time they are evaluated | 25 RegExp literals create a new object every time they are evaluated |
4 » (issue 704). | 26 (issue 704). |
5 | 27 |
6 » Object.seal and Object.freeze return the modified object (issue 809). | 28 Object.seal and Object.freeze return the modified object (issue 809). |
7 | 29 |
8 » Fix building using GCC 4.4.4. | 30 Fix building using GCC 4.4.4. |
9 | 31 |
10 | 32 |
11 2010-08-04: Version 2.3.5 | 33 2010-08-04: Version 2.3.5 |
12 | 34 |
13 Added support for ES5 property names. Object initialisers and | 35 Added support for ES5 property names. Object initialisers and |
14 dot-notation property access now allows keywords. Also allowed | 36 dot-notation property access now allows keywords. Also allowed |
15 non-identifiers after "get" or "set" in an object initialiser. | 37 non-identifiers after "get" or "set" in an object initialiser. |
16 | 38 |
17 Randomize the addresses of allocated executable memory on Windows. | 39 Randomize the addresses of allocated executable memory on Windows. |
18 | 40 |
(...skipping 1932 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1951 | 1973 |
1952 Improved debugger support by allowing nested break points and by | 1974 Improved debugger support by allowing nested break points and by |
1953 dealing with stack-overflows when compiling functions before | 1975 dealing with stack-overflows when compiling functions before |
1954 setting break points in them. | 1976 setting break points in them. |
1955 | 1977 |
1956 | 1978 |
1957 2008-07-03: Version 0.1.0 | 1979 2008-07-03: Version 0.1.0 |
1958 | 1980 |
1959 Initial export. | 1981 Initial export. |
1960 | 1982 |
OLD | NEW |