1 Revision history for Try-Tiny
5 0.32 2024-08-16 22:23:44Z
6 - skip given, when tests on perls >= 5.41.3 which removed these constructs
8 0.31 2021-11-23 20:29:12Z
9 - plug Syntax::Keyword::Try and Feature::Compat::Try in the docs
11 0.30 2017-12-21 07:23:03Z
12 - expand "when" test skippage to more perl versions
14 0.29 2017-12-19 03:51:26Z
15 - skip tests of "when" and "given/when" usage for perl 5.27.7 *only* (see
18 0.28 2017-01-09 01:21:33Z
19 - enabled some tests of finally blocks that were disabled on 5.6, now that
20 that functionality works (since 0.13) (Pali, PR#4)
22 0.27 2016-08-16 01:43:35Z
23 - repository moved to the github p5sagit organization (the primary is on
24 shadowcat, mirrored to github)
25 - no changes since 0.26
27 0.26 2016-03-15 23:42:02Z (TRIAL RELEASE)
28 - switch from finalizers using an array to a hash, to resolve segfaults when
29 creating a pseudofork on MSWin before perl 5.20 (Graham Knop,
30 karenetheridge/Sub-Name/#3)
32 0.25 2016-02-22 20:16:51Z (TRIAL RELEASE)
33 - "finally" blocks are now run for all methods of leaving the try block
34 (including via exit, goto) (Lukas Mai, RT#112099)
36 0.24 2015-12-11 05:20:09Z
37 - fix prereq errors in 0.23
39 0.23 2015-12-11 04:04:35Z
40 - fix syntax of example code (Rudolf Leermakers, doy/Sub-Name/#22)
41 - 'perl' removed from prerequisite recommendations, to avoid tripping up
42 CPAN clients (Graham Knop)
43 - Sub::Util is used preferentially to Sub::Name in most cases (Graham Knop,
47 - add optional test deps as recommended prereqs (Karen Etheridge,
51 - also skip the test if Capture::Tiny is too old (Martin Popel,
55 - documentation updates (David Lowe (Flimm), doy/Sub-Name/#15)
58 - fix an obscure issue with loading modules during global destruction
59 (Dagfinn Ilmari Mannsåker, doy/Sub-Name/#11)
60 - documentation updates (anaxagoras, doy/Sub-Name/#12)
63 - fix tests for pre-Test-More-0.88 (Paul Howarth, doy/Sub-Name/#10)
66 - work around [rt.perl #119311] which was causing incorrect error messages in
67 some cases during global destruction (Graham Knop, doy/Sub-Name/#9)
70 - remove accidental Sub::Name test dep
73 - optionally use Sub::Name to name the try/catch/finally blocks, if available
77 - also throw an exception for catch/finally in scalar context (RT#81070)
80 - fix tests failing on 5.6.x due to differing DESTROY semantics
81 - excise superfluous local($@) call - 7% speedup
82 - fix (fsvo) broken URLs (RT#55659)
83 - proper exception on erroneous usage of bare catch/finally (RT#81070)
84 - proper exception on erroneous use of multiple catch{} blocks
85 - clarify exception occuring on unterminated try block (RT#75712)
86 - fix the prototypes shown in docs to match code (RT#79590; thanks, Pushtaev
88 - warn loudly on exceptions in finally() blocks
101 - don't index Try::Tiny::ScopeGuard
104 - fix require vs use issue in blead (RT63410)
107 - allow multiple finally blocks
108 - pass the error, if any, to finally blocks when called
111 - in t/given_when.t use a plan instead of done_testing for more backwards
115 - Documentation fixes and clarifications
118 - Restore list context propagation for catch blocks
119 - Fix a bug where finally blocks weren't always invoked
122 - Support for 'finally' blocks (Andy Yates)
123 - More documentation and tests (many people)
124 - Sets $@ to the previous value at the beginning of the eval, to allow
125 the capture of an error stack when calling die.
128 - Doc fixes from chromatic
129 - Various minor fixes from Adam Kennedy
130 - Additional documentation and code clarifications
131 - 5.005_04 compatibility