This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Fix two broken links in perldelta.
[perl5.git] / pod / perl5251delta.pod
CommitLineData
efdbe372
S
1=encoding utf8
2
3=head1 NAME
4
5perl5251delta - what is new for perl v5.25.1
6
7=head1 DESCRIPTION
8
9This document describes differences between the 5.25.0 release and the 5.25.1
10release.
11
12If you are upgrading from an earlier release such as 5.24.0, first read
13L<perl5250delta>, which describes differences between 5.24.0 and 5.25.0.
14
15=head1 Core Enhancements
16
17=head2 POSIX::tmpnam() has been removed
18
19The fundamentally unsafe C<tmpnam()> interface was deprecated in
20Perl 5.22.0 and has now been removed. In its place you can use
21for example the L<File::Temp> interfaces.
22
23=head2 require ::Foo::Bar is now illegal.
24
25Formerly, C<require ::Foo::Bar> would try to read F</Foo/Bar.pm>. Now any
26bareword require which starts with a double colon dies instead.
27
28=head2 Unescaped literal C<"{"> characters in regular expression
29patterns are no longer permissible
30
31You have to now say something like C<"\{"> or C<"[{]"> to specify to
32match a LEFT CURLY BRACKET. This will allow future extensions to the
33language. This restriction is not enforced, nor are there current plans
34to enforce it, if the C<"{"> is the first character in the pattern.
35
36These have been deprecated since v5.16, with a deprecation message
37displayed starting in v5.22.
38
39=head2 Literal control character variable names are no longer permissible
40
41A variable name may no longer contain a literal control character under
42any circumstances. These previously were allowed in single-character
43names on ASCII platforms, but have been deprecated there since Perl
44v5.20. This affects things like C<$I<\cT>>, where I<\cT> is a literal
45control (such as a C<NAK> or C<NEGATIVE ACKNOWLEDGE> character) in the
46source code.
47
48=head2 C<qr//xx> is no longer permissible
49
50Using more than one C</x> regular expression pattern modifier on a
51single pattern is now forbidden. This is to allow a future enhancement
52to the language. This usage has been deprecated since v5.22.
53
54=head2 C<NBSP> is no longer permissible in C<\N{...}>
55
56The name of a character may no longer contain non-breaking spaces. It
57has been deprecated to do so since Perl v5.22.
58
59=head1 Performance Enhancements
60
61=over 4
62
63=item *
64
65Bareword constant strings are now permitted to take part in constant
66folding. They were originally exempted from constant folding in August 1999,
67during the development of Perl 5.6, to ensure that C<use strict "subs">
68would still apply to bareword constants. That has now been accomplished a
69different way, so barewords, like other constants, now gain the performance
70benefits of constant folding.
71
72This also means that void-context warnings on constant expressions of
73barewords now report the folded constant operand, rather than the operation;
74this matches the behaviour for non-bareword constants.
75
76=back
77
78=head1 Modules and Pragmata
79
80=head2 Updated Modules and Pragmata
81
82=over 4
83
84=item *
85
86L<Archive::Tar> has been upgraded from version 2.04 to 2.08.
87
88=item *
89
90L<Carp> has been upgraded from version 1.40 to 1.41.
91
92=item *
93
94L<charnames> has been upgraded from version 1.43 to 1.44.
95
96=item *
97
98L<Config::Perl::V> has been upgraded from version 0.25 to 0.26.
99
100=item *
101
102L<DB_File> has been upgraded from version 1.835 to 1.838.
103
104=item *
105
106L<Digest::MD5> has been upgraded from version 2.54 to 2.55.
107
108=item *
109
110L<IPC::Cmd> has been upgraded from version 0.92 to 0.94.
111
112=item *
113
114L<IPC::SysV> has been upgraded from version 2.06_01 to 2.07.
115
116=item *
117
118L<List::Util> has been upgraded from version 1.42_02 to 1.45_01.
119
120=item *
121
122L<Locale::Codes> has been upgraded from version 3.37 to 3.38.
123
124=item *
125
126L<Locale::Maketext> has been upgraded from version 1.26 to 1.27.
127
128=item *
129
130L<Module::CoreList> has been upgraded from version 5.20160507 to 5.20160520.
131
132=item *
133
134L<Module::Metadata> has been upgraded from version 1.000031 to 1.000032.
135
136=item *
137
138L<perlfaq> has been upgraded from version 5.021010 to 5.021011.
139
140=item *
141
142L<POSIX> has been upgraded from version 1.65 to 1.69. This remedies several
143defects in making its symbols exportable. [perl #127821]
144The C<POSIX::tmpnam()> interface has been removed,
145see L</"POSIX::tmpnam() has been removed">.
146Trying to import POSIX subs that have no real implementations
147(like C<POSIX::atend()>) now fails at import time, instead of
148waiting until runtime.
149
150=item *
151
152L<re> has been upgraded from version 0.32 to 0.33.
153
154=item *
155
156L<Scalar::Util> has been upgraded from version 1.42_02 to 1.45_01.
157
158=item *
159
160L<Sys::Syslog> has been upgraded from version 0.33 to 0.34.
161
162=item *
163
164L<Term::ANSIColor> has been upgraded from version 4.04 to 4.05.
165
166=item *
167
168L<Test::Simple> has been upgraded from version 1.001014 to 1.302015.
169
170=item *
171
172L<threads> has been upgraded from version 2.07 to 2.08. Compatibility
173with 5.8 has been restored.
174
175=item *
176
177L<threads::shared> has been upgraded from version 1.51 to 1.52.
178Compatibility with 5.8 has been restored.
179
180=back
181
182=head1 Documentation
183
184=head2 Changes to Existing Documentation
185
186=over 4
187
188=item *
189
190Fixed link to Crosby paper on hash complexity attack in L<perlsec>.
191
192=back
193
194=head1 Diagnostics
195
196=head2 New Diagnostics
197
198=head3 New Errors
199
200=over 4
201
202=item *
203
204L<Bareword in require contains "%s"|perldiag/"Bareword in require contains "%s"">
205
206=item *
207
208L<Bareword in require maps to empty filename|perldiag/"Bareword in require maps to empty filename">
209
210=item *
211
212L<Bareword in require maps to disallowed filename "%s"|perldiag/"Bareword in require maps to disallowed filename "%s"">
213
214=item *
215
216L<Bareword in require must not start with a double-colon: "%s"|perldiag/"Bareword in require must not start with a double-colon: "%s"">
217
218=back
219
220=head2 Changes to Existing Diagnostics
221
222=over 4
223
224=item *
225
226Code like C<$x = $x . "a"> was incorrectly failing to yield a
227L<use of uninitialized value|perldiag/"Use of uninitialized value%s">
228warning when C<$x> was a lexical variable with an undefined value. That has
229now been fixed. [perl #127877]
230
231=item *
232
233When the error "Experimental push on scalar is now forbidden" is raised for
234the hash functions C<keys>, C<each>, and C<values>, it is now followed by
235the more helpful message, "Type of arg 1 to whatever must be hash or
236array". [perl #127976]
237
238=item *
239
240C<undef *_; shift> or C<undef *_; pop> inside a subroutine, with no
241argument to C<shift> or C<pop>, began crashing in Perl 5.14.0, but has now
242been fixed.
243
244=item *
245
246C<< "string$scalar-E<gt>$*" >> now correctly prefers concat overloading to
247string overloading if C<< $scalar-E<gt>$* >> returns an overloaded object,
248bringing it into consistency with C<$$scalar>.
249
250=item *
251
252C<< /@0{0*-E<gt>@*/*0 >> and similar contortions used to crash, but no longer
253do, but merely produce a syntax error. [perl #128171]
254
255=item *
256
257C<do> or C<require> with a reference or typeglob which, when stringified,
258contains a null character started crashing in Perl 5.20.0, but has now been
259fixed. [perl #128182]
260
261=back
262
263=head1 Utility Changes
264
265=head2 L<perlbug>
266
267=over 4
268
269=item *
270
271Long lines in the message body are now wrapped at 900 characters, to stay
272well within the 1000-character limit imposed by SMTP mail transfer agents.
273This is particularly likely to be important for the list of arguments to
274C<Configure>, which can readily exceed the limit if, for example, it names
275several non-default installation paths. This change also adds the first unit
276tests for perlbug. [perl #128020]
277
278=back
279
280=head1 Configuration and Compilation
281
282=over 4
283
284=item *
285
286C<Configure> now builds C<miniperl> and C<generate_uudmap> if you
287invoke it with C<-Dusecrosscompiler> but not C<-Dtargethost=somehost>.
288This means you can supply your target platform C<config.sh>, generate
289the headers and proceed to build your cross-target perl. [perl #127234]
290
291=item *
292
293Builds with C<-Accflags=-DPERL_TRACE_OPS> now only dump the operator
294counts when the environment variable C<PERL_TRACE_OPS> to be set to a
295non-zero integer. This allows C<make test> to pass on such a build.
296
297=item *
298
299When building with GCC 6 and link-time optimization (the C<-flto> option to
300C<gcc>), C<Configure> was treating all probed symbols as present on the
301system, regardless of whether they actually exist. This has been fixed.
302[perl #128131]
303
304=item *
305
306The F<t/test.pl> library is used for internal testing of Perl itself, and
307also copied by several CPAN modules. Some of those modules must work on
308older versions of Perl, so F<t/test.pl> must in turn avoid newer Perl
309features. Compatibility with Perl 5.8 was inadvertently removed some time
310ago; it has now been restored. [perl #128052]
311
312=item *
313
314The build process no longer emits an extra blank line before building each
315"simple" extension (those with only F<*.pm> and F<*.pod> files).
316
317=back
318
319=head1 Internal Changes
320
321=over 4
322
323=item *
324
325Perl is now built with the C<PERL_OP_PARENT> compiler define enabled by
326default. To disable it, use the C<PERL_NO_OP_PARENT> compiler define.
327This flag alters how the C<op_sibling> field is used in C<OP> structures,
328and has been available optionally since perl 5.22.0.
329
330See L<perl5220delta/"Internal Changes"> for more details of what this
331build option does.
332
333=back
334
335=head1 Selected Bug Fixes
336
337=over 4
338
339=item *
340
341Expressions containing an C<&&> or C<||> operator (or their synonyms C<and>
342and C<or>) were being compiled incorrectly in some cases. If the left-hand
343side consisted of either a negated bareword constant or a negated C<do {}>
344block containing a constant expression, and the right-hand side consisted of
345a negated non-foldable expression, one of the negations was effectively
346ignored. The same was true of C<if> and C<unless> statement modifiers,
347though with the left-hand and right-hand sides swapped. This long-standing
348bug has now been fixed. [perl #127952]
349
350=item *
351
352C<reset> with an argument no longer crashes when encountering stash entries
353other than globs. [perl #128106]
354
355=item *
356
357Assignment of hashes to, and deletion of, typeglobs named C<*::::::> no
358longer causes crashes. [perl #128086]
359
360=back
361
362=head1 Acknowledgements
363
364Perl 5.25.1 represents approximately 2 weeks of development since Perl 5.25.0
365and contains approximately 46,000 lines of changes across 630 files from 24
366authors.
367
368Excluding auto-generated files, documentation and release tools, there were
369approximately 40,000 lines of changes to 510 .pm, .t, .c and .h files.
370
371Perl continues to flourish into its third decade thanks to a vibrant community
372of users and developers. The following people are known to have contributed the
373improvements that became Perl 5.25.1:
374
375Aaron Crane, Andreas Voegele, Chad Granum, Chris 'BinGOs' Williams, Craig A.
376Berry, David Mitchell, Doug Bell, Father Chrysostomos, H.Merijn Brand, Hugo van
377der Sanden, Jarkko Hietaniemi, Jerry D. Hedden, Jim Cromie, John Lightsey,
378Karen Etheridge, Karl Williamson, Lukas Mai, Maxwell Carey, Nicholas Clark,
379Niko Tyni, Ricardo Signes, Sawyer X, Tony Cook, Yves Orton.
380
381The list above is almost certainly incomplete as it is automatically generated
382from version control history. In particular, it does not include the names of
383the (very much appreciated) contributors who reported issues to the Perl bug
384tracker.
385
386Many of the changes included in this version originated in the CPAN modules
387included in Perl's core. We're grateful to the entire CPAN community for
388helping Perl to flourish.
389
390For a more complete list of all of Perl's historical contributors, please see
391the F<AUTHORS> file in the Perl source distribution.
392
393=head1 Reporting Bugs
394
395If you find what you think is a bug, you might check the articles recently
396posted to the comp.lang.perl.misc newsgroup and the perl bug database at
397L<https://rt.perl.org/> . There may also be information at
398L<http://www.perl.org/> , the Perl Home Page.
399
400If you believe you have an unreported bug, please run the L<perlbug> program
401included with your release. Be sure to trim your bug down to a tiny but
402sufficient test case. Your bug report, along with the output of C<perl -V>,
403will be sent off to perlbug@perl.org to be analysed by the Perl porting team.
404
405If the bug you are reporting has security implications which make it
406inappropriate to send to a publicly archived mailing list, then see
407L<perlsec/SECURITY VULNERABILITY CONTACT INFORMATION>
408for details of how to report the issue.
409
410=head1 SEE ALSO
411
412The F<Changes> file for an explanation of how to view exhaustive details on
413what changed.
414
415The F<INSTALL> file for how to build Perl.
416
417The F<README> file for general stuff.
418
419The F<Artistic> and F<Copying> files for copyright information.
420
421=cut