1=encoding utf8 2 3=head1 NAME 4 5perl5301delta - what is new for perl v5.30.1 6 7=head1 DESCRIPTION 8 9This document describes differences between the 5.30.0 release and the 5.30.1 10release. 11 12If you are upgrading from an earlier release such as 5.28.0, first read 13L<perl5300delta>, which describes differences between 5.28.0 and 5.30.0. 14 15=head1 Incompatible Changes 16 17There are no changes intentionally incompatible with 5.30.1. If any exist, 18they are bugs, and we request that you submit a report. See 19L</Reporting Bugs> below. 20 21=head1 Modules and Pragmata 22 23=head2 Updated Modules and Pragmata 24 25=over 4 26 27=item * 28 29L<Module::CoreList> has been upgraded from version 5.20190522 to 5.20191110. 30 31=back 32 33=head1 Documentation 34 35=head2 Changes to Existing Documentation 36 37We have attempted to update the documentation to reflect the changes listed in 38this document. If you find any we have missed, send email to 39L<perlbug@perl.org|mailto:perlbug@perl.org>. 40 41Additionally, documentation has been updated to reference GitHub as the new 42canonical repository and to describe the new GitHub pull request workflow. 43 44=head1 Configuration and Compilation 45 46=over 4 47 48=item * 49 50The C<ECHO> macro is now defined. This is used in a C<dtrace> rule that was 51originally changed for FreeBSD, and the FreeBSD make apparently predefines it. 52The Solaris make does not predefine C<ECHO> which broke this rule on Solaris. 53L<[perl #17057]|https://github.com/perl/perl5/issues/17057> 54 55=back 56 57=head1 Testing 58 59Tests were added and changed to reflect the other additions and changes in this 60release. 61 62=head1 Platform Support 63 64=head2 Platform-Specific Notes 65 66=over 4 67 68=item Win32 69 70The locale tests could crash on Win32 due to a Windows bug, and separately due 71to the CRT throwing an exception if the locale name wasn't validly encoded in 72the current code page. 73 74For the second we now decode the locale name ourselves, and always decode it as 75UTF-8. 76 77L<[perl #16922]|https://github.com/perl/perl5/issues/16922> 78 79=back 80 81=head1 Selected Bug Fixes 82 83=over 4 84 85=item * 86 87Setting C<$)> now properly sets supplementary group ids, if you have the 88necessary privileges. 89L<[perl #17031]|https://github.com/perl/perl5/issues/17031> 90 91=item * 92 93C<readline @foo> now evaluates C<@foo> in scalar context. Previously, it would 94be evaluated in list context, and since readline() pops only one argument from 95the stack, the stack could underflow, or be left with unexpected values on it. 96L<[perl #16929]|https://github.com/perl/perl5/issues/16929> 97 98=item * 99 100sv_gets() now recovers better if the target SV is modified by a signal handler. 101L<[perl #16960]|https://github.com/perl/perl5/issues/16960> 102 103=item * 104 105Matching a non-C<SVf_UTF8> string against a regular expression containing 106Unicode literals could leak an SV on each match attempt. 107L<[perl #17140]|https://github.com/perl/perl5/issues/17140> 108 109=item * 110 111C<< sprintf("%.*a", -10000, $x) >> would cause a buffer overflow due to 112mishandling of the negative precision value. 113L<[perl #16942]|https://github.com/perl/perl5/issues/16942> 114 115=item * 116 117C<scalar()> on a reference could cause an erroneous assertion failure during 118compilation. 119L<[perl #16969]|https://github.com/perl/perl5/issues/16969> 120 121=back 122 123=head1 Acknowledgements 124 125Perl 5.30.1 represents approximately 6 months of development since Perl 5.30.0 126and contains approximately 4,700 lines of changes across 67 files from 14 127authors. 128 129Excluding auto-generated files, documentation and release tools, there were 130approximately 910 lines of changes to 20 .pm, .t, .c and .h files. 131 132Perl continues to flourish into its fourth decade thanks to a vibrant community 133of users and developers. The following people are known to have contributed 134the improvements that became Perl 5.30.1: 135 136Chris 'BinGOs' Williams, Dan Book, David Mitchell, Hugo van der Sanden, James E 137Keenan, Karen Etheridge, Karl Williamson, Manuel Mausz, Max Maischein, Nicolas 138R., Sawyer X, Steve Hay, Tom Hukins, Tony Cook. 139 140The list above is almost certainly incomplete as it is automatically generated 141from version control history. In particular, it does not include the names of 142the (very much appreciated) contributors who reported issues to the Perl bug 143tracker. 144 145Many of the changes included in this version originated in the CPAN modules 146included in Perl's core. We're grateful to the entire CPAN community for 147helping Perl to flourish. 148 149For a more complete list of all of Perl's historical contributors, please see 150the F<AUTHORS> file in the Perl source distribution. 151 152=head1 Reporting Bugs 153 154If you find what you think is a bug, you might check the perl bug database at 155L<https://rt.perl.org/>. There may also be information at 156L<http://www.perl.org/>, the Perl Home Page. 157 158If you believe you have an unreported bug, please run the L<perlbug> program 159included with your release. Be sure to trim your bug down to a tiny but 160sufficient test case. Your bug report, along with the output of C<perl -V>, 161will be sent off to perlbug@perl.org to be analysed by the Perl porting team. 162 163If the bug you are reporting has security implications which make it 164inappropriate to send to a publicly archived mailing list, then see 165L<perlsec/SECURITY VULNERABILITY CONTACT INFORMATION> for details of how to 166report the issue. 167 168=head1 Give Thanks 169 170If you wish to thank the Perl 5 Porters for the work we had done in Perl 5, you 171can do so by running the C<perlthanks> program: 172 173 perlthanks 174 175This will send an email to the Perl 5 Porters list with your show of thanks. 176 177=head1 SEE ALSO 178 179The F<Changes> file for an explanation of how to view exhaustive details on 180what changed. 181 182The F<INSTALL> file for how to build Perl. 183 184The F<README> file for general stuff. 185 186The F<Artistic> and F<Copying> files for copyright information. 187 188=cut 189