This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Add @_ in signatured sub being experimental to perldelta.pod
[perl5.git] / pod / perl5353delta.pod
CommitLineData
73a058ad
KE
1=encoding utf8
2
3=head1 NAME
4
5perl5353delta - what is new for perl v5.35.3
6
7=head1 DESCRIPTION
8
9This document describes differences between the 5.35.2 release and the 5.35.3
10release.
11
12If you are upgrading from an earlier release such as 5.35.1, first read
13L<perl5352delta>, which describes differences between 5.35.1 and 5.35.2.
14
15=head1 Notice
16
17With this release, the experimental C<switch> feature, present in every feature
18bundle since they were introduced in v5.10, has been removed from the v5.36
19bundle. If you want to live dangerously and use it, you'll have to enable it
20explicitly.
21
22=head1 Core Enhancements
23
24All warnings are enabled automatically within the scope of
25a C<L<use v5.35|perlfunc/use VERSION>> (or higher) declaration.
26
27=head1 Modules and Pragmata
28
29=head2 Updated Modules and Pragmata
30
31=over 4
32
33=item *
34
35L<Archive::Tar> has been upgraded from version 2.38 to 2.40.
36
37=item *
38
39L<diagnostics> has been upgraded from version 1.37 to 1.38.
40
41=item *
42
43L<Encode> has been upgraded from version 3.10 to 3.12.
44
45=item *
46
47L<feature> has been upgraded from version 1.66 to 1.67.
48
49Added a simple API to check which features or feature bundles are
50enabled. (github L<#18968|https://github.com/Perl/perl5/pull/18968>)
51
52=item *
53
54L<Module::CoreList> has been upgraded from version 5.20210723 to 5.20210820.
55
56=item *
57
58L<Opcode> has been upgraded from version 1.52 to 1.53.
59
60=item *
61
62L<Pod::Html> has been upgraded from version 1.31 to 1.32.
63
64=item *
65
66L<POSIX> has been upgraded from version 1.98 to 1.99.
67
68=item *
69
70L<sort> has been upgraded from version 2.04 to 2.05.
71
72The C<sort> pragma is now a no-op, and its use is discouraged.
73C<sort::current> now issues a deprecation warning and always returns I<stable>.
74
75=item *
76
77L<Storable> has been upgraded from version 3.23 to 3.24.
78
79=item *
80
81L<Text::Tabs> has been upgraded from version 2021.0717 to 2021.0804.
82
83=item *
84
85L<Text::Wrap> has been upgraded from version 2021.0717 to 2021.0804.
86
87=item *
88
89L<threads::shared> has been upgraded from version 1.62 to 1.63.
90
91=item *
92
93L<Time::HiRes> has been upgraded from version 1.9768 to 1.9769.
94
95Makefile.PL now correct handles configuration set in perl hints.
96(github L<#18953|https://github.com/Perl/perl5/issues/18953>)
97
98=item *
99
100L<Unicode::Normalize> has been upgraded from version 1.28 to 1.30.
101
102=item *
103
104L<warnings> has been upgraded from version 1.52 to 1.53.
105
106=item *
107
108L<XS::APItest> has been upgraded from version 1.17 to 1.18.
109
110=back
111
112=head1 Documentation
113
114=head2 New Documentation
115
116=head3 F<Porting/vote_admin_guide.pod>
117
118This document provides the process for administering an election or vote
119within the Perl Core Team.
120
121=head2 Changes to Existing Documentation
122
123We have attempted to update the documentation to reflect the changes
124listed in this document. If you find any we have missed, open an issue
125at L<https://github.com/Perl/perl5/issues>.
126
127Additionally, the following selected changes have been made:
128
129=head3 L<perlop>
130
131=over 4
132
133=item *
134
135now notes that an invocant only needs to be an object or class name
136for method calls, not for subroutine references.
137
138=back
139
140=head3 L<perlexperiment>
141
142=over 4
143
144=item *
145
146notes the C<:win32> IO pseudolayer is removed (this happened in 5.35.2).
147
148=back
149
150=head3 L<perldeprecation>
151
152=over 4
153
154=item *
155
156notes the new location for functions moved from L<Pod::Html> to
157L<Pod::Html::Util> that are no longer intended to be used outside of core.
158
159=back
160
161=head1 Configuration and Compilation
162
163=over 4
164
165=item *
166
167The makedepend step is now run in parallel by using make
168
169This reduces the time for
170
171 time sh ./makedepend MAKE=make cflags
172
173from 5 seconds to 2 seconds with MAKEFLAGS=-j8
174
175=item *
176
177F<Configure> now tests whether C<< #include <xlocale.h> >> is required
178to use the POSIX 1003 thread-safe locale functions or some related
179extensions. This prevents problems where a non-public F<xlocale.h> is
180removed in a library update, or F<xlocale.h> isn't intended for public
181use. (github L<#18936|https://github.com/Perl/perl5/pull/18936>)
182
183=back
184
185=head1 Internal Changes
186
187=over 4
188
189=item *
190
191Macros have been added to F<perl.h> to facilitate version comparisons:
192C<PERL_GCC_VERSION_GE>, C<PERL_GCC_VERSION_GT>, C<PERL_GCC_VERSION_LE> and
193C<PERL_GCC_VERSION_LT>.
194
195Inline functions have been added to F<embed.h> to determine the position of
196the least significant 1 bit in a word: C<lsbit_pos32> and C<lsbit_pos64>.
197
198=back
199
200=head1 Selected Bug Fixes
201
202=over 4
203
204=item *
205
206Use of the C<mktables> debugging facility would cause perl to croak since
207v5.31.10; this problem has now been fixed.
208
209=item *
210
211C<makedepend> logic is now compatible with BSD make (fixes
212L<GH #19046|https://github.com/Perl/perl5/issues/19046>).
213
214=back
215
216=head1 Errata From Previous Releases
217
218=over 4
219
220=item *
221
222L<perl5300delta> mistakenly identified a CVE whose correct identification is CVE-2015-1592.
223
224=back
225
226=head1 Acknowledgements
227
228Perl 5.35.3 represents approximately 4 weeks of development since Perl
2295.35.2 and contains approximately 16,000 lines of changes across 220 files
230from 25 authors.
231
232Excluding auto-generated files, documentation and release tools, there were
233approximately 9,200 lines of changes to 140 .pm, .t, .c and .h files.
234
235Perl continues to flourish into its fourth decade thanks to a vibrant
236community of users and developers. The following people are known to have
237contributed the improvements that became Perl 5.35.3:
238
239Aristotle Pagaltzis, Asher Mancinelli, Ben Cornett, Biswapriyo Nath, Chris
240'BinGOs' Williams, Dagfinn Ilmari Mannsåker, Dan Book, Dan Jacobson, David
241Golden, David Mitchell, H.Merijn Brand, James E Keenan, Karen Etheridge,
242Karl Williamson, Leon Timmermans, Max Maischein, Neil Bowers, Nicholas
243Clark, Petar-Kaleychev, Ricardo Signes, Richard Leach, Slaven Rezic, TAKAI
244Kousuke, Thibault Duponchelle, Tony Cook.
245
246The list above is almost certainly incomplete as it is automatically
247generated from version control history. In particular, it does not include
248the names of the (very much appreciated) contributors who reported issues to
249the Perl bug tracker.
250
251Many of the changes included in this version originated in the CPAN modules
252included in Perl's core. We're grateful to the entire CPAN community for
253helping Perl to flourish.
254
255For a more complete list of all of Perl's historical contributors, please
256see the F<AUTHORS> file in the Perl source distribution.
257
258=head1 Reporting Bugs
259
260If you find what you think is a bug, you might check the perl bug database
261at L<https://github.com/Perl/perl5/issues>. There may also be information at
262L<http://www.perl.org/>, the Perl Home Page.
263
264If you believe you have an unreported bug, please open an issue at
265L<https://github.com/Perl/perl5/issues>. Be sure to trim your bug down to a
266tiny but sufficient test case.
267
268If the bug you are reporting has security implications which make it
269inappropriate to send to a public issue tracker, then see
270L<perlsec/SECURITY VULNERABILITY CONTACT INFORMATION>
271for details of how to report the issue.
272
273=head1 Give Thanks
274
275If you wish to thank the Perl 5 Porters for the work we had done in Perl 5,
276you can do so by running the C<perlthanks> program:
277
278 perlthanks
279
280This will send an email to the Perl 5 Porters list with your show of thanks.
281
282=head1 SEE ALSO
283
284The F<Changes> file for an explanation of how to view exhaustive details on
285what changed.
286
287The F<INSTALL> file for how to build Perl.
288
289The F<README> file for general stuff.
290
291The F<Artistic> and F<Copying> files for copyright information.
292
293=cut