The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

perl5251delta - what is new for perl v5.25.1

DESCRIPTION

This document describes differences between the 5.25.0 release and the 5.25.1 release.

If you are upgrading from an earlier release such as 5.24.0, first read perl5250delta, which describes differences between 5.24.0 and 5.25.0.

Core Enhancements

POSIX::tmpnam() has been removed

The fundamentally unsafe tmpnam() interface was deprecated in Perl 5.22.0 and has now been removed. In its place you can use for example the File::Temp interfaces.

require ::Foo::Bar is now illegal.

Formerly, require ::Foo::Bar would try to read /Foo/Bar.pm. Now any bareword require which starts with a double colon dies instead.

Unescaped literal "{" characters in regular expression patterns are no longer permissible

You have to now say something like "\{" or "[{]" to specify to match a LEFT CURLY BRACKET. This will allow future extensions to the language. This restriction is not enforced, nor are there current plans to enforce it, if the "{" is the first character in the pattern.

These have been deprecated since v5.16, with a deprecation message displayed starting in v5.22.

Literal control character variable names are no longer permissible

A variable name may no longer contain a literal control character under any circumstances. These previously were allowed in single-character names on ASCII platforms, but have been deprecated there since Perl v5.20. This affects things like $\cT, where \cT is a literal control (such as a NAK or NEGATIVE ACKNOWLEDGE character) in the source code.

qr//xx is no longer permissible

Using more than one /x regular expression pattern modifier on a single pattern is now forbidden. This is to allow a future enhancement to the language. This usage has been deprecated since v5.22.

NBSP is no longer permissible in \N{...}

The name of a character may no longer contain non-breaking spaces. It has been deprecated to do so since Perl v5.22.

Performance Enhancements

  • Bareword constant strings are now permitted to take part in constant folding. They were originally exempted from constant folding in August 1999, during the development of Perl 5.6, to ensure that use strict "subs" would still apply to bareword constants. That has now been accomplished a different way, so barewords, like other constants, now gain the performance benefits of constant folding.

    This also means that void-context warnings on constant expressions of barewords now report the folded constant operand, rather than the operation; this matches the behaviour for non-bareword constants.

Modules and Pragmata

