This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
b55b49fa8d159eff167af4f9441d2626d3d60542
[perl5.git] / dist / Carp / Changes
1
2 version 1.38; 2015-11-06
3   * stable release of changes since v1.36
4
5 version 1.37_02; 2015-10-30
6   * bugfix: remove unused parent.pm from prereqs
7
8 version 1.37_01; 2015-10-25
9   * improvements for working on older perls
10   * bugfix: $Carp::MaxArgNums is no longer treated as if it was one larger
11
12 version 1.36; 2015-03-14
13   * bugfix: don't hardcode a path in a test; breaks because of / vs. \
14   * remove an unneeded $VERSION eval to match this release to bleadperl
15
16 version 1.35; 2015-03-14
17
18   * improvements for working on non-ASCII platforms
19   * bugfix: older perls have trouble stringifying the regexps in some tests
20   * bugfix: precedence error in some tests
21   * bugfix: on pre-5.14 perls, DEL was treated as a printable character
22   * bugfix: ignore mismatched Carp and Carp::Heavy when it doesn't matter
23
24 version 1.3301; 2014-04-01
25
26   * complete dependency list
27
28 version 1.33; 2014-03-24
29
30   * in tests, remove unneeded (and undeclared) dependency on Test::More
31     0.98
32
33 version 1.32; 2013-09-03
34
35   * bugfix: don't get confused by a deleted stash when generating
36     stack trace
37
38   * bugfix: don't vivify @CARP_NOT and @ISA in caller's namespace
39
40   * bugfix: don't generate Unicode warnings on old perls when an argument
41     in a stack trace contains a non-character codepoint
42
43   * in stack traces, consistently quote string arguments
44
45   * in stack traces, new hookable mechanism for formatting reference
46     arguments
47
48   * document exportable subroutines longmess() and shortmess()
49
50   * if Carp::Heavy gets loaded by a mismatched Carp (especially an
51     older one that expects Carp::Heavy to do real work), give a useful
52     error message
53
54   * when truncating an argument list in a stack trace, don't format the
55     arguments that got truncated
56
57   * factor out non-vivifying subroutine lookup
58
59   * regularise test for vivification of B::
60
61   * in tests, avoid using package name "B" when not actually testing
62     things relating to the B module
63
64 version 1.26; 2012-06-18
65
66   * bugfix: get ", <fh> line 123" phrase from CORE::die, not allowing
67     influence by any CORE::GLOBAL::die override, so that Carp can be
68     used as part of a CORE::GLOBAL::die override
69
70   * on VMS, skip some tests that rely on open3() which doesn't work
71     there yet
72
73 version 1.25; 2012-02-16
74
75   * bugfix: avoid failure to export to very old (Perl 5.6) versions of
76     warnings.pm, which could occur due to circular dependency
77
78   * bugfix: avoid vivifying "utf8" stash on Perl 5.6, which caused swash
79     loading to fail in some situations
80
81   * add dot to end of message from Carp, to match the formatting from
82     CORE::die
83
84   * synch Carp::Heavy version number to Carp
85
86 version 1.24; 2012-02-02
87
88   * add ", <fh> line 123" phrase to messages, to match core die
89
90 version 1.23; 2011-09-09
91
92   * bugfix: make Carp::Heavy load Carp, as it used to prior to 1.22,
93     for backward compatibility
94
95   * avoid " in Carp.t test programs, which caused false failures on
96     Win32 due to faulty system()
97
98 version 1.22; 2011-09-04
99
100   * first CPAN release