=encoding utf8 =head1 NAME perl5213delta - what is new for perl v5.21.3 =head1 DESCRIPTION This document describes differences between the 5.21.2 release and the 5.21.3 release. If you are upgrading from an earlier release such as 5.21.1, first read L, which describes differences between 5.21.1 and 5.21.2. =head1 Core Enhancements =head2 C is no longer fatal In 5.21.1, C was made fatal. This has been relaxed to not die if the argument is assigning to an array. =head2 Floating point parsing has been improved Parsing and printing of floating point values has been improved. As a completely new feature, hexadecimal floating point literals (like 0x1.23p-4) are now supported, and they can be output with C. =head1 Security =head2 The L module could allow outside packages to be replaced Critical bugfix: outside packages could be replaced. L has been patched to 2.38 to address this. =head1 Incompatible Changes =head2 S> is now a fatal error Importing functions from C has been deprecated since v5.12, and is now a fatal error. S> without any arguments is still allowed. =head1 Modules and Pragmata =head2 Updated Modules and Pragmata =over 4 =item * L has been upgraded from version 1.19 to 1.21. =item * L has been upgraded from version 0.20 to 0.22. =item * L has been upgraded from version 2.141520 to 2.142060. =item * L has been upgraded from version 2.125 to 2.126. =item * L was moved from F to F. =item * L has been upgraded from version 0.280216 to 0.280217. =item * L was moved from F to F. =item * L has been upgraded from version 1.64 to 1.65. It was also moved from F to F. =item * L has been upgraded from version 0.043 to 0.047. =item * L has been upgraded from version 1.17 to 1.18. =item * L has been upgraded from version 5.021002 to 5.021003. =item * L has been upgraded from version 1.27 to 1.28. =item * L has been upgraded from version 1.45 to 1.46. =item * L has been upgraded from version 5.0150044 to 5.0150045. =item * L has been upgraded from version 1.41 to 1.42. =item * L has been upgraded from version 2.37 to 2.38. =item * L has been upgraded from version 2.014 to 2.015. =item * L has been upgraded from version 1.18 to 1.19 =item * L has been upgraded from version 1.11 to 1.12. =back =head1 Documentation =head2 Changes to Existing Documentation =head3 L =over 4 =item * Added reference to L. =back =head3 L =over 4 =item * Details on C level symbols and libperl.t added. =back =head3 L =over 4 =item * Recommended replacements for tmpfile, atoi, strtol, and strtoul added. =back =head3 L =over 4 =item * ASCII v. EBCDIC clarifications added. =back =head3 L =over 4 =item * Comments added on algorithmic complexity and tied hashes. =back =head3 L =over 4 =item * Updated documentation on environment and shell interaction in VMS. =back =head1 Diagnostics The following additions or changes have been made to diagnostic output, including warnings and fatal error messages. For the complete list of diagnostic messages, see L. =head2 New Diagnostics =head3 New Errors =over 4 =item * L (F) Something went horribly bad in hexadecimal float handling. =item * L (F) You have configured Perl to use long doubles but the internals of the long double format are unknown, therefore the hexadecimal float output is impossible. =back =head3 New Warnings =over 4 =item * L (W overflow) The hexadecimal floating point has larger exponent than the floating point supports. =item * L (W overflow) The hexadecimal floating point has smaller exponent than the floating point supports. =item * L (W overflow) The hexadecimal floating point literal had more bits in the mantissa (the part between the 0x and the exponent, also known as the fraction or the significand) than the floating point supports. =item * L (W overflow) The hexadecimal floating point had internally more digits than could be output. This can be caused by unsupported long double formats, or by 64-bit integers not being available (needed to retrieve the digits under some configurations). =back =head2 Changes to Existing Diagnostics =over 4 =item * C with no argument or undef used to warn about a Null filename; now it dies with C. =back =head1 Configuration and Compilation =over 4 =item * MurmurHash64A and MurmurHash64B can now be configured as the internal hash function. =back =head1 Platform Support =head2 Platform-Specific Notes =over 4 =item Android Build support has been improved for cross-compiling in general and for Android in particular. =item Solaris C options have been cleaned up, hints look for C as well as C, and support for native C has been added. =item VMS C, C, and C detection has been added to C, environment handling has had some minor changes, and a fix for legacy feature checking status. =item Windows C<%I64d> is now being used instead of C<%lld> for MinGW. =back =head1 Internal Changes =over 4 =item * Added L. Changing the program's locale should be avoided by XS code. Nevertheless, certain non-Perl libraries called from XS, such as C do so. When this happens, Perl needs to be told that the locale has changed. Use this function to do so, before returning to Perl. =item * Added L as a safer replacement for atoi and strtol. =back =head1 Selected Bug Fixes =over 4 =item * Failing to compile C in an eval could leave a spurious C subroutine definition, which would produce a "Subroutine BEGIN redefined" warning on the next use of C, or other C block. [perl #122107] =item * C syntax now correctly parses the arguments if they begin with an opening brace. [perl #46947] =item * External libraries and Perl may have different ideas of what the locale is. This is problematic when parsing version strings if the locale's numeric separator has been changed. Version parsing has been patched to ensure it handles the locales correctly. [perl #121930] =item * A bug has been fixed where zero-length assertions and code blocks inside of a regex could cause C to see an incorrect value. [perl #122460] =back =head1 Acknowledgements Perl 5.21.3 represents approximately 4 weeks of development since Perl 5.21.2 and contains approximately 21,000 lines of changes across 250 files from 25 authors. Excluding auto-generated files, documentation and release tools, there were approximately 18,000 lines of changes to 160 .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.21.3: Aaron Crane, Abigail, Alberto Simões, Andy Dougherty, Brian Fraser, Chad Granum, Chris 'BinGOs' Williams, Craig A. Berry, Dagfinn Ilmari Mannsåker, Daniel Dragan, David Mitchell, Father Chrysostomos, H.Merijn Brand, James E Keenan, Jan Dubois, Jarkko Hietaniemi, Karen Etheridge, Karl Williamson, Lukas Mai, Peter Martini, Rafael Garcia-Suarez, syber, Tony Cook, Vladimir Marek, 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 F file in the Perl source distribution. =head1 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 L 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 C, 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 please send it to perl5-security-report@perl.org. This points to a closed subscription unarchived mailing list, which includes all the core committers, who will be able to help assess the impact of issues, figure out a resolution, and help co-ordinate the release of patches to mitigate or fix the problem across all platforms on which Perl is supported. Please only use this address for security issues in the Perl core, not for modules independently distributed on CPAN. =head1 SEE ALSO The F file for an explanation of how to view exhaustive details on what changed. The F file for how to build Perl. The F file for general stuff. The F and F files for copyright information. =cut