summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2010-08-11 14:56:33 +0100
committerBen Murdoch <benm@google.com>2010-08-11 14:56:33 +0100
commitbb769b257e753aafcbd96767abb2abc645eaa20c (patch)
treec6fa2c4c5dc62a17135d5e70ba1fd2117ad934e3 /ChangeLog
parent91e42c979b0b259e6ffa5b3ebc410f47b2bb2cda (diff)
downloadandroid_external_v8-bb769b257e753aafcbd96767abb2abc645eaa20c.tar.gz
android_external_v8-bb769b257e753aafcbd96767abb2abc645eaa20c.tar.bz2
android_external_v8-bb769b257e753aafcbd96767abb2abc645eaa20c.zip
Update V8 to r5214 as required by WebKit r65072.
Change-Id: I387277a00cc0949597c0f69a8e4f2da60213c8f2
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog44
1 files changed, 44 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 9a7aa813..b5663744 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,47 @@
+2010-08-09: Version 2.3.6
+
+ RegExp literals create a new object every time they are evaluated
+ (issue 704).
+
+ Object.seal and Object.freeze return the modified object (issue 809).
+
+ Fix building using GCC 4.4.4.
+
+
+2010-08-04: Version 2.3.5
+
+ Added support for ES5 property names. Object initialisers and
+ dot-notation property access now allows keywords. Also allowed
+ non-identifiers after "get" or "set" in an object initialiser.
+
+ Randomize the addresses of allocated executable memory on Windows.
+
+
+2010-08-02: Version 2.3.4
+
+ Fixed problems in implementation of ES5 function.prototype.bind.
+
+ Fixed error when using apply with arguments object on ARM (issue 784).
+
+ Added setting of global flags to debugger protocol.
+
+ Fixed an error affecting cached results of sin and cos (issue 792).
+
+ Removed memory leak from a boundary case where V8 is not initialized.
+
+ Fixed issue where debugger could set breakpoints outside the body
+ of a function.
+
+ Fixed issue in debugger when using both live edit and step in features.
+
+ Added Number-letter (Nl) category to Unicode tables. These characters
+ can now be used in identifiers.
+
+ Fixed an assert failure on X64 (issue 806).
+
+ Performance improvements on all platforms.
+
+
2010-07-26: Version 2.3.3
Fixed error when building the d8 shell in a fresh checkout.