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