summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2011-05-05 13:52:32 +0100
committerBen Murdoch <benm@google.com>2011-05-10 15:41:47 +0100
commitb0fe1620dcb4135ac3ab2d66ff93072373911299 (patch)
tree3487cdc7e01ec56a6f84ea20f4bae596a0b73986 /ChangeLog
parentdf5bff59602802b769e994b0dc1d8869a27fa40c (diff)
downloadandroid_external_v8-b0fe1620dcb4135ac3ab2d66ff93072373911299.tar.gz
android_external_v8-b0fe1620dcb4135ac3ab2d66ff93072373911299.tar.bz2
android_external_v8-b0fe1620dcb4135ac3ab2d66ff93072373911299.zip
Update V8 to r6101 as required by WebKit r74534
Change-Id: I7f84af8dd732f11898fd644b2c2b1538914cb78d
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog59
1 files changed, 58 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 86e41e17..c81d7a73 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,60 @@
+2010-12-21: Version 3.0.4
+
+ Added Date::ResetCache() to the API so that the cached values in the
+ Date object can be reset to allow live DST / timezone changes.
+
+ Extended existing support for printing (while debugging) the contents
+ of objects. Added support for printing objects from release builds.
+
+ Fixed V8 issues 989, 1006, and 1007.
+
+
+2010-12-17: Version 3.0.3
+
+ Reapplied all changes for version 3.0.1.
+
+ Improved debugger protocol for remote debugging.
+
+ Added experimental support for using gyp to generate build files
+ for V8.
+
+ Fixed implementation of String::Write in the API (issue 975).
+
+
+2010-12-15: Version 3.0.2
+
+ Revert version 3.0.1 and patch 3.0.1.1.
+
+
+2010-12-13: Version 3.0.1
+
+ Added support for an experimental internationalization API as an
+ extension. This extension is disabled by default but can be enabled
+ when building V8. The ECMAScript internationalization strawman is
+ at http://wiki.ecmascript.org/doku.php?id=strawman:i18n_api.
+
+ Made RegExp character class parsing stricter. This mirrors a change
+ to RegExp parsing in WebKit.
+
+ Fixed a bug in Object.defineProperty when used to change attributes
+ of an existing property. It incorrectly set the property value to
+ undefined (issue 965).
+
+ Fixed several different compilation failures on various platforms
+ caused by the 3.0.0 release.
+
+ Optimized Math.pow so it can work on unboxed doubles.
+
+ Sped up quoting of JSON strings by removing one traversal of the
+ string.
+
+
+2010-12-07: Version 3.0.0
+
+ Improved performance by (partially) addressing issue 957 on
+ IA-32. Still needs more work for the other architectures.
+
+
2010-11-29: Version 2.5.9
Fixed crashes during GC caused by partially initialize heap
@@ -126,7 +183,7 @@
Added USE_SIMULATOR macro that explicitly indicates that we wish to use
the simulator as the execution engine (by Mark Lam <mark.lam@palm.com>
- from Hewlett-Packard Development Company, LP).
+ from Hewlett-Packard Development Company, LP).
Fixed compilation error on ARM with gcc 4.4 (issue 894).