]> git.vpit.fr Git - perl/modules/Lexical-Types.git/blob - Changes
bb8433fffa551ded445456d249b5fb696dbf9165
[perl/modules/Lexical-Types.git] / Changes
1 Revision history for Lexical-Types
2
3 0.15    2015-12-21 15:30 UTC
4         + Chg : The new environment variable to enable thread tests on older
5                 perls is PERL_FORCE_TEST_THREADS. Note that this variable
6                 should only be turned on by authors.
7         + Chg : A large chunk of boilerplate XS code, which is also used in
8                 other XS modules, has been factored out of the main .xs file
9                 to a collection of .h files in the xsh subdirectory.
10         + Fix : This module can once again be built with strict C89 compilers.
11         + Fix : Update the Windows ActivePerl + gcc 3.4 workaround for
12                 ExtUtils::MakeMaker 7.04. Thanks Christian Walde for reporting
13                 and feedback on this issue.
14         + Fix : Segfaults when the module is loaded by several threads (or
15                 Windows emulated processes) ran in parallel.
16         + Fix : Test failures of threads tests on systems with harsh resource
17                 constraints causing the threads to exit() during run.
18
19 0.14    2015-03-14 03:10 UTC
20         + Chg : perl 5.8.4 is now required (instead of 5.8.3).
21         + Fix : [RT #100202] : Fix for 5.21.6-to-be.
22                 Thanks Father Chrysostomos for reporting and contributing a
23                 patch.
24         + Fix : Be really compatible with the optional OP_PARENT feature.
25         + Tst : $ENV{$Config{ldlibpthname}} is now preserved on all platforms,
26                 which will address failures of t/81-threads-teardown.t with
27                 unusual compilers (like icc) that link all their compiled
28                 objects to their own libraries.
29
30 0.13    2014-10-04 23:25 UTC
31         + Add : Support for the PERL_OP_PARENT optional feature introduced in
32                 perl 5.21.2.
33         + Doc : The CAVEATS section now warns about the global slowdown during
34                 compilation caused by this pragma.
35         + Fix : [RT #86112] : Doesn't hook new PADRANGE op in Perl 5.18.
36                 The PADRANGE optimization is now fully supported.
37                 Thanks Dagfinn Ilmari MannsÃ¥ker for reporting.
38         + Fix : Segfaults in eval in an END block of a Win32 pseudo-fork.
39         + Fix : Segfaults during global destruction of a thread or a
40                 pseudo-fork.
41         + Fix : Check functions are now replaced and restored in a thread-safe
42                 manner, either by using the wrap_op_checker() function from perl
43                 when it is available (starting from perl 5.16) or by taking the
44                 OP_REFCNT mutex on older perls.
45         + Tst : Author tests are no longer bundled with this distribution.
46                 They are only made available to authors in the git repository.
47         + Tst : Test failures of t/81-threads-teardown.t on Cygwin and Android
48                 should have been addressed.
49         + Tst : Threads tests will not fail anymore if resources constraints
50                 prevent the system from creating all the required threads.
51         + Upd : Metadata overhaul.
52
53 0.12    2011-08-24 16:30 UTC
54         + Fix : The pragma no longer vivifies the "Lexical::Types" entry in the
55                 hints hash %^H on perl 5.8.
56
57 0.11    2011-02-26 22:00 UTC
58         + Fix : [RT #66164] : Lexical::Types hangs with PPI.
59                 This was actually a regression introduced together with the new
60                 peephole optimizer strategy, and that caused the pragma to hang
61                 on constructs like "for (;;) { ... }".
62                 Thanks Chisel Wright for reminding me about this issue.
63
64 0.10    2011-01-03 20:35 UTC
65         + Add : The new constant LT_FORKSAFE can be tested to know whether the
66                 module will behave nicely when fork()ing. It's currently always
67                 true except on Windows where you need perl 5.10.1 for it to be
68                 true.
69         + Chg : perl 5.8.3 is now required (instead of 5.8.0).
70         + Fix : Scope leaks under perl 5.8-5.10.0.
71         + Fix : Segmentation faults and misbehaviours in threaded applications.
72         + Fix : Compatibility with perl 5.13.1 and higher.
73         + Fix : Broken linkage on Windows with gcc 3.4, which appears in
74                 particular when using ActivePerl's default compiler suite.
75                 For those setups, the Lexical::Types shared library will now
76                 be linked against the perl dll directly (instead of the import
77                 library).
78         + Tst : Threads tests are now only run on perl 5.13.4 and higher.
79                 They could segfault randomly because of what seems to be an
80                 internal bug of Perl, which has been addressed in 5.13.4.
81                 There is also an environment variable that allows you to
82                 forcefully run those tests, but it should be set only for
83                 author testing and not for end users.
84
85 0.09    2010-01-03 00:00 UTC
86         + Fix : Building and testing with blead.
87         + Fix : Unbalanced scopes when skipping a typed declaration.
88         + Fix : Segfaults when Lexical::Types is loaded for the first time from
89                 inside a thread.
90         + Fix : Leaks of memory associated with the root interpreter.
91         + Fix : Work around Kwalitee test misfailures.
92         + Opt : Less memory will be used for non-threaded perls version 5.10.0
93                 and below, and for threaded perls from version 5.10.1.
94
95 0.08    2009-07-04 19:35 UTC
96         + Fix : Don't leak the old op info when a pointer table entry is reused.
97         + Fix : Possibly missed constructs with eval STRING called in a thread.
98
99 0.07    2009-07-01 08:45 UTC
100         + Chg : perl 5.8.x on MSWin32 is no longer considered as thread safe.
101         + Fix : Work around a bug in perl 5.10.0 and lower that cause hints to
102                 propagate into required files.
103         + Fix : Clean up map entries associated to uncatched OPs.
104
105 0.06    2009-05-01 19:00 UTC
106         + Fix : The pragma now properly propagates into threaded eval STRING,
107                 effectively making the module thread safe. The new LT_THREADSAFE
108                 constant can be used to know whether the module could have been
109                 built with thread safety features enabled.
110
111 0.05    2009-04-28 21:40 UTC
112         + Fix : Building with PERL_IMPLICIT_SYS set (especially on Win32).
113         + Tst : Dieing in callbacks.
114
115 0.04    2009-03-07 15:45 UTC
116         + Chg : Some implementation of pointer table is now used internally.
117                 This should make thread safety more robust.
118         + Doc : Cleanups.
119         + Tst : Using Lexical::Types inside the 'as' callback.
120         + Tst : Thread safety.
121
122 0.03    2009-03-05 21:15 UTC
123         + Doc : Discuss about using constants for types.
124         + Fix : The PL_ppaddr[OP_PADSV] localization logic was refined so that
125                 it is kinder to other modules that replace it.
126         + Tst : "my Str ($x, $y)" and "for my Str $x ()" constructs
127         + Tst : uvar magic, magical tags.
128
129 0.02    2009-02-25 16:10 UTC
130         + Add : Returning an empty list from the mangler skips the wrapping of
131                 the current typed lexical declaration.
132         + Chg : The package and method names passed to the callbacks are now all
133                 read-only.
134
135 0.01    2009-02-24 23:20 UTC
136         First version, released on an unsuspecting world.
137