is setting up hints as in the caller a sane thing to do?
[gitmo/Eval-Closure.git] / Changes
1 Revision history for Eval-Closure
2
3 {{$NEXT}}
4       - the given source is now evaled in a unique package for every
5         eval_closure call (it used to always be evaled in the Eval::Closure
6         package, which was especially buggy). this is to avoid issues where one
7         eval_closure modifies the global environment (by, say, importing a
8         function), which could mess up a later call. unfortunately, this means
9         that the memoization stuff no longer works, since it will result in
10         memoized results using the original package, which defeats the purpose.
11         i'm open to suggestions on how to safely reenable it though.
12
13       - clean up a few stray lexicals we were still closing over in the eval
14
15 0.06  2011-06-05
16       - The dumped source from setting $ENV{EVAL_CLOSURE_PRINT_SOURCE} didn't
17         show the captured variable creation properly. (Dave Rolsky)
18
19 0.05  2011-04-25
20       - make sure Perl::Tidy doesn't look at @ARGV (rafl)
21
22 0.04  2011-04-15
23       - stop using Memoize, it apparently doesn't work properly under mod_perl
24         in some situations (mateu)
25
26 0.03  2011-03-02
27       - don't add #line directives when the debugger is active (alh)
28
29 0.02  2011-01-26
30       - add terse_error option for throwing only the actual compilation error
31         (Shawn M Moore)
32       - allow also specifying the line number for error reporting
33         (Shawn M Moore)
34
35 0.01  2010-11-14
36       - Initial release