0.18 20101122
. Add test for pop(), actually make pop() work
. Add test for splice(), actually make splice() work
+ Add as_list, an exportable function in MozRepl::RemoteObject,
that allows bulk-fetching of arrays.
0.17 20101120
. Added test for circular reference fixed in 0.16
. Added more support for command queueing. Destructors can now
be queued until program exit, repl shutdown or
until the next command is executed, whichever comes first.
+ Actually call the callback set up by ->__on_destroy
. Added a test that the __on_destroy callbacks get called
0.16 20101119
. Enable use_queue parameter (but leave it undocumented)
+ Fix memory leak when using ->declare. This should fix the messages
during global destruction.
0.15 20101021
. Filter object for only immediate properties. This means that inherited
properties don't show up anymore in keys %$obj or using exists. You
can still get at their values though.
See L<http://yuiblog.com/blog/2006/09/26/for-in-intrigue/> for a
discussion of filtering and why it should happen.
. Implement C<delete> (and tests) for hashes
0.14 20101017
. Fix ->__event() to create the event in the correct .document.
This fixes intermittent errors that were raised if (for example)
the Firefox Javascript Console was the topmost Firefox window.
. Add a test that checks that the Changes file has a well-formed date
for every version
0.13 20100810
. Squelch some warnings when global destruction pulls out the rug
from under our feet.
. Don't fetch results from Firefox if we don't need them.
STORE() in tied elements should not return a value.
0.12 20100625
. Fix bad unquoted passthrough of numbers with a leading zero. This
led to those numbers being interpreted as octal numbers.
Reported and diagnosed by Jess Robinson and James Mastros
. Document limitations of passthrough
+ Die with an informative message if we can't connect
0.11 20091130
. Don't carp() in ::TiedHash or ::TiedArray
. Added "launch" option to launch a mozrepl process
. This means we need IPC::Run as a prerequisite
0.10 20091126
. Add way to deregister callbacks to release the memory
taken up on the Perl side for them.
0.09 20091121
. Add tests for multiple bridge instances
. Multiple bridge instances work (except for some warnings
originating from MozRepl.pm)
. Some code cleanup
0.08 20091111
. Localize $@ in the destructor so we don't eat
exceptions.
. Allow for passing of multiple parameters in callbacks
0.07 20091109
. Always use our own JSON encoder on the Javascript side.
The native encoders don't output ASCII. This is sad,
but there seems to be a problem with the encodings along the way.
0.06 20091102
. Added __event() to send arbitrary events
0.05 20091031
. Implement callbacks/events
0.04 20091030
. Added exists functionality for hashes
. added $bridge->appinfo as a convenience function
0.03 20091029
! Fixed ->__xpath
! Fixed bad use of ->declare
* Use the stable but large encoding of 7-bit ASCII
for communication by switching to String.toSourceCode() on the
JS side.
0.02 20091027
* ->__xpath returned numbers instead of objects
* The object was split into two classes, one for bridge functionality
and one for instance functionality
* $bridge->declare() for declaring cached anonymous functions
0.01 20091018
. released on CPAN