This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
perl5182delta typo fixes
[perl5.git] / pod / perl5143delta.pod
CommitLineData
877744bd
DH
1=encoding utf8
2
3=head1 NAME
4
5perl5143delta - what is new for perl v5.14.3
6
7=head1 DESCRIPTION
8
9This document describes differences between the 5.14.2 release and
10the 5.14.3 release.
11
12If you are upgrading from an earlier release such as 5.12.0, first read
13L<perl5140delta>, which describes differences between 5.12.0 and
145.14.0.
15
16=head1 Core Enhancements
17
18No changes since 5.14.0.
19
20=head1 Security
21
22=head2 C<Digest> unsafe use of eval (CVE-2011-3597)
23
24The C<Digest-E<gt>new()> function did not properly sanitize input before
25using it in an eval() call, which could lead to the injection of arbitrary
26Perl code.
27
28In order to exploit this flaw, the attacker would need to be able to set
29the algorithm name used, or be able to execute arbitrary Perl code already.
30
31This problem has been fixed.
32
33=head2 Heap buffer overrun in 'x' string repeat operator (CVE-2012-5195)
34
35Poorly written perl code that allows an attacker to specify the count to
36perl's 'x' string repeat operator can already cause a memory exhaustion
37denial-of-service attack. A flaw in versions of perl before 5.15.5 can
38escalate that into a heap buffer overrun; coupled with versions of glibc
39before 2.16, it possibly allows the execution of arbitrary code.
40
41This problem has been fixed.
42
43=head1 Incompatible Changes
44
45There are no changes intentionally incompatible with 5.14.0. If any
46exist, they are bugs and reports are welcome.
47
48=head1 Deprecations
49
50There have been no deprecations since 5.14.0.
51
52=head1 Modules and Pragmata
53
54=head2 New Modules and Pragmata
55
56None
57
58=head2 Updated Modules and Pragmata
59
60=over 4
61
62=item *
63
64L<PerlIO::scalar> was updated to fix a bug in which opening a filehandle to
65a glob copy caused assertion failures (under debugging) or hangs or other
66erratic behaviour without debugging.
67
68=item *
69
70L<ODBM_File> and L<NDBM_File> were updated to allow building on GNU/Hurd.
71
72=item *
73
74L<IPC::Open3> has been updated to fix a regression introduced in perl
755.12, which broke C<IPC::Open3::open3($in, $out, $err, '-')>.
76[perl #95748]
77
78=item *
79
80L<Digest> has been upgraded from version 1.16 to 1.16_01.
81
82See L</Security>.
83
84=item *
85
86L<Module::CoreList> has been updated to version 2.49_04 to add data for
87this release.
88
89=back
90
91=head2 Removed Modules and Pragmata
92
93None
94
95=head1 Documentation
96
97=head2 New Documentation
98
99None
100
101=head2 Changes to Existing Documentation
102
103=head3 L<perlcheat>
104
105=over 4
106
107=item *
108
109L<perlcheat> was updated to 5.14.
110
111=back
112
113=head1 Configuration and Compilation
114
115=over 4
116
117=item *
118
119h2ph was updated to search correctly gcc include directories on platforms
120such as Debian with multi-architecture support.
121
122=item *
123
124In Configure, the test for procselfexe was refactored into a loop.
125
126=back
127
128=head1 Platform Support
129
130=head2 New Platforms
131
132None
133
134=head2 Discontinued Platforms
135
136None
137
138=head2 Platform-Specific Notes
139
140=over 4
141
142=item FreeBSD
143
144The FreeBSD hints file was corrected to be compatible with FreeBSD 10.0.
145
146=item Solaris and NetBSD
147
148Configure was updated for "procselfexe" support on Solaris and NetBSD.
149
150=item HP-UX
151
152README.hpux was updated to note the existence of a broken header in
153HP-UX 11.00.
154
155=item Linux
156
157libutil is no longer used when compiling on Linux platforms, which avoids
158warnings being emitted.
159
160The system gcc (rather than any other gcc which might be in the compiling
161user's path) is now used when searching for libraries such as C<-lm>.
162
163=item Mac OS X
164
165The locale tests were updated to reflect the behaviour of locales in
166Mountain Lion.
167
168=item GNU/Hurd
169
170Various build and test fixes were included for GNU/Hurd.
171
172LFS support was enabled in GNU/Hurd.
173
174=item NetBSD
175
176The NetBSD hints file was corrected to be compatible with NetBSD 6.*
177
178=back
179
180=head1 Bug Fixes
181
182=over 4
183
184=item *
185
186A regression has been fixed that was introduced in 5.14, in C</i>
187regular expression matching, in which a match improperly fails if the
188pattern is in UTF-8, the target string is not, and a Latin-1 character
189precedes a character in the string that should match the pattern. [perl
190#101710]
191
192=item *
193
194In case-insensitive regular expression pattern matching, no longer on
195UTF-8 encoded strings does the scan for the start of match only look at
196the first possible position. This caused matches such as
197C<"f\x{FB00}" =~ /ff/i> to fail.
198
199=item *
200
201The sitecustomize support was made relocatableinc aware, so that
202-Dusesitecustomize and -Duserelocatableinc may be used together.
203
204=item *
205
206The smartmatch operator (C<~~>) was changed so that the right-hand side
207takes precedence during C<Any ~~ Object> operations.
208
209=item *
210
211A bug has been fixed in the tainting support, in which an C<index()>
212operation on a tainted constant would cause all other constants to become
213tainted. [perl #64804]
214
215=item *
216
217A regression has been fixed that was introduced in perl 5.12, whereby
218tainting errors were not correctly propagated through C<die()>.
219[perl #111654]
220
221=item *
222
223A regression has been fixed that was introduced in perl 5.14, in which
224C</[[:lower:]]/i> and C</[[:upper:]]/i> no longer matched the opposite case.
225[perl #101970]
226
227=back
228
229=head1 Acknowledgements
230
231Perl 5.14.3 represents approximately 12 months of development since Perl 5.14.2
232and contains approximately 2,300 lines of changes across 64 files from 22
233authors.
234
235Perl continues to flourish into its third decade thanks to a vibrant community
236of users and developers. The following people are known to have contributed the
237improvements that became Perl 5.14.3:
238
239Abigail, Andy Dougherty, Carl Hayter, Chris 'BinGOs' Williams, Dave Rolsky,
240David Mitchell, Dominic Hargreaves, Father Chrysostomos, Florian Ragwitz,
241H.Merijn Brand, Jilles Tjoelker, Karl Williamson, Leon Timmermans, Michael G
242Schwern, Nicholas Clark, Niko Tyni, Pino Toscano, Ricardo Signes, Salvador
243FandiƱo, Samuel Thibault, Steve Hay, Tony Cook.
244
245The list above is almost certainly incomplete as it is automatically generated
246from version control history. In particular, it does not include the names of
247the (very much appreciated) contributors who reported issues to the Perl bug
248tracker.
249
250Many of the changes included in this version originated in the CPAN modules
251included in Perl's core. We're grateful to the entire CPAN community for
252helping Perl to flourish.
253
254For a more complete list of all of Perl's historical contributors, please see
255the F<AUTHORS> file in the Perl source distribution.
256
257=head1 Reporting Bugs
258
259If you find what you think is a bug, you might check the articles
260recently posted to the comp.lang.perl.misc newsgroup and the perl
261bug database at http://rt.perl.org/perlbug/ . There may also be
262information at http://www.perl.org/ , the Perl Home Page.
263
264If you believe you have an unreported bug, please run the L<perlbug>
265program included with your release. Be sure to trim your bug down
266to a tiny but sufficient test case. Your bug report, along with the
267output of C<perl -V>, will be sent off to perlbug@perl.org to be
268analysed by the Perl porting team.
269
270If the bug you are reporting has security implications, which make it
271inappropriate to send to a publicly archived mailing list, then please send
272it to perl5-security-report@perl.org. This points to a closed subscription
273unarchived mailing list, which includes all the core committers, who be able
274to help assess the impact of issues, figure out a resolution, and help
275co-ordinate the release of patches to mitigate or fix the problem across all
276platforms on which Perl is supported. Please only use this address for
277security issues in the Perl core, not for modules independently
278distributed on CPAN.
279
280=head1 SEE ALSO
281
282The F<Changes> file for an explanation of how to view exhaustive details
283on what changed.
284
285The F<INSTALL> file for how to build Perl.
286
287The F<README> file for general stuff.
288
289The F<Artistic> and F<Copying> files for copyright information.
290
291=cut