File: Changes

package info (click to toggle)
libjavascript-perl 1.08-1%2Blenny1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 412 kB
  • ctags: 203
  • sloc: perl: 1,686; ansic: 1,620; makefile: 55
file content (138 lines) | stat: -rw-r--r-- 7,622 bytes parent folder | download
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
Revision history for Perl extension JavaScript.

1.08 Thu May 8 2008
    - Fixes Makefile.PL issues which made it fail on various platforms when trying to compile test app.
    - Added option to skip building of test app. Set environment variable JS_FORCE to a true value.
    
1.07 Tue May 6 2008
    - Makefile.PL should abort with exit code 0 if conditions are not met instead of exit code 1.
    - Don't increase refcount for object originating from Perl (James Duncan).
    - Make bind_value croak if trying to rebind an already existing property.
    - bind_value (object|function) will now throw an error if the target already exists. [rt.cpan.org #35572]
    - Added unbind_value to remove objects, functions and value from the context. [rt.cpan.org #35572]
    - Fix longtime memory leak caused by decreasing refcount on RV instead of on the 
      SV the RV references. [rt.cpan.org #35571]
    
1.06 Fri Apr 18 2008
    - Objects returned when creating constructor for bound classes should not increment
      refcount because this causes the objects to never be freed (James Duncan)
    - Docs stated argument constructor could be omitted in bind_class which wasn't the case and 
      so now it can and a default constructor will be created.
      
1.05 Tue Apr 1 2008
    - Drop support for error handlers
    - This module now requires SpiderMonkey 1.7 or later.
    - Makefile.PL now compiles a small test to see if libs and headers can be found
    - Makefile.PL now discovers install locations on CentOS5 (Gavin Carr)
    - Drop support for Perl 5.6.x and earlier because we need some API symbols not available there 
      and they don't support unicode properly either. [rt.cpan.org #31114]
      
1.04 Sat Nov 17 2007
    - Skip exception tests on engines less than 1.7 since these seem to be broken.
    - Free memory allocated by JS_smprintf when converting from utf8 strings (spotted by Ash Berlin)
    - Don't call js_ValueToXMLString but instead call JS method "toXMLString" on the object [rt.cpan.org #26411]
    - Convert 64bit Perl ints to JSDouble if they are too big to fit in JS ints [rt.cpan.org #26474] (Niko Tyni)
    - Add more include paths when building on debian [rt.cpan.org #26411] (Niko Tyni)
    - Fix typo in exceptions.c that didn't get global object correctly [rt.cpan.org #26411] (Niko Tyni)
    - Use JS_ExecuteScript instead of js_Execute [rt.cpan.org #26411] (Niko Tyni)
    - Allow keys/properties to be unicode (Fotango)
    - Object construction can now throw exceptions and it'll propagate to JS space [rt.cpan.org #26215]
    - Handle recursive structures better (Fotango)
    - Specify $(O_FILES) instead as a list of .o files as Writefile(OBJECT => ...)
    - Use JS_CallFunction instead of js_InternalCall so we can link aginst libjs build with hidden internals [rt.cpan.org #26411]
    - Remove support for custom stacksize since it's not what we thought it was (Fotango)
    - Add tests for exceptions (Fotango)
    - Split up giant .XS file into smaller pieces
    - Added CREDITS to MANIFEST so it's bundled with the distribution
    
1.03 Wed Feb 21 2007
    - Honor value of JS_ENABLE_E4X
    - Improved README
    - Added CREDITS
    - Remove unused variables to silence some cc warnings
    - Remove ; from #include directive that can cause compilation warning (Fotango)
    - Skip t/24-c-level-interrupt-handler.t if Inline::C is not installed (Fotango)
    - Added module Test::JavaScript::More that's like Test::More but for JavaScript (Fotango)
    - Added support extending JavaScript::Runtime. This obsoletes "(void *) ext" field in PJS_Runtime and PJS_Context.
    - Added support for multple interrupt handlers. One at perl level and unlimited at C level.
    - A report->linebuf that's NULL should be undefined and not an empty string (Fotango)
    - Use SvPVutf8 macro instead of accessing via sv_2svutf8 (Fotango)
    - Added JavaScript->supports(@features) to check feature support such as e4x, ut8, threading.
    - Added does_support_utf8, does_support_threading and does_support_e4x. But really one should
      be using the method above.
    - Bridge E4X objects into perl space as strings (Fotango)
    - Allow building with debug symbols (set JS_DEBUG to a true value) (Fotango)
    - Allow setting JS_THREADSAFE and JS_UTF8 to true/false to avoid the prompts (Fotango)

1.02 Mon Feb 12 2007
    - Makefile.PL now generates a JavaScript_Env.h that sets correct defines and includes correct headers
    - Structs, macros etc are now in a JavaScript.h
    - Header files and typemap is now installed with module
    - Added ext field (void *) to PJS_Runtime and PJS_Context that can be used custom stuff
            
1.01 Mon Feb 12 2007
    - Added support for detecting DarwinPorts [rt.cpan.org #14910]
    - Added missing test for converting JavaScript booleans -> Perl
    - Integrated patch that fixes compilation problems on Debian (Toru Yamaguchi, Daniel Burke)
    - Cleaned up TODO

1.00 Mon Sep 4 2006
    - Release of 1.00

1.00_02 Sat Aug 19 2006
    - Incorporated patch to support new SpiderMokey installation-scheme in Debian [rt.cpan.org #18152]
    - Passing ERRSV to SVToJSVAL doesn't seem to be safe so we'll pass a copy instead (Tom Insam)
    - Cleaning up some internal function names

1.00_01 Tue Jul 11 2006
    - Fixed invocation of methods on objects
    - Added support for "static" methods of classes, i.e. "Test.foo(...)" should now work
    - Added support for "static" properties of classes, i.e. "Test.bar = 10"; should now work
    - get_engine_version now returns a list in list context with (engine, version and date of build)
    - You can now attach a custom interrupt handler to a runtime for tracing stuff
    - Added more tests
    - Integrated fixes by Fotango (pathes by Chia-liang Kao, Tom Insam, James Duncan)
        - Support for UTF8 in scripts if SpiderMonkey can handle it
        - bind_value in JavaScript::Context
        - Encapsulate returned JavaScript functions as JavaScript::Function objects
        - Better exception handling
        - Unitialized line variable in jss_compile
        - Make sure JavaScript::Context->can also handles undefined values
        - Lots or more tests
        - And lots more

0.55 Wed Jun 30 9:05:00 CET 2005
    - Fixed error handling (patch by G. Allen Morris III)

0.54 Tue Jun 29 11:50:00 CET 2005
    - Make Makefile.PL play happy games with Gentoo (patch by sungo)

0.53 Fri Mar 18 19:49:25 CET 2005 (Joost Diepenmaat)
    - Added JS_THREADSAFE define, which fixed bug on perl 5.8.5
      thread-multi linux
    - added tests for debian spidermonkey libs (debian users can
      now do "apt-get install libsmjs-dev" and compile the module)
    - Added JS_PROP_ACCESSOR
    - Added conversion of boolean values from JS to Perl
    - moved JS_THREADSAFE to Makefile.PL and made code handle handle
      both cases (though it appears to be mandatory to get the code
      to run on perl 5.8.6 threaded and unthreaded)
    - Fixed a couple of alloc()s
    
0.52 Sat Aug 11 22:47:00 2001
    - Added can method to JavaScript::Context
    - Removed the need of passing the JSClass name to bind_object
    - Fixed issues with package
    - Fixed return from call
    - Brought docs up to sync with implementation

0.51 Thu Jul 26 12:01:00 2001
    - Changed new_context to create_context to match documentation
    - Changed create_context to not try and take named arguments

0.5 Wed Jul 25 14:20:10 2001
    - First public release
    
0.01 Mon Mar 19 09:51:10 2001
    - original version; created by h2xs 1.21 with options
        -f -n JavaScript