X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Changes;h=c77f730e7c8bd579c0e91a68be4f6e7d6f1e7c77;hb=a86e3e47a167afadf7de1231d6401a1139330ad0;hp=d5a8d09d23ebd62c26bd8f4d51f0384e921108df;hpb=14f66d40970bef63105be046a109c1a32859a8a0;p=perl%2Fmodules%2FVariable-Magic.git diff --git a/Changes b/Changes index d5a8d09..c77f730 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,71 @@ Revision history for Variable-Magic +0.13 2008-03-19 14:35 UTC + + Doc : Link to coverage report. + + Fix : Correct dependencies listing in META.yml. + + Tst : Improved test coverage. + + Tst : Print the patchlevel as a comment. + + Tst : Use is() where it's relevant. + + Tst : t/16-huf.t now really tests interaction with H::U::FH. + +0.12 2008-02-07 18:15 UTC + + Fix : POD error. Thanks to Chris Williams (BinGOs) for the quick + feedback. + +0.11 2008-02-07 17:55 UTC + + Add : Copy callbacks now receive the current key/index in $_[2]. + The current value/element is now in $_[3]. + + Chg : The trigger of copy magic on list assignment with perls greater + than 5.10.0 was caused by uvar magic. Hence, + VMG_COMPAT_HASH_LISTASSIGN_COPY was removed. Use VMG_UVAR + instead. + + Fix : Build failures on patched perls. + + Tst : Added missing exported symbols to 01-import.t. + +0.10 2008-02-04 11:30 UTC + + Add : New script : samples/vm_vs_tie.pl, that benchmarks our uvar + magic versus tied hashes. + + Add : The VMG_COMPAT_* constants can be used from userspace to check + perl magic abilities. + + Fix : Callbacks that returned undef made us croak, breaking the + variable behaviour (regression test in 14-callbacks.t). + + Fix : uvar callbacks weren't tested for non-NULL-ity before being + called (regression test in 28-uvar.t). + + Tst : Fix typo in 25-copy.t that prevented Tie::Hash tests to be ran. + +0.09 2008-02-02 11:30 UTC + + Doc : Explicitely say that uvar callbacks are safely ignored for + non-hashes. + + Doc : Document caveats and fix the usual set of typos. + + Fix : vmg_dispell() didn't check if the ext magic were ours when + counting wizards that have uvar callbacks, resulting in a + possible memory misread. + + Fix : getdata() now returns directly the data object, and no longer a + copy. This caused a leak. + + Tst : Prefix author tests by 9*-. + + Tst : New optional author test : 95-portability-files.t, that uses + Test::Portability::Files when it's present. + + Tst : New test : 14-self.t, that tests application of magic on the + wizard itself. + + Tst : Move Hash::Util::FieldHash tests out of 11-multiple.t to + 15-huf.t. + +0.08 2008-02-01 16:55 UTC + + Add : copy magic for tied arrays/hashes. + + Add : local magic. + + Add : uvar magics : fetch, store, exists, delete for hashes. + +0.07_* 2008-01 + Internal development versions. + +0.06 2007-11-20 10:10 UTC + + Chg : 5.7.3 is now officially required. + + Fix : "data" test failures on 5.8.{0,2}. + + Fix : Drand01() vs rand(). + +0.05 2007-11-19 09:10 UTC + + Fix : 5.10.0_RC1 compatibility fix. + 0.04 2007-08-28 12:25 UTC + Chg : s/require (XSLoader)/use $1/. + Fix : Tests are now strict.