This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
PL_sv_objcount deprecation notice
[perl5.git] / pod / perl5174delta.pod
CommitLineData
5d8c8c8a
FR
1=encoding utf8
2
3=head1 NAME
4
5perl5174delta - what is new for perl v5.17.4
6
7=head1 DESCRIPTION
8
9This document describes differences between the 5.17.3 release and the 5.17.4
10release.
11
12If you are upgrading from an earlier release such as 5.17.2, first read
13L<perl5173delta>, which describes differences between 5.17.2 and 5.17.3.
14
15=head1 Core Enhancements
16
17=head2 Latest Unicode 6.2 beta is included
18
19This is supposed to be the final data for 6.2, unless glitches are
20found. The earlier experimental 6.2 beta data has been reverted, and
21this used instead. Not all the changes that were proposed for 6.2 and
22that were in the earlier beta versions are actually going into 6.2. In
23particular, there are no changes from 6.1 in the General_Category of any
24characters. 6.2 does revise the C<\X> handling for the REGIONAL
25INDICATOR characters that were added in Unicode 6.0. Perl now for the
26first time fully handles this revision.
27
28=head2 New DTrace probes
29
30The following new DTrace probes have been added:
31
32=over 4
33
34=item C<op-entry>
35
36=item C<loading-file>
37
38=item C<loaded-file>
39
40=back
41
42=head2 C<${^LAST_FH}>
43
44This new variable provides access to the filehandle that was last read.
45This is the handle used by C<$.> and by C<tell> and C<eof> without
46arguments.
47
48=head2 Looser here-doc parsing
49
50Here-doc terminators no longer require a terminating newline character when
51they occur at the end of a file. This was already the case at the end of a
52string eval [perl #65838].
53
54=head2 New mechanism for experimental features
55
56Newly-added experimental features will now require this incantation:
57
58 no warnings "experimental:feature_name";
59 use feature "feature_name"; # would warn without the prev line
60
61There is a new warnings category, called "experimental", containing
62warnings that the L<feature> pragma emits when enabling experimental
63features.
64
65Newly-added experimental features will also be given special warning IDs,
66which consist of "experimental:" followed by the name of the feature. (The
67plan is to extend this mechanism eventually to all warnings, to allow them
68to be enabled or disabled individually, and not just by category.)
69
70By saying
71
72 no warnings "experimental:feature_name";
73
74you are taking responsibility for any breakage that future changes to, or
75removal of, the feature may cause.
76
77=head2 Lexical subroutines
78
79This new feature is still considered experimental. To enable it, use the
80mechanism described above:
81
82 use 5.018;
83 no warnings "experimental:lexical_subs";
84 use feature "lexical_subs";
85
86You can now declare subroutines with C<state sub foo>, C<my sub foo>, and
87C<our sub foo>. (C<state sub> requires that the "state" feature be
88enabled, unless you write it as C<CORE::state sub foo>.)
89
90C<state sub> creates a subroutine visible within the lexical scope in which
91it is declared. The subroutine is shared between calls to the outer sub.
92
93C<my sub> declares a lexical subroutine that is created each time the
94enclosing block is entered. C<state sub> is generally slightly faster than
95C<my sub>.
96
97C<our sub> declares a lexical alias to the package subroutine of the same
98name.
99
100See L<perlsub/Lexical Subroutines>.
101
102=head1 Incompatible Changes
103
104=head2 Here-doc parsing
105
106The body of a here-document inside a quote-like operator now always begins
107on the line after the "<<foo" marker. Previously, it was documented to
108begin on the line following the containing quote-like operator, but that
109was only sometimes the case [perl #114040].
110
111=head2 Stricter parsing of substitution replacement
112
113It is no longer possible to abuse the way the parser parses C<s///e> like
114this:
115
116 %_=(_,"Just another ");
117 $_="Perl hacker,\n";
118 s//_}->{_/e;print
119
120=head2 Interaction of lexical and default warnings
121
122Turning on any lexical warnings used first to disable all default warnings
123if lexical warnings were not already enabled:
124
125 $*; # deprecation warning
126 use warnings "void";
127 $#; # void warning; no deprecation warning
128
129Now, the debugging, deprecated, glob, inplace and malloc warnings
130categories are left on when turning on lexical warnings (unless they are
131turned off by C<no warnings>, of course).
132
133This may cause deprecation warnings to occur in code that used to be free
134of warnings.
135
136Those are the only categories consisting only of default warnings. Default
137warnings in other categories are still disabled by C<use warnings
138"category">, as we do not yet have the infrastructure for controlling
139individual warnings.
140
141=head2 C<state sub> and C<our sub>
142
143Due to an accident of history, C<state sub> and C<our sub> were equivalent
144to a plain C<sub>, so one could even create an anonymous sub with
145C<our sub { ... }>. These are now disallowed outside of the "lexical_subs"
146feature. Under the "lexical_subs" feature they have new meanings described
147in L<perlsub/Lexical Subroutines>.
148
149=head2 C<gv_fetchmeth_*> and SUPER
150
151The various C<gv_fetchmeth_*> XS functions used to treat a package whose
152named ended with ::SUPER specially. A method lookup on the Foo::SUPER
153package would be treated as a SUPER method lookup on the Foo package. This
154is no longer the case. To do a SUPER lookup, pass the Foo stash and the
155GV_SUPER flag.
156
157=head1 Performance Enhancements
158
159=over 4
160
161=item *
162
163Speed up in regular expression matching against Unicode properties. The
164largest gain is for C<\X>, the Unicode "extended grapheme cluster". The
165gain for it is about 35% - 40%. Bracketed character classes, e.g.,
166C<[0-9\x{100}]> containing code points above 255 are also now faster.
167
168=item *
169
170On platforms supporting it, several former macros are now implemented as static
171inline functions. This should speed things up slightly on non-GCC platforms.
172
173=item *
174
175Apply the optimisation of hashes in boolean context, such as in C<if> or C<and>,
176to constructs in non-void context.
177
178=item *
179
180Extend the optimisation of hashes in boolean context to C<scalar(%hash)>,
181C<%hash ? ... : ...>, and C<sub { %hash || ... }>.
182
183=item *
184
185When making a copy of the string being matched against (so that $1, $& et al
186continue to show the correct value even if the original string is subsequently
187modified), only copy that substring of the original string needed for the
188capture variables, rather than copying the whole string.
189
190This is a big win for code like
191
192 $&;
193 $_ = 'x' x 1_000_000;
194 1 while /(.)/;
195
196Also, when pessimizing if the code contains C<$`>, C<$&> or C<$'>, record the
197presence of each variable separately, so that the determination of the substring
198range is based on each variable separately. So performance-wise,
199
200 $&; /x/
201
202is now roughly equivalent to
203
204 /(x)/
205
206whereas previously it was like
207
208 /^(.*)(x)(.*)$/
209
210and
211
212 $&; $'; /x/
213
214is now roughly equivalent to
215
216 /(x)(.*)$/
217
218etc.
219
220=back
221
222=head1 Modules and Pragmata
223
224=head2 Updated Modules and Pragmata
225
226=over 4
227
228=item *
229
230L<Archive::Tar> has been upgraded from version 1.88 to 1.90. This adds
231documentation fixes.
232
233=item *
234
235L<B> has been upgraded from version 1.37 to 1.38. This makes the module work
236with the new pad API.
237
238=item *
239
240L<B::Concise> has been upgraded from version 0.92 to 0.93. This adds support
241for the new C<OpMAYBE_TRUEBOOL> and C<OPpTRUEBOOL> flags.
242
243=item *
244
245L<B::Deparse> has been upgraded from version 1.16 to 1.17. This suppresses
246trailing semicolons in formats.
247
248=item *
249
250L<CPANPLUS> has been upgraded from version 0.9130 to 0.9131. This resolves
251issues with the SQLite source engine.
252
253=item *
254
255L<DB_File> has been upgraded from version 1.826 to 1.827. The main Perl module
256no longer uses the C<"@_"> construct.
257
258=item *
259
260L<Devel::Peek> has been upgraded from version 1.09 to 1.10. This fixes
261compilation with C++ compilers and makes the module work with the new pad API.
262
263=item *
264
265L<DynaLoader> has been upgraded from version 1.15 to 1.16. This fixes warnings
266about using C<CODE> sections without an C<OUTPUT> section.
267
268=item *
269
270L<ExtUtils::ParseXS> has been upgraded from version 3.17 to 3.18. This avoids a
271bogus warning for initialised XSUB non-parameters [perl #112776].
272
273=item *
274
275L<File::Copy> has been upgraded from version 2.23 to 2.24. C<copy()> no longer
276zeros files when copying into the same directory, and also now fails (as it has
277long been documented to do) when attempting to copy a file over itself.
278
279=item *
280
281L<File::Find> has been upgraded from version 1.21 to 1.22. This fixes
282inconsistent unixy path handling on VMS.
283
284=item *
285
286L<IPC::Open3> has been upgraded from version 1.12 to 1.13. The C<open3()>
287function no longer uses C<POSIX::close()> to close file descriptors since that
288breaks the ref-counting of file descriptors done by PerlIO in cases where the
289file descriptors are shared by PerlIO streams, leading to attempts to close the
290file descriptors a second time when any such PerlIO streams are closed later on.
291
292=item *
293
294L<Locale::Codes> has been upgraded from version 3.22 to 3.23. It includes some
295new codes.
296
297=item *
298
299L<Module::CoreList> has been upgraded from version 2.71 to 2.73. This restores
300compatibility with older versions of perl and cleans up the corelist data for
301various modules.
302
303=item *
304
305L<Opcode> has been upgraded from version 1.23 to 1.24 to reflect the removal of
306the boolkeys opcode and the addition of the clonecv, introcv and padcv
307opcodes.
308
309=item *
310
311L<Socket> has been upgraded from version 2.004 to 2.006.
312C<unpack_sockaddr_in()> and C<unpack_sockaddr_in6()> now return just the IP
313address in scalar context, and C<inet_ntop()> now guards against incorrect
314length scalars being passed in.
315
316=item *
317
318L<Storable> has been upgraded from version 2.38 to 2.39. This contains various
319bugfixes, including compatibility fixes for older versions of Perl and vstring
320handling.
321
322=item *
323
324L<Sys::Syslog> has been upgraded from version 0.31 to 0.32. This includes
325several documentation and bug fixes.
326
327=item *
328
329L<threads::shared> has been upgraded from version 1.40 to 1.41. This adds the
330option to warn about or ignore attempts to clone structures that can't be
331cloned, as opposed to just unconditionally dying in that case.
332
333=item *
334
335L<version> has been upgraded from version 0.99 to 0.9901.
336
337=item *
338
339L<XSLoader> has been upgraded from version 0.15 to 0.16.
340
341=back
342
343=head1 Diagnostics
344
345The following additions or changes have been made to diagnostic output,
346including warnings and fatal error messages. For the complete list of
347diagnostic messages, see L<perldiag>.
348
349=head2 New Diagnostics
350
351=head3 New Warnings
352
353=over 4
354
355=item *
356
357L<Experimental "%s" subs not enabled|perldiag/"Experimental "%s" subs not enabled">
358
359(F) To use lexical subs, you must first enable them:
360
361 no warnings 'experimental:lexical_subs';
362 use feature 'lexical_subs';
363 my sub foo { ... }
364
365=item *
366
367L<Subroutine "&%s" is not available|perldiag/"Subroutine "&%s" is not available">
368
369(W closure) During compilation, an inner named subroutine or eval is
370attempting to capture an outer lexical subroutine that is not currently
371available. This can happen for one of two reasons. First, the lexical
372subroutine may be declared in an outer anonymous subroutine that has not
373yet been created. (Remember that named subs are created at compile time,
374while anonymous subs are created at run-time.) For example,
375
376 sub { my sub a {...} sub f { \&a } }
377
378At the time that f is created, it can't capture the current the "a" sub,
379since the anonymous subroutine hasn't been created yet. Conversely, the
380following won't give a warning since the anonymous subroutine has by now
381been created and is live:
382
383 sub { my sub a {...} eval 'sub f { \&a }' }->();
384
385The second situation is caused by an eval accessing a variable that has
386gone out of scope, for example,
387
388 sub f {
389 my sub a {...}
390 sub { eval '\&a' }
391 }
392 f()->();
393
394Here, when the '\&a' in the eval is being compiled, f() is not currently
395being executed, so its &a is not available for capture.
396
397=item *
398
399L<"%s" subroutine &%s masks earlier declaration in same %s|perldiag/"%s" subroutine &%s masks earlier declaration in same %s>
400
401(W misc) A "my" or "state" subroutine has been redeclared in the
402current scope or statement, effectively eliminating all access to
403the previous instance. This is almost always a typographical error.
404Note that the earlier subroutine will still exist until the end of
405the scope or until all closure references to it are destroyed.
406
407=item *
408
409L<The %s feature is experimental|perldiag/"The %s feature is experimental">
410
411(S experimental) This warning is emitted if you enable an experimental
412feature via C<use feature>. Simply suppress the warning if you want
413to use the feature, but know that in doing so you are taking the risk
414of using an experimental feature which may change or be removed in a
415future Perl version:
416
417 no warnings "experimental:lexical_subs";
418 use feature "lexical_subs";
419
420=item *
421
422L<sleep(%u) too large|perldiag/"sleep(%u) too large">
423
424(W overflow) You called C<sleep> with a number that was larger than it can
425reliably handle and C<sleep> probably slept for less time than requested.
426
427=back
428
429=head2 Changes to Existing Diagnostics
430
431=over 4
432
433=item *
434
435L<vector argument not supported with alpha versions|perldiag/vector argument not supported with alpha versions>
436
437This warning was not suppressable, even with C<no warnings>. Now it is
438suppressible, and has been moved from the "internal" category to the
439"printf" category.
440
441=item *
442
443C<< Can't do {n,m} with n > m in regex; marked by <-- HERE in m/%s/ >>
444
445This fatal error has been turned into a warning that reads:
446
447L<< Quantifier {n,m} with n > m can't match in regex | perldiag/Quantifier {n,m} with n > m can't match in regex >>
448
449(W regexp) Minima should be less than or equal to maxima. If you really want
450your regexp to match something 0 times, just put {0}.
451
452=back
453
454=head1 Configuration and Compilation
455
456=over 4
457
458=item *
459
460F<Configure> will now correctly detect C<isblank()> when compiling with a C++
461compiler.
462
463=back
464
465=head1 Platform Support
466
467=head2 Discontinued Platforms
468
469=over 4
470
471=item VM/ESA
472
473Support for VM/ESA has been removed. The port was tested on 2.3.0, which
474IBM ended service on in March 2002. 2.4.0 ended service in June 2003, and
475was superseded by Z/VM. The current version of Z/VM is V6.2.0, and scheduled
476for end of service on 2015/04/30.
477
478=back
479
480=head2 Platform-Specific Notes
481
482=over 4
483
484=item Win32
485
486Fixed a problem where perl could crash while cleaning up threads (including the
487main thread) in threaded debugging builds on Win32 and possibly other platforms
488[perl #114496].
489
490A rare race condition that would lead to L<sleep|perlfunc/sleep> taking more
491time than requested, and possibly even hanging, has been fixed [perl #33096].
492
493=item Solaris
494
495In Configure, avoid running sed commands with flags not supported on Solaris.
496
497=item Darwin
498
499Stop hardcoding an alignment on 8 byte boundaries to fix builds using
500-Dusemorebits.
501
502=item VMS
503
504Fix linking on builds configured with -Dusemymalloc=y.
505
506=back
507
508=head1 Internal Changes
509
510=over 4
511
512=item *
513
514The APIs for accessing lexical pads have changed considerably.
515
516C<PADLIST>s are now longer C<AV>s, but their own type instead. C<PADLIST>s now
517contain a C<PAD> and a C<PADNAMELIST> of C<PADNAME>s, rather than C<AV>s for the
518pad and the list of pad names. C<PAD>s, C<PADNAMELIST>s, and C<PADNAME>s are to
519be accessed as such through the newly added pad API instead of the plain C<AV>
520and C<SV> APIs. See L<perlapi> for details.
521
522=item *
523
524In the regex API, the numbered capture callbacks are passed an index
525indicating what match variable is being accessed. There are special
526index values for the C<$`, $&, $&> variables. Previously the same three
527values were used to retrieve C<${^PREMATCH}, ${^MATCH}, ${^POSTMATCH}>
528too, but these have now been assigned three separate values. See
529L<perlreapi/Numbered capture callbacks>.
530
531=item *
532
533C<PL_sawampersand> was previously a boolean indicating that any of
534C<$`, $&, $&> had been seen; it now contains three one-bit flags
535indicating the presence of each of the variables individually.
536
537=back
538
539=head1 Selected Bug Fixes
540
541=over 4
542
543=item *
544
545The error "Can't localize through a reference" had disappeared in 5.16.0
546when C<local %$ref> appeared on the last line of an lvalue subroutine.
547This error disappeared for C<\local %$ref> in perl 5.8.1. It has now
548been restored.
549
550=item *
551
552The parsing of here-docs has been improved significantly, fixing several
553parsing bugs and crashes and one memory leak, and correcting wrong
554subsequent line numbers under certain conditions.
555
556=item *
557
558Inside an eval, the error message for an unterminated here-doc no longer
559has a newline in the middle of it [perl #70836].
560
561=item *
562
563A substitution inside a substitution pattern (C<s/${s|||}//>) no longer
564confuses the parser.
565
566=item *
567
568It may be an odd place to allow comments, but C<s//"" # hello/e> has
569always worked, I<unless> there happens to be a null character before the
570first #. Now it works even in the presence of nulls.
571
572=item *
573
574An invalid range in C<tr///> or C<y///> no longer results in a memory leak.
575
576=item *
577
578String eval no longer treats a semicolon-delimited quote-like operator at
579the very end (C<eval 'q;;'>) as a syntax error.
580
581=item *
582
583C<< warn {$_ => 1} + 1 >> is no longer a syntax error. The parser used to
584get confused with certain list operators followed by an anonymous hash and
585then an infix operator that shares its form with a unary operator.
586
587=item *
588
589C<(caller $n)[6]> (which gives the text of the eval) used to return the
590actual parser buffer. Modifying it could result in crashes. Now it always
591returns a copy. The string returned no longer has "\n;" tacked on to the
592end. The returned text also includes here-doc bodies, which used to be
593omitted.
594
595=item *
596
597Reset the utf8 position cache when accessing magical variables to avoid the
598string buffer and the utf8 position cache getting out of sync
599[perl #114410].
600
601=item *
602
603Various cases of get magic being called twice for magical utf8 strings have been
604fixed.
605
606=item *
607
608This code (when not in the presence of C<$&> etc)
609
610 $_ = 'x' x 1_000_000;
611 1 while /(.)/;
612
613used to skip the buffer copy for performance reasons, but suffered from C<$1>
614etc changing if the original string changed. That's now been fixed.
615
616=item *
617
618Perl doesn't use PerlIO anymore to report out of memory messages, as PerlIO
619might attempt to allocate more memory.
620
621=item *
622
623In a regular expression, if something is quantified with C<{n,m}>
624where C<S<n E<gt> m>>, it can't possibly match. Previously this was a fatal error,
625but now is merely a warning (and that something won't match). [perl #82954].
626
627=item *
628
629It used to be possible for formats defined in subroutines that have
630subsequently been undefined and redefined to close over variables in the
631wrong pad (the newly-defined enclosing sub), resulting in crashes or
632"Bizarre copy" errors.
633
634=item *
635
636Redefinition of XSUBs at run time could produce warnings with the wrong
637line number.
638
639=item *
640
641The %vd sprintf format does not support version objects for alpha versions.
642It used to output the format itself (%vd) when passed an alpha version, and
643also emit an "Invalid conversion in printf" warning. It no longer does,
644but produces the empty string in the output. It also no longer leaks
645memory in this case.
646
647=item *
648
649A bug fix in an earlier 5.17.x release caused C<no a a 3> (a syntax error)
650to result in a bad read or assertion failure, because an op was being freed
651twice.
652
653=item *
654
655C<< $obj->SUPER::method >> calls in the main package could fail if the
656SUPER package had already been accessed by other means.
657
658=item *
659
660Stash aliasing (C<*foo:: = *bar::>) no longer causes SUPER calls to ignore
661changes to methods or @ISA or use the wrong package.
662
663=item *
664
665Method calls on packages whose names end in ::SUPER are no longer treated
666as SUPER method calls, resulting in failure to find the method.
667Furthermore, defining subroutines in such packages no longer causes them to
668be found by SUPER method calls on the containing package [perl #114924].
669
670=back
671
672=head1 Known Problems
673
674=over 4
675
676=item *
677
678Changes in the lexical pad API break some CPAN modules.
679
680To avoid having to patch those modules again later if we change pads from AVs
681into their own types, APIs for accessing the contents of pads have been added.
682
683=back
684
685=head1 Acknowledgements
686
687Perl 5.17.4 represents approximately 4 weeks of development since Perl 5.17.3
688and contains approximately 82,000 lines of changes across 360 files from 37
689authors.
690
691Perl continues to flourish into its third decade thanks to a vibrant community
692of users and developers. The following people are known to have contributed the
693improvements that became Perl 5.17.4:
694
695Abhijit Menon-Sen, Andy Dougherty, Aristotle Pagaltzis, Chris 'BinGOs'
696Williams, Colin Kuskie, Craig A. Berry, Daniel Dragan, David Golden, David
697Leadbeater, David Mitchell, David Nicol, Dominic Hargreaves, Father
698Chrysostomos, Florian Ragwitz, H.Merijn Brand, James E Keenan, Jerry D. Hedden,
699Jesse Luehrs, John Peacock, Karen Etheridge, Karl Williamson, Leon Timmermans,
700Michael G Schwern, Nicholas Clark, Peter Martini, Rafael Garcia-Suarez, Ricardo
701Signes, Shawn M Moore, Shlomi Fish, Steffen Müller, Steve Hay, Sullivan Beck,
702Sébastien Aperghis-Tramoni, Tony Cook, Vincent Pit, Yves Orton.
703
704The list above is almost certainly incomplete as it is automatically generated
705from version control history. In particular, it does not include the names of
706the (very much appreciated) contributors who reported issues to the Perl bug
707tracker.
708
709Many of the changes included in this version originated in the CPAN modules
710included in Perl's core. We're grateful to the entire CPAN community for
711helping Perl to flourish.
712
713For a more complete list of all of Perl's historical contributors, please see
714the F<AUTHORS> file in the Perl source distribution.
715
716=head1 Reporting Bugs
717
718If you find what you think is a bug, you might check the articles recently
719posted to the comp.lang.perl.misc newsgroup and the perl bug database at
720http://rt.perl.org/perlbug/ . There may also be information at
721http://www.perl.org/ , the Perl Home Page.
722
723If you believe you have an unreported bug, please run the L<perlbug> program
724included with your release. Be sure to trim your bug down to a tiny but
725sufficient test case. Your bug report, along with the output of C<perl -V>,
726will be sent off to perlbug@perl.org to be analysed by the Perl porting team.
727
728If the bug you are reporting has security implications, which make it
729inappropriate to send to a publicly archived mailing list, then please send it
730to perl5-security-report@perl.org. This points to a closed subscription
731unarchived mailing list, which includes all the core committers, who will be
732able to help assess the impact of issues, figure out a resolution, and help
733co-ordinate the release of patches to mitigate or fix the problem across all
734platforms on which Perl is supported. Please only use this address for
735security issues in the Perl core, not for modules independently distributed on
736CPAN.
737
738=head1 SEE ALSO
739
740The F<Changes> file for an explanation of how to view exhaustive details on
741what changed.
742
743The F<INSTALL> file for how to build Perl.
744
745The F<README> file for general stuff.
746
747The F<Artistic> and F<Copying> files for copyright information.
748
749=cut