summaryrefslogtreecommitdiff
path: root/pod/perl5275delta.pod
blob: 77695715c00b49ab53be069faf415350e967bf14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
=encoding utf8

=head1 NAME

perl5275delta - what is new for perl v5.27.5

=head1 DESCRIPTION

This document describes differences between the 5.27.4 release and the 5.27.5
release.

If you are upgrading from an earlier release such as 5.27.3, first read
L<perl5274delta>, which describes differences between 5.27.3 and 5.27.4.

=head1 Performance Enhancements

=over 4

=item *

Calls to C<require> for an already loaded module are now slightly faster.
L<[perl #132171]|https://rt.perl.org/Public/Bug/Display.html?id=132171>

=back

=head1 Modules and Pragmata

=head2 Updated Modules and Pragmata

=over 4

=item *

L<arybase> has been upgraded from version 0.13 to 0.14.

=item *

L<B> has been upgraded from version 1.69 to 1.70.

=item *

L<B::Concise> has been upgraded from version 1.001 to 1.002.

=item *

L<B::Deparse> has been upgraded from version 1.42 to 1.43.

=item *

L<Config::Perl::V> has been upgraded from version 0.28 to 0.29.

=item *

L<Digest::SHA> has been upgraded from version 5.96 to 5.98.

=item *

L<Encode> has been upgraded from version 2.92 to 2.93.

=item *

L<encoding> has been upgraded from version 2.20 to 2.21.

=item *

L<File::Fetch> has been upgraded from version 0.52 to 0.54.

=item *

L<File::Path> has been upgraded from version 2.14 to 2.15.

=item *

L<List::Util> has been upgraded from version 1.48 to 1.49.

=item *

L<Locale::Codes> has been upgraded from version 3.52 to 3.54.

=item *

L<Math::BigInt> has been upgraded from version 1.999806 to 1.999811.

=item *

L<Math::BigInt::FastCalc> has been upgraded from version 0.5005 to 0.5006.

=item *

L<Module::CoreList> has been upgraded from version 5.20170920 to 5.20171020.

=item *

L<NEXT> has been upgraded from version 0.67 to 0.67_01.

=item *

L<Pod::Perldoc> has been upgraded from version 3.28 to 3.2801.

=item *

L<POSIX> has been upgraded from version 1.77 to 1.78.

=item *

L<Scalar::Util> has been upgraded from version 1.48 to 1.49.

=item *

L<Sub::Util> has been upgraded from version 1.48 to 1.49.

=item *

L<Sys::Hostname> has been upgraded from version 1.20 to 1.21.

=item *

L<Test::Simple> has been upgraded from version 1.302073 to 1.302103.

=item *

L<Time::HiRes> has been upgraded from version 1.9743 to 1.9746.

=item *

L<Time::Piece> has been upgraded from version 1.3201 to 1.3202.

=back

=head1 Platform Support

=head2 Platform-Specific Notes

=over 4

=item CentOS

Compilation on CentOS 5 is now fixed.

=back

=head1 Selected Bug Fixes

=over 4

=item *

Calling L<exec PROGRAM LIST|perlfunc/exec PROGRAM LIST> with an empty C<LIST>
has been fixed.  This should call C<execvp()> with an empty C<argv> array
(containing only the terminating C<NULL> pointer), but was instead just
returning false (and not setting L<C<$!>|perlvar/$!>).
L<[perl #131730]|https://rt.perl.org/Public/Bug/Display.html?id=131730>

=item *

The C<gv_fetchmeth_sv> C function stopped working properly in Perl 5.22 when
fetching a constant with a UTF-8 name if that constant subroutine was stored in
the stash as a simple scalar reference, rather than a full typeglob.  This has
been corrected.

=item *

Single-letter debugger commands followed by an argument which starts with
punctuation  (e.g. C<p$^V> and C<x@ARGV>) now work again.  They had been
wrongly requiring a space between the command and the argument.
L<[perl #120174]|https://rt.perl.org/Public/Bug/Display.html?id=120174>

=item *

L<splice|perlfunc/splice ARRAY,OFFSET,LENGTH,LIST> now throws an exception
("Modification of a read-only value attempted") when modifying a read-only
array.  Until now it had been silently modifying the array.  The new behaviour
is consistent with the behaviour of L<push|perlfunc/push ARRAY,LIST> and
L<unshift|perlfunc/unshift ARRAY,LIST>.
L<[perl #131000]|https://rt.perl.org/Public/Bug/Display.html?id=131000>

=back

=head1 Acknowledgements

Perl 5.27.5 represents approximately 4 weeks of development since Perl 5.27.4
and contains approximately 29,000 lines of changes across 430 files from 20
authors.

Excluding auto-generated files, documentation and release tools, there were
approximately 17,000 lines of changes to 340 .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.27.5:

Aaron Crane, Chris 'BinGOs' Williams, Craig A. Berry, Dagfinn Ilmari
Mannsåker, Dmitry Ulanov, Dominic Hargreaves, Father Chrysostomos, H.Merijn
Brand, James E Keenan, John P. Linderman, John SJ Anderson, Lukas Mai, Nicolas
R., Sawyer X, Smylers, Steve Hay, Tom Hukins, Tony Cook, Yves Orton, Zefram.

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<AUTHORS> file in the Perl source distribution.

=head1 Reporting Bugs

If you find what you think is a bug, you might check the perl bug database
at L<https://rt.perl.org/> .  There may also be information at
L<http://www.perl.org/> , the Perl Home Page.

If you believe you have an unreported bug, please run the L<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 C<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
L<perlsec/SECURITY VULNERABILITY CONTACT INFORMATION>
for details of how to report the issue.

=head1 Give Thanks

If you wish to thank the Perl 5 Porters for the work we had done in Perl 5,
you can do so by running the C<perlthanks> program:

    perlthanks

This will send an email to the Perl 5 Porters list with your show of thanks.

=head1 SEE ALSO

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

The F<INSTALL> file for how to build Perl.

The F<README> file for general stuff.

The F<Artistic> and F<Copying> files for copyright information.

=cut