]> git.vpit.fr Git - perl/modules/re-engine-Plugin.git/blob - Changes
This is 0.12
[perl/modules/re-engine-Plugin.git] / Changes
1 0.12    2015-12-21 16:20 UTC - Vincent Pit
2         + Upd : The internal XS helpers headers were updated to help uncover
3                 some possible future memory-related errors.
4
5 0.11    2015-11-05 01:00 UTC - Vincent Pit
6         + Add : It is now possible to specify a re::engine::Plugin object
7                 destructor by passing the 'free' option either to
8                 re::engine::Plugin->import or to $re->callbacks.
9         + Chg : A large chunk of boilerplate XS code, which is also used in
10                 other XS modules, has been factored out of the main .xs file
11                 to a collection of .h files in the xsh subdirectory.
12         + Fix : A couple of memory leaks have been plugged.
13
14 0.10    2014-10-01 23:55 UTC - Vincent Pit
15         + Fix : [RT #92118] : Testing failed with Perl 5.17.5+
16                 The tests have been taught about perls newer than 5.18.0.
17                 Thanks Tokuhiro Matsuno for reporting.
18         + Fix : The module should no longer cause segfaults when an END block
19                 executed at the end of a pseudo-fork compiles some code with
20                 eval STRING.
21         + Fix : Miscellaneous compiler warnings with newer perls have been
22                 silenced.
23         + Tst : Author tests are no longer bundled with this distribution.
24                 They are only made available to authors in the git repository.
25         + Upd : Package metadata overhaul.
26
27 0.09    2011-04-05 16:05 UTC - Vincent Pit
28         + Add : The constants REP_THREADSAFE and REP_FORKSAFE tell you whenever
29                 the pragma is thread-safe and fork-safe.
30         + Fix : Compatibility with perl 5.13.6 and upwards.
31         + Fix : The pragma should be much less eager to leak into other scopes.
32         + Fix : Memory leaks of code references stored into the regexp object.
33         + Fix : Work around Kwalitee test misfailures.
34         + Tst : Thread safety is now tested on perl 5.13.4 and greater.
35
36 0.08    2009-08-29 16:55 UTC - Vincent Pit
37         + Add : The new ->callbacks method to the regexp object let you specify
38                 the 'exec' callback on an individual basis.
39         + Chg : Perl 5.10 is now required (instead of 5.9.5).
40         + Fix : The pragma was leaking into required scopes on 5.10.0.
41         + Fix : If you specified a different re::engine::Plugin between the
42                 compilation and the execution of a regular expression, the
43                 'exec' callback invoked used to be the one for the second
44                 engine. Worse, if the original engine wasn't in scope at the
45                 time of execution, nothing happened. This is now fixed.
46         + Fix : The reference count of the callbacks stored wasn't properly
47                 decremented.
48         + Fix : Incomplete MANIFEST.
49         + Tst : Subdirectories are now ordered.
50         + Tst : Author tests.
51
52 0.07    2009-08-23 09:30 UTC - Vincent Pit
53         + Fix : [perl #38684]: test failures in t/method/mod.t
54         + Fix : Building with blead.
55
56 0.06    2008-08-19 - Ævar Arnfjörð Bjarmason <avar@cpan.org>
57         * Plugin.pm: Tweaks
58         * Plugin.xs: Fix prototype mismatch for Plugin_dupe()
59
60 0.05    2008-08-19 - Ævar Arnfjörð Bjarmason <avar@cpan.org>
61         * Plugin.pm: dos2unix
62         * Plugin.xs: RT#31635: Be compatable with threaded perls
63
64 0.04    2007-12-27 - Ævar Arnfjörð Bjarmason <avar@cpan.org>
65         * Plugin.pm: Setting @ISA instead of using base.pm
66         * Makefile.PL: Now using ExtUtils::MakeMaker instead of Module::Install
67         * Plugin.(xs|h): Fix up prototypes to match the callbacks in the actual
68                          5.10 release
69         * Plugin.xs: Dumped CODE: in favor of PPCODE:, the former is teh sux
70         * Plugin.xs: Minor cleanups here and there
71         * Plugin.pod: New todo and a developer release notice
72         * Plugin.[h|pm]: Named buffer callbacks
73         * t/methods/stash.t: Test return value of $rx->stash({});
74         * t/methods/str/modify.t: New test for modification of ->str when
75                                   a reference is used
76         * t/methods/str/types.t: This was testing pattern types, fixed
77         * t/Example.[t|pm]: Moved to t/usage
78
79 0.03    2007-05-17 - Ævar Arnfjörð Bjarmason <avar@cpan.org>
80         * Plugin.xs: The exec callback would call_sv on a NULL value
81           causing a segfault
82         * Plugin.pod: Use %hash ~~ 'i' instead of $hash{i}, more stylish!
83         * inc: Bumping Module::Install to 0.65
84
85 0.02    2007-05-17 - Ævar Arnfjörð Bjarmason <avar@cpan.org>
86         * Brought up to date with current blead after lots of hacking on
87           blead itself, too many changes to list
88
89 0.01    2007-02-18 - Ævar Arnfjörð Bjarmason <avar@cpan.org>
90         * Initial release