Updated Modules and Pragmata

  • Archive::Tar has been upgraded from version 2.04 to 2.08.

  • Carp has been upgraded from version 1.40 to 1.41.

  • charnames has been upgraded from version 1.43 to 1.44.

  • Config::Perl::V has been upgraded from version 0.25 to 0.26.

  • DB_File has been upgraded from version 1.835 to 1.838.

  • Digest::MD5 has been upgraded from version 2.54 to 2.55.

  • IPC::Cmd has been upgraded from version 0.92 to 0.94.

  • IPC::SysV has been upgraded from version 2.06_01 to 2.07.

  • List::Util has been upgraded from version 1.42_02 to 1.45_01.

  • Locale::Codes has been upgraded from version 3.37 to 3.38.

  • Locale::Maketext has been upgraded from version 1.26 to 1.27.

  • Module::CoreList has been upgraded from version 5.20160507 to 5.20160520.

  • Module::Metadata has been upgraded from version 1.000031 to 1.000032.

  • perlfaq has been upgraded from version 5.021010 to 5.021011.

  • POSIX has been upgraded from version 1.65 to 1.69. This remedies several defects in making its symbols exportable. [perl #127821] The POSIX::tmpnam() interface has been removed, see "POSIX::tmpnam() has been removed". Trying to import POSIX subs that have no real implementations (like POSIX::atend()) now fails at import time, instead of waiting until runtime.

  • re has been upgraded from version 0.32 to 0.33.

  • Scalar::Util has been upgraded from version 1.42_02 to 1.45_01.

  • Sys::Syslog has been upgraded from version 0.33 to 0.34.

  • Term::ANSIColor has been upgraded from version 4.04 to 4.05.

  • Test::Simple has been upgraded from version 1.001014 to 1.302015.

  • threads has been upgraded from version 2.07 to 2.08. Compatibility with 5.8 has been restored.

  • threads::shared has been upgraded from version 1.51 to 1.52. Compatibility with 5.8 has been restored.

Documentation

Changes to Existing Documentation

  • Fixed link to Crosby paper on hash complexity attack in perlsec.

Diagnostics

New Diagnostics

New Errors

Changes to Existing Diagnostics

  • Code like $x = $x . "a" was incorrectly failing to yield a use of uninitialized value warning when $x was a lexical variable with an undefined value. That has now been fixed. [perl #127877]

  • When the error "Experimental push on scalar is now forbidden" is raised for the hash functions keys, each, and values, it is now followed by the more helpful message, "Type of arg 1 to whatever must be hash or array". [perl #127976]

  • undef *_; shift or undef *_; pop inside a subroutine, with no argument to shift or pop, began crashing in Perl 5.14.0, but has now been fixed.

  • "string$scalar->$*" now correctly prefers concat overloading to string overloading if $scalar->$* returns an overloaded object, bringing it into consistency with $$scalar.

  • /@0{0*->@*/*0 and similar contortions used to crash, but no longer do, but merely produce a syntax error. [perl #128171]

  • do or require with a reference or typeglob which, when stringified, contains a null character started crashing in Perl 5.20.0, but has now been fixed. [perl #128182]

Utility Changes

perlbug

  • Long lines in the message body are now wrapped at 900 characters, to stay well within the 1000-character limit imposed by SMTP mail transfer agents. This is particularly likely to be important for the list of arguments to Configure, which can readily exceed the limit if, for example, it names several non-default installation paths. This change also adds the first unit tests for perlbug. [perl #128020]

Configuration and Compilation

  • Configure now builds miniperl and generate_uudmap if you invoke it with -Dusecrosscompiler but not -Dtargethost=somehost. This means you can supply your target platform config.sh, generate the headers and proceed to build your cross-target perl. [perl #127234]

  • Builds with -Accflags=-DPERL_TRACE_OPS now only dump the operator counts when the environment variable PERL_TRACE_OPS to be set to a non-zero integer. This allows make test to pass on such a build.

  • When building with GCC 6 and link-time optimization (the -flto option to gcc), Configure was treating all probed symbols as present on the system, regardless of whether they actually exist. This has been fixed. [perl #128131]

  • The t/test.pl library is used for internal testing of Perl itself, and also copied by several CPAN modules. Some of those modules must work on older versions of Perl, so t/test.pl must in turn avoid newer Perl features. Compatibility with Perl 5.8 was inadvertently removed some time ago; it has now been restored. [perl #128052]

  • The build process no longer emits an extra blank line before building each "simple" extension (those with only *.pm and *.pod files).

Internal Changes

  • Perl is now built with the PERL_OP_PARENT compiler define enabled by default. To disable it, use the PERL_NO_OP_PARENT compiler define. This flag alters how the op_sibling field is used in OP structures, and has been available optionally since perl 5.22.0.

    See "Internal Changes" in perl5220delta for more details of what this build option does.

Selected Bug Fixes

  • Expressions containing an && or || operator (or their synonyms and and or) were being compiled incorrectly in some cases. If the left-hand side consisted of either a negated bareword constant or a negated do {} block containing a constant expression, and the right-hand side consisted of a negated non-foldable expression, one of the negations was effectively ignored. The same was true of if and unless statement modifiers, though with the left-hand and right-hand sides swapped. This long-standing bug has now been fixed. [perl #127952]

  • reset with an argument no longer crashes when encountering stash entries other than globs. [perl #128106]

  • Assignment of hashes to, and deletion of, typeglobs named *:::::: no longer causes crashes. [perl #128086]

Acknowledgements

Perl 5.25.1 represents approximately 2 weeks of development since Perl 5.25.0 and contains approximately 46,000 lines of changes across 630 files from 24 authors.

Excluding auto-generated files, documentation and release tools, there were approximately 40,000 lines of changes to 510 .pm, .t, .c and .h files.

Perl continues to flourish into its third decade thanks to a vibrant community of users and developers. The following people are known to have contributed the improvements that became Perl 5.25.1:

Aaron Crane, Andreas Voegele, Chad Granum, Chris 'BinGOs' Williams, Craig A. Berry, David Mitchell, Doug Bell, Father Chrysostomos, H.Merijn Brand, Hugo van der Sanden, Jarkko Hietaniemi, Jerry D. Hedden, Jim Cromie, John Lightsey, Karen Etheridge, Karl Williamson, Lukas Mai, Maxwell Carey, Nicholas Clark, Niko Tyni, Ricardo Signes, Sawyer X, Tony Cook, Yves Orton.

The list above is almost certainly incomplete as it is automatically generated from version control history. In particular, it does not include the names of the (very much appreciated) contributors who reported issues to the Perl bug tracker.

Many of the changes included in this version originated in the CPAN modules included in Perl's core. We're grateful to the entire CPAN community for helping Perl to flourish.

For a more complete list of all of Perl's historical contributors, please see the AUTHORS file in the Perl source distribution.

Reporting Bugs

If you find what you think is a bug, you might check the articles recently posted to the comp.lang.perl.misc newsgroup and the perl bug database at https://rt.perl.org/ . There may also be information at http://www.perl.org/ , the Perl Home Page.

If you believe you have an unreported bug, please run the perlbug program included with your release. Be sure to trim your bug down to a tiny but sufficient test case. Your bug report, along with the output of perl -V, will be sent off to perlbug@perl.org to be analysed by the Perl porting team.

If the bug you are reporting has security implications which make it inappropriate to send to a publicly archived mailing list, then see "SECURITY VULNERABILITY CONTACT INFORMATION" in perlsec for details of how to report the issue.

SEE ALSO

The Changes file for an explanation of how to view exhaustive details on what changed.

The INSTALL file for how to build Perl.

The README file for general stuff.

The Artistic and Copying files for copyright information.