]> git.vpit.fr Git - perl/modules/Variable-Magic.git/blob - Changes
Importing Variable-Magic-0.12.tar.gz
[perl/modules/Variable-Magic.git] / Changes
1 Revision history for Variable-Magic
2
3 0.12    2008-02-07 18:15 UTC
4         + Fix : POD error. Thanks to Chris Williams (BinGOs) for the quick
5                 feedback.
6
7 0.11    2008-02-07 17:55 UTC
8         + Add : Copy callbacks now receive the current key/index in $_[2].
9                 The current value/element is now in $_[3].
10         + Chg : The trigger of copy magic on list assignment with perls greater
11                 than 5.10.0 was caused by uvar magic. Hence,
12                 VMG_COMPAT_HASH_LISTASSIGN_COPY was removed. Use VMG_UVAR
13                 instead.
14         + Fix : Build failures on patched perls.
15         + Tst : Added missing exported symbols to 01-import.t.
16
17 0.10    2008-02-04 11:30 UTC
18         + Add : New script : samples/vm_vs_tie.pl, that benchmarks our uvar
19                 magic versus tied hashes.
20         + Add : The VMG_COMPAT_* constants can be used from userspace to check
21                 perl magic abilities.
22         + Fix : Callbacks that returned undef made us croak, breaking the
23                 variable behaviour (regression test in 14-callbacks.t).
24         + Fix : uvar callbacks weren't tested for non-NULL-ity before being
25                 called (regression test in 28-uvar.t).
26         + Tst : Fix typo in 25-copy.t that prevented Tie::Hash tests to be ran.
27
28 0.09    2008-02-02 11:30 UTC
29         + Doc : Explicitely say that uvar callbacks are safely ignored for
30                 non-hashes.
31         + Doc : Document caveats and fix the usual set of typos.
32         + Fix : vmg_dispell() didn't check if the ext magic were ours when
33                 counting wizards that have uvar callbacks, resulting in a
34                 possible memory misread.
35         + Fix : getdata() now returns directly the data object, and no longer a
36                 copy. This caused a leak.
37         + Tst : Prefix author tests by 9*-.
38         + Tst : New optional author test : 95-portability-files.t, that uses
39                 Test::Portability::Files when it's present.
40         + Tst : New test : 14-self.t, that tests application of magic on the
41                 wizard itself.
42         + Tst : Move Hash::Util::FieldHash tests out of 11-multiple.t to
43                 15-huf.t.
44
45 0.08    2008-02-01 16:55 UTC
46         + Add : copy magic for tied arrays/hashes.
47         + Add : local magic.
48         + Add : uvar magics : fetch, store, exists, delete for hashes.
49
50 0.07_*  2008-01
51         Internal development versions.
52
53 0.06    2007-11-20 10:10 UTC
54         + Chg : 5.7.3 is now officially required.
55         + Fix : "data" test failures on 5.8.{0,2}.
56         + Fix : Drand01() vs rand().
57
58 0.05    2007-11-19 09:10 UTC
59         + Fix : 5.10.0_RC1 compatibility fix.
60
61 0.04    2007-08-28 12:25 UTC
62         + Chg : s/require (XSLoader)/use $1/.
63         + Fix : Tests are now strict.
64         + Fix : Complete dependencies.
65
66 0.03    2007-08-01 17:20 UTC
67         + Add : Passing the signature of an already defined magic to wizard()
68                 now returns the corresponding magic object.
69         + Add : You can pass the numeric signature as the wizard argument of
70                 cast(), dispell() and getdata().
71         + Add : Any argument specified after the wizard (or the signature) in a
72                 call to cast() is now passed to the private data constructor in
73                 $_[1] and after.
74         + Chg : $_[0] is now always a reference to the magic variable in all
75                 callbacks. The reason for changing from the previous behaviour
76                 is that one may want to apply the same magic to a plain scalar
77                 and to a scalar reference, and needs a way to distinguish
78                 between them in the callback (say, ref()).
79         + Fix : Wizard object destruction used not to free the signature.
80
81 0.02    2007-07-27 13:50 UTC
82         + Fix : In response to test report 548152 :
83                 Newx() and SvMAGIC_set() not present on older perls.
84         + Fix : In response to test report 548275 :
85                 Since perl 5.9.5, 'clear' magic is invoked when an array is
86                 undefined (bug #43357). Moreover, 'len' magic is no longer
87                 called by pushing an element since perl 5.9.3.
88         + Fix : Missing glob test in MANIFEST.
89
90 0.01    2007-07-25 16:15 UTC
91         First version, released on an unsuspecting world.
92