blob: f04d7090d86d2580c358275f5b343443f1e98981 [file] [log] [blame]
kasper.lund7276f142008-07-30 08:49:36 +000012008-07-30: Version 0.2.0 (129146)
2
3 Changed all text files to have native svn:eol-style.
4
5 Added a few samples and support for building them. The samples
6 include a simple shell that can be used to benchmark and test V8.
7
8 Changed V8::GetVersion to return the version as a string.
9
10 Added source for lazily loaded scripts to snapshots and made
11 serialization non-destructive.
12
13 Improved ARM support by fixing the write barrier code to use
14 aligned loads and stores and by removing premature locals
15 optimization that relied on broken support for callee-saved
16 registers (removed).
17
18 Refactored the code for marking live objects during garbage
19 collection and the code for allocating objects in paged
20 spaces. Introduced an abstraction for the map word of a heap-
21 allocated object and changed the memory allocator to allocate
22 executable memory only for spaces that may contain code objects.
23
24 Moved StringBuilder to utils.h and ScopedLock to platform.h, where
25 they can be used by debugging and logging modules. Added
26 thread-safe message queues for dealing with debugger events.
27
28 Fixed the source code reported by toString for certain builtin
29 empty functions and made sure that the prototype property of a
30 function is enumerable.
31
32 Improved performance of converting values to condition flags in
33 generated code.
34
35 Merged disassembler-{arch} files.
36
37
kasper.lundaf4734f2008-07-28 12:50:18 +0000382008-07-28: Version 0.1.4 (128918)
39
40 Added support for storing JavaScript stack traces in a stack
41 allocated buffer to make it visible in shallow core dumps.
42 Controlled by the --preallocate-message-memory flag which is
43 disabled by default.
44
45
kasper.lund44510672008-07-25 07:37:58 +0000462008-07-25: Version 0.1.3 (128832)
47
48 Fixed bug in JSObject::GetPropertyAttributePostInterceptor where
49 map transitions would count as properties.
50
51 Allowed aliased eval invocations by treating them as evals in the
52 global context. This may change in the future.
53
54 Added support for accessing the last entered context through the
55 API and renamed Context::Current to Context::GetCurrent and
56 Context::GetSecurityContext to Context::GetCurrentSecurityContext.
57
58 Fixed bug in the debugger that would cause the debugger scripts to
59 be recursively loaded and changed all disabling of interrupts to
60 be block-structured.
61
62 Made snapshot data read-only to allow it to be more easily shared
63 across multiple users of V8 when linked as a shared library.
64
65
kasper.lund212ac232008-07-16 07:07:30 +0000662008-07-16: Version 0.1.2 (127441)
67
68 Fixed building on Mac OS X by recognizing i386 and friends as
69 IA-32 platforms.
70
71 Added propagation of stack overflow exceptions that occur while
72 compiling nested functions.
73
74 Improved debugger with support for recursive break points and
75 handling of exceptions that occur in the debugger JavaScript code.
76
77 Renamed GetInternal to GetInternalField and SetInternal to
78 SetInternalField in the API and moved InternalFieldCount and
79 SetInternalFieldCount from FunctionTemplate to ObjectTemplate.
80
81
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000822008-07-09: Version 0.1.1 (126448)
83
84 Fixed bug in stack overflow check code for IA-32 targets where a
85 non-tagged value in register eax was pushed to the stack.
86
87 Fixed potential quadratic behavior when converting strings to
88 numbers.
89
90 Fixed bug where the return value from Object::SetProperty could
91 end up being the property holder instead of the written value.
92
93 Improved debugger support by allowing nested break points and by
94 dealing with stack-overflows when compiling functions before
95 setting break points in them.
96
97
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000982008-07-03: Version 0.1.0 (125876)
99
kasper.lundbd3ec4e2008-07-09 11:06:54 +0000100 Initial export.
christian.plesner.hansen43d26ec2008-07-03 15:10:15 +0000101