]> git.vpit.fr Git - perl/modules/Scope-Upper.git/blob - Changes
This is 0.18
[perl/modules/Scope-Upper.git] / Changes
1 Revision history for Scope-Upper
2
3 0.18    2011-10-10 20:50 UTC
4         + Add : The uid() function returns an unique identifier for each dynamic
5                 scope. The validate_uid() function can be used to check whether
6                 one such identifier is valid (i.e. that the scope it refers to
7                 is still alive).
8         + Chg : It is no longer possible on perl 5.6 to call goto() in an
9                 uplevel callback to replace the uplevel call. This change was
10                 needed in order to ensure consistency between platforms
11                 regarding to the following fix just below.
12         + Fix : The uplevel() tests now pass on Windows.
13                 Thanks C.H. Kang for bringing this to my attention.
14
15 0.17    2011-10-03 21:45 UTC
16         + Fix : uplevel() will now use the correct pad when executing its
17                 callback. This fixes at least two issues :
18                 - closures defined inside the uplevel callback can now correctly
19                 access lexicals from inside and outside the callback.
20                 - state variables in the uplevel callback now work properly.
21         + Fix : It is now generally possible to call goto() in the uplevel'd
22                 code to replace the uplevel stack frame. There are two cases
23                 for which it is still not possible :
24                 - if -D flags were set when running perl (as in "perl -Dt ...").
25                 - if the perl runloop has been replaced with a custom one by
26                 another module.
27                 If uplevel() detects that the replacement code contains a goto
28                 statement, and is in one of those two cases, then it will refuse
29                 to execute the callback and throw an exception.
30                 Note that this fix implies a run-time overhead of uplevel()
31                 proportional to the size of the the callback in every case
32                 (with a small ratio), and proportional to the size of ALL the
33                 code executed as the result of the uplevel call (including
34                 subroutine calls inside the callback) when a goto statement is
35                 found in the uplevel callback.
36         + Fix : uplevel() has been taught how to handle XS callbacks properly.
37         + Fix : The cause of "Attempt to free unreferenced scalar" warnings
38                 when using uplevel() has been addressed.
39         + Fix : [RT #71212] : build failure on Windows.
40                 The module does no longer rely on calling Perl_cv_clone, which
41                 isn't exported.
42                 Thanks C.H. Kang for reporting.
43
44 0.16    2011-09-03 23:00 UTC
45         + Add : uplevel($code, @args, $cxt) executes $code with arguments @args
46                 in the upper context pointed by $cxt.
47                 This is an XS version of the well-known uplevel() routine from
48                 Sub::Uplevel. There are a few differences between both
49                 implmentations that are listed in the documentation.
50                 The XS version is roughly 10 times faster than the pure-Perl
51                 version.
52
53 0.15    2011-08-24 14:20 UTC
54         + Fix : Localizing subroutines in an higher scope will now correctly
55                 update the method cache.
56
57 0.14    2011-02-27 00:00 UTC
58         + Fix : [RT #64997] : Compatibility with perl 5.13.10.
59                 Thanks Dave Mitchell for the notice.
60         + Tst : Lengthy tests have been ported to Test::Leaner, making the
61                 whole test suite about 50% faster.
62
63 0.13    2010-12-20 01:00 UTC
64         + Fix : [RT #61904] : Stack corruption when using unwind() under
65                 Devel::NYTProf.
66                 Thanks Sergey Aleynikov for contributing a fix.
67         + Fix : [RT #63378] : Compatibility with perl 5.13.8.
68                 Thanks Andreas J. König for bisecting the issue.
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.12    2010-05-19 00:45 UTC
77         + Fix : Compatibility with perl 5.13.
78         + Fix : Test failures with perl 5.8.0.
79         + Fix : A minor leak of SVs when a non array/hash was passed to
80                 localize_elem().
81
82 0.11    2010-04-16 23:20 UTC
83         + Chg : It's now forbiddent to pass a reference to a non-glob variable
84                 as the localization target of localize(), localize_elem() and
85                 localize_delete().
86         + Chg : localize_elem() now only accepts localization of arrays or hashs
87                 elements. For other types, it used to be a synonym of localize.
88         + Chg : localize_elem() no longer accepts a glob as the target. You now
89                 have to specify the variable as a string. This is because it was
90                 impossible in this case to handle meaningfully the array or the
91                 hash reference passed as the assigned value.
92         + Doc : The synopsys was revamped, and the rest of the documentation was
93                 reviewed.
94         + Fix : [RT #55593] : Segfault when localizing hash or array element to
95                 different package in different file.
96                 Thanks Dagfinn Ilmari Mannsåker for reporting.
97         + Fix : [RT #56301] : reap loses eval context when dying naturally.
98                 Thanks Andrew Main for reporting.
99         + Fix : Scope inconsistencies and segfaults when saving several
100                 localizations into the same target scope.
101         + Fix : Stop skipping frames as a pop optimization. This caused breakage
102                 under the debugger (and most likely outside as well).
103
104 0.10    2010-01-18 23:50 UTC
105         + Fix : Properly handle given/when on 5.10.
106         + Fix : Some stack inconsistencies were fixed, though they were unlikely
107                 to have an impact on your real-life code.
108         + Fix : Work around Kwalitee test misfailures.
109
110 0.09    2009-05-17 20:20 UTC
111         + Add : The new SU_THREADSAFE constant can be used to know whether the
112                 module could have been built with thread safety enabled.
113         + Chg : Thread safety is disabled for perl 5.8 on Win32.
114         + Chg : A saner workaround for the "call_sv() during LEAVE clobbers the
115                 still used last popped stack element" issue on 5.10.
116
117 0.08    2009-04-16 22:50 UTC
118         + Fix : [RT #44204] : Stack corruption with reap(). Thanks Torsten
119                 Foertsch for reporting.
120         + Fix : Building with Solaris CC.
121         + Tst : unwind() in threads.
122
123 0.07    2009-02-20 00:20 UTC
124         + Chg : The CLONE method will no longer be defined for non-threaded
125                 perls.
126         + Doc : Some examples on how to build the target context from the words.
127         + Fix : Some unlikely possible uninitialized reads, indirectly pointed
128                 out in a Redhat review request.
129         + Fix : "localize *x, 'y' => $cxt" now matches Perl's behaviour for
130                 "local *x = 'y'".
131         + Fix : Miscellanous code cleanups, courtesy of Florian Ragwitz.
132         + Upd : Resources in META.yml.
133
134 0.06    2009-01-17 00:05 UTC
135         + Chg : INCOMPATIBLE CHANGE: The level is now absolute and no longer
136                 relative to the current frame - we'll call it "context" from now
137                 on. You should replace all your raw levels by combinations of
138                 words.
139                 The old behaviour of "=> $n" can be easily reobtained by using
140                 "=> SCOPE($n)".
141         + Fix : As a result of this change, the module now plays nicely with
142                 the debugger.
143
144 0.05    2009-01-12 18:15 UTC
145         + Fix : Stack mess when using unwind() in scalar context.
146         + Fix : Returning an automatic variable isn't wise, so let's use a
147                 context instead.
148         + Doc : Clarifications.
149         + Tst : Stress tests for unwind().
150
151 0.04    2009-01-11 18:40 UTC
152         + Add : unwind(@things, $level), that returns to an upper context.
153         + Add : want_at($level), that gives the wantarray for $level.
154         + Add : Control words, to reliably get the level of the n-th upper
155                 subroutine or eval scope. TOPLEVEL was renamed to TOP.
156         + Fix : Tests with 5.6.
157         + Tst : Reordering and factoring some of the stress tests so that they
158                 aren't needlessly ran several times.
159
160 0.03    2009-01-04 15:55 UTC
161         + Add : localize_delete(), that localize array/hash elements in upper
162                 scopes.
163         + Fix : Segfault when localizing array elements with an invalid negative
164                 index.
165
166 0.02    2008-12-28 18:40 UTC
167         + Doc : Clarifications and improvements.
168         + Fix : Missing compatibility macros.
169         + Fix : Localized nonexistant array elements should be deleted when
170                 their time comes so that the array recovers its original length.
171
172 0.01    2008-12-26 16:05 UTC
173         First version, released on an unsuspecting world.
174