]> git.vpit.fr Git - perl/modules/autovivification.git/blob - Changes
This is 0.13
[perl/modules/autovivification.git] / Changes
1 Revision history for autovivification
2
3 0.13    2014-10-04 16:55 UTC
4         This release contains a change that, while being very likely to be safe,
5         can potentially cause freezes during code compilation. Every release
6         should be carefully tested before being put in production, but this is
7         especially true for this one.
8         + Add : Support for the PERL_OP_PARENT optional feature introduced in
9                 perl 5.21.2.
10         + Doc : The CAVEATS section now warns about the global slowdown during
11                 compilation caused by this pragma.
12         + Fix : [RT #97703] : Android support
13                 t/51-threads-teardown.t will no longer fail on Android.
14                 Thanks Brian Fraser for reporting.
15         + Fix : Segfaults in eval in an END block of a Win32 pseudo-fork.
16         + Fix : Segfaults during global destruction of a thread or a
17                 pseudo-fork.
18         + Opt : The global slowdown caused by this module has been greatly
19                 reduced.
20                 Thanks Ævar Arnfjörð Bjarmason for reporting and testing the
21                 change.
22
23 0.12    2013-09-05 17:20 UTC
24         + Fix : Check functions are now replaced and restored in a thread-safe
25                 manner, either by using the wrap_op_checker() function from perl
26                 when it is available (starting from perl 5.16) or by taking the
27                 OP_REFCNT mutex on older perls.
28         + Tst : Author tests are no longer bundled with this distribution.
29                 They are only made available to authors in the git repository.
30
31 0.11    2013-02-08 19:25 UTC
32         This is a maintenance release. The code contains no functional change.
33         Satisfied users of version 0.10 can skip this update.
34         + Doc : POD tweaks and clarifications.
35         + Tst : Threads tests will not fail anymore if resources constraints
36                 prevent the system from creating all the required threads.
37         + Tst : Author tests overhaul.
38
39 0.10    2011-08-24 15:00 UTC
40         + Fix : The pragma no longer vivifies the "autovivification" entry
41                 in the hints hash %^H on perl 5.8.
42
43 0.09    2011-01-05 18:40 UTC
44         + Fix : [RT #64435] : Hangs with File::Copy in Config.pm.
45                 This was actually a regression introduced together with the new
46                 peephole optimizer strategy, and that caused the pragma to hang
47                 on constructs like "for (;;) { ... }".
48                 Thanks Michael Schilli for reporting.
49
50 0.08    2011-01-03 21:00 UTC
51         + Fix : Building on Windows.
52
53 0.07    2010-12-31 16:20 UTC
54         + Chg : perl 5.8.3 is required.
55         + Doc : Complements and clarifications.
56         + Fix : Segmentation faults and misbehaviours in threaded applications.
57         + Fix : Compatibility with perl 5.13.7.
58                 Thanks Andreas J. König for reporting and Andrew Main for
59                 providing a fix.
60         + Fix : Broken linkage on Windows with gcc 3.4, which appears in
61                 particular when using ActivePerl's default compiler suite.
62                 For those setups, the autovivification shared library will now
63                 be linked against the perl dll directly (instead of the import
64                 library).
65         + Opt : The pragma takes slightly more time at compile-time, but is
66                 slightly faster at run-time.
67         + Tst : Lengthy tests have been ported to Test::Leaner, making the
68                 whole test suite about 50% faster.
69         + Tst : Threads tests are now only run on perl 5.13.4 and higher.
70                 They could segfault randomly because of what seems to be an
71                 internal bug of Perl, which has been addressed in 5.13.4.
72                 There is also an environment variable that allows you to
73                 forcefully run those tests, but it should be set only for
74                 author testing and not for end users.
75
76 0.06    2010-04-24 17:40 UTC
77         + Add : The A_THREADSAFE and A_FORKSAFE constants.
78         + Fix : [RT #56870] : "no autovivification" vs Regexp::Common.
79                 This was a bug in how tied arrays and hashes were handled.
80                 Thanks Michael G. Schwern for reporting.
81         + Fix : Scope leaks under perl 5.8-5.10.0.
82         + Fix : Segfaults when first loading the pragma from inside a thread.
83
84 0.05    2010-03-05 23:15 UTC
85         + Fix : [RT #55154] : Crashes and assertion failures when deparsing and
86                 re-eval-uating some code compiled while autovivification was in
87                 use.
88                 Thanks Michael G. Schwern for reporting.
89         + Fix : [RT #53647] : "leys" typo in pod.
90                 Thanks Hinrik Orn Sigurdsson for reporting.
91
92 0.04    2010-01-10 00:30 UTC
93         + Add : Array and hash slices are now handled by the pragma.
94         + Fix : Work around Kwalitee test misfailures.
95
96 0.03    2009-06-23 22:20 UTC
97         + Add : Handle old-fashion dereferencing (like $$hashref{key}).
98         + Chg : Aliasing constructs (for ($x{foo}) { ... }) are now covered by
99                 the 'store' category (and no longer the 'fetch' one). This is
100                 because there's no way to know at compile-time if the alias
101                 will be assigned to.
102         + Fix : Quadratic complexity at compile-time.
103         + Fix : Segfaults when dereferencing globals.
104         + Fix : Segfaults on big-endian systems.
105         + Tst : Really test plain arrays and hashes.
106         + Tst : Improved coverage.
107
108 0.02    2009-06-17 18:05 UTC
109         + Add : 'fetch' also applies to aliasing ("for ($hashref->{key}) { }").
110         + Fix : Don't segfault on "keys/values %$hashref", and don't vivify if
111                 'fetch' is set.
112         + Fix : Plain dereferencing shouldn't have a different behaviour when
113                 the pragma is in use.
114         + Tst : Improved coverage.
115
116 0.01    2009-06-14 20:10 UTC
117         First version, released on an unsuspecting world.
118