This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
(perl #133706) remove exploit code from Storable
[perl5.git] / pod / perl5221delta.pod
CommitLineData
fd5868f3
SH
1=encoding utf8
2
3=head1 NAME
4
5perl5221delta - what is new for perl v5.22.1
6
7=head1 DESCRIPTION
8
9This document describes differences between the 5.22.0 release and the 5.22.1
10release.
11
12If you are upgrading from an earlier release such as 5.20.0, first read
13L<perl5220delta>, which describes differences between 5.20.0 and 5.22.0.
14
15=head1 Incompatible Changes
16
17There are no changes intentionally incompatible with 5.20.0 other than the
18following single exception, which we deemed to be a sensible change to make in
19order to get the new C<\b{wb}> and (in particular) C<\b{sb}> features sane
20before people decided they're worthless because of bugs in their Perl 5.22.0
21implementation and avoided them in the future.
22If any others exist, they are bugs, and we request that you submit a report.
23See L</Reporting Bugs> below.
24
25=head2 Bounds Checking Constructs
26
27Several bugs, including a segmentation fault, have been fixed with the bounds
28checking constructs (introduced in Perl 5.22) C<\b{gcb}>, C<\b{sb}>, C<\b{wb}>,
29C<\B{gcb}>, C<\B{sb}>, and C<\B{wb}>. All the C<\B{}> ones now match an empty
30string; none of the C<\b{}> ones do.
31L<[perl #126319]|https://rt.perl.org/Ticket/Display.html?id=126319>
32
33=head1 Modules and Pragmata
34
35=head2 Updated Modules and Pragmata
36
37=over 4
38
39=item *
40
41L<Module::CoreList> has been upgraded from version 5.20150520 to 5.20151213.
42
43=item *
44
45L<PerlIO::scalar> has been upgraded from version 0.22 to 0.23.
46
47=item *
48
49L<POSIX> has been upgraded from version 1.53 to 1.53_01.
50
51If C<POSIX::strerror> was passed C<$!> as its argument then it accidentally
52cleared C<$!>. This has been fixed.
53L<[perl #126229]|https://rt.perl.org/Ticket/Display.html?id=126229>
54
55=item *
56
57L<Storable> has been upgraded from version 2.53 to 2.53_01.
58
59=item *
60
61L<warnings> has been upgraded from version 1.32 to 1.34.
62
63The C<warnings::enabled> example now actually uses C<warnings::enabled>.
64L<[perl #126051]|https://rt.perl.org/Ticket/Display.html?id=126051>
65
66=item *
67
68L<Win32> has been upgraded from version 0.51 to 0.52.
69
70This has been updated for Windows 8.1, 10 and 2012 R2 Server.
71
72=back
73
74=head1 Documentation
75
76=head2 Changes to Existing Documentation
77
78=head3 L<perltie>
79
80=over 4
81
82=item *
83
84The usage of C<FIRSTKEY> and C<NEXTKEY> has been clarified.
85
86=back
87
88=head3 L<perlvar>
89
90=over 4
91
92=item *
93
94The specific true value of C<$!{E...}> is now documented, noting that it is
95subject to change and not guaranteed.
96
97=back
98
99=head1 Diagnostics
100
101The following additions or changes have been made to diagnostic output,
102including warnings and fatal error messages. For the complete list of
103diagnostic messages, see L<perldiag>.
104
105=head2 Changes to Existing Diagnostics
106
107=over 4
108
109=item *
110
111The C<printf> and C<sprintf> builtins are now more careful about the warnings
112they emit: argument reordering now disables the "redundant argument" warning in
113all cases.
114L<[perl #125469]|https://rt.perl.org/Ticket/Display.html?id=125469>
115
116=back
117
118=head1 Configuration and Compilation
119
120=over 4
121
122=item *
123
124Using the C<NO_HASH_SEED> define in combination with the default hash algorithm
125C<PERL_HASH_FUNC_ONE_AT_A_TIME_HARD> resulted in a fatal error while compiling
126the interpreter, since Perl 5.17.10. This has been fixed.
127
128=item *
129
130Configuring with ccflags containing quotes (e.g.
131C<< -Accflags='-DAPPLLIB_EXP=\"/usr/libperl\"' >>) was broken in Perl 5.22.0
132but has now been fixed again.
133L<[perl #125314]|https://rt.perl.org/Ticket/Display.html?id=125314>
134
135=back
136
137=head1 Platform Support
138
139=head2 Platform-Specific Notes
140
141=over 4
142
143=item IRIX
144
145=over
146
147=item *
148
149Under some circumstances IRIX stdio fgetc() and fread() set the errno to
150C<ENOENT>, which made no sense according to either IRIX or POSIX docs. Errno
151is now cleared in such cases.
152L<[perl #123977]|https://rt.perl.org/Ticket/Display.html?id=123977>
153
154=item *
155
156Problems when multiplying long doubles by infinity have been fixed.
157L<[perl #126396]|https://rt.perl.org/Ticket/Display.html?id=126396>
158
159=item *
160
161All tests pass now on IRIX with the default build configuration.
162
163=back
164
165=back
166
167=head1 Selected Bug Fixes
168
169=over 4
170
171=item *
172
173C<qr/(?[ () ])/> no longer segfaults, giving a syntax error message instead.
174L<[perl #125805]|https://rt.perl.org/Ticket/Display.html?id=125805>
175
176=item *
177
178Regular expression possessive quantifier Perl 5.20 regression now fixed.
179C<qr/>I<PAT>C<{>I<min>,I<max>C<}+>C</> is supposed to behave identically to
180C<qr/(?E<gt>>I<PAT>C<{>I<min>,I<max>C<})/>. Since Perl 5.20, this didn't work
181if I<min> and I<max> were equal.
182L<[perl #125825]|https://rt.perl.org/Ticket/Display.html?id=125825>
183
184=item *
185
186Certain syntax errors in
187L<perlrecharclass/Extended Bracketed Character Classes> caused panics instead
188of the proper error message. This has now been fixed.
189L<[perl #126481]|https://rt.perl.org/Ticket/Display.html?id=126481>
190
191=item *
192
193C<< BEGIN <> >> no longer segfaults and properly produces an error message.
194L<[perl #125341]|https://rt.perl.org/Ticket/Display.html?id=125341>
195
196=item *
197
198A regression from Perl 5.20 has been fixed, in which some syntax errors in
199L<C<(?[...])>|perlrecharclass/Extended Bracketed Character Classes> constructs
200within regular expression patterns could cause a segfault instead of a proper
201error message.
202L<[perl #126180]|https://rt.perl.org/Ticket/Display.html?id=126180>
203
204=item *
205
206Another problem with
207L<C<(?[...])>|perlrecharclass/Extended Bracketed Character Classes>
208constructs has been fixed wherein things like C<\c]> could cause panics.
209L<[perl #126181]|https://rt.perl.org/Ticket/Display.html?id=126181>
210
211=item *
212
213In Perl 5.22.0, the logic changed when parsing a numeric parameter to the -C
214option, such that the successfully parsed number was not saved as the option
215value if it parsed to the end of the argument.
216L<[perl #125381]|https://rt.perl.org/Ticket/Display.html?id=125381>
217
218=item *
219
220Warning fatality is now ignored when rewinding the stack. This prevents
221infinite recursion when the now fatal error also causes rewinding of the stack.
222L<[perl #123398]|https://rt.perl.org/Ticket/Display.html?id=123398>
223
224=item *
225
226A crash with C<< %::=(); J->${\"::"} >> has been fixed.
227L<[perl #125541]|https://rt.perl.org/Ticket/Display.html?id=125541>
228
229=item *
230
231Nested quantifiers such as C</.{1}??/> should cause perl to throw a fatal
232error, but were being silently accepted since Perl 5.20.0. This has been
233fixed.
234L<[perl #126253]|https://rt.perl.org/Ticket/Display.html?id=126253>
235
236=item *
237
238Regular expression sequences such as C</(?i/> (and similarly with other
239recognized flags or combination of flags) should cause perl to throw a fatal
240error, but were being silently accepted since Perl 5.18.0. This has been
241fixed.
242L<[perl #126178]|https://rt.perl.org/Ticket/Display.html?id=126178>
243
244=item *
245
246A bug in hexadecimal floating point literal support meant that high-order bits
247could be lost in cases where mantissa overflow was caused by too many trailing
248zeros in the fractional part. This has been fixed.
249L<[perl #126582]|https://rt.perl.org/Ticket/Display.html?id=126582>
250
251=item *
252
253Another hexadecimal floating point bug, causing low-order bits to be lost in
254cases where the last hexadecimal digit of the mantissa has bits straddling the
255limit of the number of bits allowed for the mantissa, has also been fixed.
256L<[perl #126586]|https://rt.perl.org/Ticket/Display.html?id=126586>
257
258=item *
259
260Further hexadecimal floating point bugs have been fixed: In some circumstances,
261the C<%a> format specifier could variously lose the sign of the negative zero,
262fail to display zeros after the radix point with the requested precision, or
263even lose the radix point after the leftmost hexadecimal digit completely.
264
265=item *
266
267A crash caused by incomplete expressions within C<< /(?[ ])/ >> (e.g.
268C<< /(?[[0]+()+])/ >>) has been fixed.
269L<[perl #126615]|https://rt.perl.org/Ticket/Display.html?id=126615>
270
271=back
272
273=head1 Acknowledgements
274
275Perl 5.22.1 represents approximately 6 months of development since Perl 5.22.0
276and contains approximately 19,000 lines of changes across 130 files from 27
277authors.
278
279Excluding auto-generated files, documentation and release tools, there were
280approximately 1,700 lines of changes to 44 .pm, .t, .c and .h files.
281
282Perl continues to flourish into its third decade thanks to a vibrant community
283of users and developers. The following people are known to have contributed
284the improvements that became Perl 5.22.1:
285
286Aaron Crane, Abigail, Andy Broad, Aristotle Pagaltzis, Chase Whitener, Chris
287'BinGOs' Williams, Craig A. Berry, Daniel Dragan, David Mitchell, Father
288Chrysostomos, Herbert Breunung, Hugo van der Sanden, James E Keenan, Jan
289Dubois, Jarkko Hietaniemi, Karen Etheridge, Karl Williamson, Lukas Mai, Matthew
290Horsfall, Peter Martini, Rafael Garcia-Suarez, Ricardo Signes, Shlomi Fish,
291Sisyphus, Steve Hay, Tony Cook, Victor Adam.
292
293The list above is almost certainly incomplete as it is automatically generated
294from version control history. In particular, it does not include the names of
295the (very much appreciated) contributors who reported issues to the Perl bug
296tracker.
297
298Many of the changes included in this version originated in the CPAN modules
299included in Perl's core. We're grateful to the entire CPAN community for
300helping Perl to flourish.
301
302For a more complete list of all of Perl's historical contributors, please see
303the F<AUTHORS> file in the Perl source distribution.
304
305=head1 Reporting Bugs
306
307If you find what you think is a bug, you might check the articles recently
308posted to the comp.lang.perl.misc newsgroup and the perl bug database at
309https://rt.perl.org/ . There may also be information at
310http://www.perl.org/ , the Perl Home Page.
311
312If you believe you have an unreported bug, please run the L<perlbug> program
313included with your release. Be sure to trim your bug down to a tiny but
314sufficient test case. Your bug report, along with the output of C<perl -V>,
315will be sent off to perlbug@perl.org to be analysed by the Perl porting team.
316
317If the bug you are reporting has security implications, which make it
318inappropriate to send to a publicly archived mailing list, then please send it
319to perl5-security-report@perl.org. This points to a closed subscription
320unarchived mailing list, which includes all the core committers, who will be
321able to help assess the impact of issues, figure out a resolution, and help
322co-ordinate the release of patches to mitigate or fix the problem across all
323platforms on which Perl is supported. Please only use this address for
324security issues in the Perl core, not for modules independently distributed on
325CPAN.
326
327=head1 SEE ALSO
328
329The F<Changes> file for an explanation of how to view exhaustive details on
330what changed.
331
332The F<INSTALL> file for how to build Perl.
333
334The F<README> file for general stuff.
335
336The F<Artistic> and F<Copying> files for copyright information.
337
338=cut