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 / perl5258delta.pod
CommitLineData
3ce6a296
S
1=encoding utf8
2
3=head1 NAME
4
5perl5258delta - what is new for perl v5.25.8
6
7=head1 DESCRIPTION
8
9This document describes differences between the 5.25.7 release and the 5.25.8
10release.
11
12If you are upgrading from an earlier release such as 5.25.6, first read
13L<perl5257delta>, which describes differences between 5.25.6 and 5.25.7.
14
15=head1 Core Enhancements
16
17=head2 New Hash Function For 64-bit Builds
18
19We have switched to a hybrid hash function to better balance
20performance for short and long keys.
21
22For short keys, 16 bytes and under, we use an optimised variant of
23One At A Time Hard, and for longer keys we use Siphash 1-3. For very
24long keys this is a big improvement in performance. For shorter keys
25there is a modest improvement.
26
27=head1 Performance Enhancements
28
29=over 4
30
31=item * New Faster Hash Function on 64 bit builds
32
33We use a different hash function for short and long keys. This should
34improve performance and security, especially for long keys.
35
36=item * readline is faster
37
38Reading from a file line-by-line with C<readline()> or C<< E<lt>E<gt> >> should
39now typically be faster due to a better implementation of the code that
40searches for the next newline character.
41
42=back
43
44=head1 Modules and Pragmata
45
46=head2 Updated Modules and Pragmata
47
48=over 4
49
50=item *
51
52L<Archive::Tar> has been upgraded from version 2.18 to 2.24.
53
54=item *
55
56L<B::Debug> has been upgraded from version 1.23 to 1.24.
57
58=item *
59
60L<bignum> has been upgraded from version 0.43_01 to 0.47.
61
62=item *
63
64L<Data::Dumper> has been upgraded from version 2.165 to 2.166.
65
66=item *
67
68L<Encode> has been upgraded from version 2.86 to 2.88.
69
70=item *
71
72L<encoding> has been upgraded from version 2.18 to 2.19.
73
74=item *
75
76L<IO> has been upgraded from version 1.37 to 1.38.
77
78=item *
79
80L<Locale::Codes> has been upgraded from version 3.40 to 3.42.
81
82=item *
83
84L<Math::BigInt> has been upgraded from version 1.999727 to 1.999806.
85
86=item *
87
88L<Math::BigInt::FastCalc> has been upgraded from version 0.42 to 0.5005.
89
90=item *
91
92L<Math::BigRat> has been upgraded from version 0.260804 to 0.2611.
93
94=item *
95
96L<Module::CoreList> has been upgraded from version 5.20161120 to 5.20161220.
97
98=item *
99
100L<PerlIO::scalar> has been upgraded from version 0.24 to 0.25.
101
102=item *
103
104L<Pod::Simple> has been upgraded from version 3.32 to 3.35.
105
106=item *
107
108L<POSIX> has been upgraded from version 1.75 to 1.76.
109
110=item *
111
112L<Test::Simple> has been upgraded from version 1.302062 to 1.302073.
113
114=item *
115
116L<Time::HiRes> has been upgraded from version 1.9740_03 to 1.9741.
117
118=item *
119
120L<Time::Local> has been upgraded from version 1.24 to 1.25.
121
122=item *
123
124L<Unicode::Collate> has been upgraded from version 1.18 to 1.19.
125
126=back
127
128=head1 Configuration and Compilation
129
130=over 4
131
132=item *
133
134Zero out the alignment bytes when calculating the bytes for 80-bit C<NaN>
135and C<Inf> to make builds more reproducible. [perl #130133]
136
137=item *
138
139Since 5.18 for testing purposes we have included support for
140building perl with a variety of non-standard, and non-recommended
141hash functions. Since we do not recommend the use of these functions
142we have removed them and their corresponding build options. Specifically
143this includes the following build options:
144
145 PERL_HASH_FUNC_SDBM
146 PERL_HASH_FUNC_DJB2
147 PERL_HASH_FUNC_SUPERFAST
148 PERL_HASH_FUNC_MURMUR3
149 PERL_HASH_FUNC_ONE_AT_A_TIME
150 PERL_HASH_FUNC_ONE_AT_A_TIME_OLD
151 PERL_HASH_FUNC_MURMUR_HASH_64A
152 PERL_HASH_FUNC_MURMUR_HASH_64B
153
154=back
155
156=head1 Acknowledgements
157
158Perl 5.25.8 represents approximately 4 weeks of development since Perl 5.25.7
159and contains approximately 21,000 lines of changes across 500 files from 19
160authors.
161
162Excluding auto-generated files, documentation and release tools, there were
163approximately 18,000 lines of changes to 340 .pm, .t, .c and .h files.
164
165Perl continues to flourish into its third decade thanks to a vibrant community
166of users and developers. The following people are known to have contributed the
167improvements that became Perl 5.25.8:
168
169Andy Lester, Aristotle Pagaltzis, Chad Granum, Chris 'BinGOs' Williams,
170Christian Hansen, Craig A. Berry, David Mitchell, Hugo van der Sanden, James E
171Keenan, J. Nick Koston, Karl Williamson, Matthew Horsfall, Niko Tyni, Petr
172Písař, Sawyer X, Steve Hay, Sullivan Beck, Tony Cook, Yves Orton.
173
174The list above is almost certainly incomplete as it is automatically generated
175from version control history. In particular, it does not include the names of
176the (very much appreciated) contributors who reported issues to the Perl bug
177tracker.
178
179Many of the changes included in this version originated in the CPAN modules
180included in Perl's core. We're grateful to the entire CPAN community for
181helping Perl to flourish.
182
183For a more complete list of all of Perl's historical contributors, please see
184the F<AUTHORS> file in the Perl source distribution.
185
186=head1 Reporting Bugs
187
188If you find what you think is a bug, you might check the perl bug database
189at L<https://rt.perl.org/> . There may also be information at
190L<http://www.perl.org/> , the Perl Home Page.
191
192If you believe you have an unreported bug, please run the L<perlbug> program
193included with your release. Be sure to trim your bug down to a tiny but
194sufficient test case. Your bug report, along with the output of C<perl -V>,
195will be sent off to perlbug@perl.org to be analysed by the Perl porting team.
196
197If the bug you are reporting has security implications which make it
198inappropriate to send to a publicly archived mailing list, then see
199L<perlsec/SECURITY VULNERABILITY CONTACT INFORMATION>
200for details of how to report the issue.
201
202=head1 SEE ALSO
203
204The F<Changes> file for an explanation of how to view exhaustive details on
205what changed.
206
207The F<INSTALL> file for how to build Perl.
208
209The F<README> file for general stuff.
210
211The F<Artistic> and F<Copying> files for copyright information.
212
213=cut