This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
(perl #133706) remove exploit code from Storable
[perl5.git] / pod / perl5295delta.pod
CommitLineData
4380f76d
KE
1=encoding utf8
2
3=head1 NAME
4
5perl5295delta - what is new for perl v5.29.5
6
7=head1 DESCRIPTION
8
9This document describes differences between the 5.29.4 release and the 5.29.5
10release.
11
12If you are upgrading from an earlier release such as 5.29.3, first read
13L<perl5294delta>, which describes differences between 5.29.3 and 5.29.4.
14
15=head1 Core Enhancements
16
17=head2 C<-Drv> now means something on C<-DDEBUGGING> builds
18
19Now, adding the verbose flag (C<-Dv>) to the C<-Dr> flag turns on all
20possible regular expression debugging.
21
22=head1 Performance Enhancements
23
24=over 4
25
26=item *
27
28Regular expression pattern matching of things like C<qr/[^I<a>]/> is
29significantly sped up, where I<a> is any ASCII character. Which classes
30will get this speed up is complicated and depends on the underlying bit
31patterns of those characters, so differs between ASCII and EBCDIC
32platforms, but all case pairs, like C<qr/[Gg]/> are included, as is
33C<[^01]>.
34
35=back
36
37=head1 Modules and Pragmata
38
39=head2 Updated Modules and Pragmata
40
41=over 4
42
43=item *
44
45L<Data::Dumper> has been upgraded from version 2.172 to 2.173.
46
47=item *
48
49L<Errno> has been upgraded from version 1.29 to 1.30.
50
51=item *
52
53L<File::Spec> has been upgraded from version 3.75 to 3.76.
54
55=item *
56
57L<GDBM_File> has been upgraded from version 1.17 to 1.18.
58
59=item *
60
61L<Module::CoreList> has been upgraded from version 5.20181020 to 5.20181120.
62
63=item *
64
65L<NDBM_File> has been upgraded from version 1.14 to 1.15.
66
67=item *
68
69L<ODBM_File> has been upgraded from version 1.15 to 1.16.
70
71=item *
72
73L<re> has been upgraded from version 0.36 to 0.37.
74
75=item *
76
77L<SDBM_File> has been upgraded from version 1.14 to 1.15.
78
79=back
80
81=head1 Documentation
82
83=head2 Changes to Existing Documentation
84
85We have attempted to update the documentation to reflect the changes
86listed in this document. If you find any we have missed, send email
87to L<perlbug@perl.org|mailto:perlbug@perl.org>.
88
89Additionally, the following selected changes have been made:
90
91=head3 L<perlfunc>
92
93=over 4
94
95=item *
96
97The entry for L<perlfunc/-X> has been clarified to indicate that symbolic
98links are followed for most tests.
99
100=back
101
102=head1 Configuration and Compilation
103
104=over 4
105
106=item *
107
49e38958 108Normally the thread-safe functions are used only on threaded builds.
4380f76d
KE
109It is now possible to force their use on unthreaded builds on systems
110that have them available, by including the
111C<-Accflags='-DUSE_THREAD_SAFE_LOCALE'> option to F<Configure>.
112
113=back
114
115=head1 Testing
116
117Tests were added and changed to reflect the other additions and changes
118in this release.
119
120=head1 Platform Support
121
122=head2 Platform-Specific Notes
123
124=over 4
125
126=item Mac OS X
127
128Perl's build and testing process on Mac OS X for C<-Duseshrplib>
129builds is now compatible with Mac OS X System Integrity Protection
130(SIP).
131
132SIP prevents binaries in F</bin> (and a few other places) being passed
133the C<DYLD_LIBRARY_PATH> environment variable. For our purposes this
134prevents C<DYLD_LIBRARY_PATH> from being passed to the shell, which
135prevents that variable being passed to the testing or build process,
136so running C<perl> couldn't find F<libperl.dylib>.
137
138To workaround that, the initial build of the F<perl> executable
139expects to find F<libperl.dylib> in the build directory, and the
140library path is then adjusted during installation to point to the
141installed library.
142
143[perl #126706]
144
145=item Minix3
146
147Some support for Minix3 has been re-added.
148
149=back
150
151=head1 Selected Bug Fixes
152
153=over 4
154
155=item *
156
157L<SDBM_File> is now more robust with corrupt database files. The
158improvements do not make SDBM files suitable as an interchange format.
159[perl #132147]
160
161=item *
162
163C<binmode($fh);> or C<binmode($fh, ':raw');> now properly removes the
164C<:utf8> flag from the default C<:crlf> I/O layer on Win32. [perl
165#133604]
166
167=item *
168
169The experimental reference aliasing feature was misinterpreting array and
170hash slice assignment as being localised, e.g.
171
172 \(@a[3,5,7]) = \(....);
173
174was being interpreted as:
175
176 local \(@a[3,5,7]) = \(....);
177
178[perl #133538]
179
180=back
181
182=head1 Acknowledgements
183
184Perl 5.29.5 represents approximately 4 weeks of development since Perl
1855.29.4 and contains approximately 4,000 lines of changes across 110 files
186from 18 authors.
187
188Excluding auto-generated files, documentation and release tools, there were
189approximately 2,600 lines of changes to 51 .pm, .t, .c and .h files.
190
191Perl continues to flourish into its fourth decade thanks to a vibrant
192community of users and developers. The following people are known to have
193contributed the improvements that became Perl 5.29.5:
194
195Aaron Crane, Chris 'BinGOs' Williams, Dagfinn Ilmari Mannsåker, Dan
196Dedrick, David Cantrell, David Mitchell, Dominic Hargreaves, H.Merijn Brand,
197James Clarke, James E Keenan, Karen Etheridge, Karl Williamson, Niko Tyni,
198Pali, Phil Pearl (Lobbes), Sawyer X, Tomasz Konojacki, Tony Cook.
199
200The list above is almost certainly incomplete as it is automatically
201generated from version control history. In particular, it does not include
202the names of the (very much appreciated) contributors who reported issues to
203the Perl bug tracker.
204
205Many of the changes included in this version originated in the CPAN modules
206included in Perl's core. We're grateful to the entire CPAN community for
207helping Perl to flourish.
208
209For a more complete list of all of Perl's historical contributors, please
210see the F<AUTHORS> file in the Perl source distribution.
211
212=head1 Reporting Bugs
213
214If you find what you think is a bug, you might check the perl bug database
215at L<https://rt.perl.org/>. There may also be information at
216L<http://www.perl.org/>, the Perl Home Page.
217
218If you believe you have an unreported bug, please run the L<perlbug> program
219included with your release. Be sure to trim your bug down to a tiny but
220sufficient test case. Your bug report, along with the output of C<perl -V>,
221will be sent off to perlbug@perl.org to be analysed by the Perl porting team.
222
223If the bug you are reporting has security implications which make it
224inappropriate to send to a publicly archived mailing list, then see
225L<perlsec/SECURITY VULNERABILITY CONTACT INFORMATION>
226for details of how to report the issue.
227
228=head1 Give Thanks
229
230If you wish to thank the Perl 5 Porters for the work we had done in Perl 5,
231you can do so by running the C<perlthanks> program:
232
233 perlthanks
234
235This will send an email to the Perl 5 Porters list with your show of thanks.
236
237=head1 SEE ALSO
238
239The F<Changes> file for an explanation of how to view exhaustive details on
240what changed.
241
242The F<INSTALL> file for how to build Perl.
243
244The F<README> file for general stuff.
245
246The F<Artistic> and F<Copying> files for copyright information.
247
248=cut