forked from gonzus/JavaScript-V8-XS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChanges
73 lines (58 loc) · 2.73 KB
/
Changes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
0.000016 2019-09-02
* Update Makefile.PL to work on Linux and Mac
* Allow reading V8 config from a json file (default: version 6)
* Allow specifying version / location of V8 files
0.000015 2019-08-15
* Code and Makefile.PL changes for V8, including making the same
code compile against V8 6.x and 7.x
0.000014 2019-08-14
* Add possibility to retrieve V8 version information.
0.000013 2019-06-28
* Prefer string value for dualvars.
0.000012 2019-04-05
* Fix broken compilation on linux.
0.000011 2019-04-05
* Fix conversion of large integers from Perl to JS.
* Hide some undesired warnings.
0.000010 2019-03-04
* Support sending cyclic data to the console.
* Update ppport.h to 3.43.
* Improve docs.
0.000009 2018-10-31
* Support passing Perl objects with magic into JS.
* If perl sub dies, handle by dying.
0.000008 2018-09-11
* Treat references with more care:
+ Recursively dereference any references.
+ For \0 and \1, convert into false and true.
+ For any other references, use the underlying data.
* Allow passing blessed objects to JS and back; ignore the fact
that they are blessed and treat them as data.
* Improve tests.
0.000007 2018-09-10
* Bring back dispatch_function_in_event_loop() to have an easy
migration path from this to eval(); we will remove it soon.
* Make stacktraces more similar between Duktape and V8.
0.000006 2018-08-28
* Convert JS booleans into JSON::PP::Boolean objects.
This allows us to roundtrip, especially for cases such as
reading a JSON file in JS (which will likely use booleans)
and passing that to / from Perl.
* Get rid of dispatch_function_in_event_loop(). It is
actually better that calling eval() always tries to
dispatch any pending timers after running the requested code.
* Fixed wrong references to Duktape.
0.000005 2018-07-27
* Add support for removing objects / slots.
0.000004 2018-07-11
* Add method reset() to reset the VM to pristine conditions.
* Add method global_objects().
* Add a comment regarding external dependencies.
* Improve perldoc.
0.000003 2018-07-10
* Code that display source for errors now is similar to Duktape's.
* Clean up and expand perldoc.
0.000002 2018-07-04
* First public release.
0.000001 2018-06-13
* Initial commit.