This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Reapply "docs: clarify effect of $^H, %^H, ${^WARNING_BITS}"
[perl5.git] / pod / perl5354delta.pod
1 =encoding utf8
2
3 =head1 NAME
4
5 perl5354delta - what is new for perl v5.35.4
6
7 =head1 DESCRIPTION
8
9 This document describes differences between the 5.35.3 release and the 5.35.4
10 release.
11
12 If you are upgrading from an earlier release such as 5.35.2, first read
13 L<perl5353delta>, which describes differences between 5.35.2 and 5.35.3.
14
15 =head1 Core Enhancements
16
17 =head2 C<defer> blocks
18
19 This release adds support for C<defer> blocks, which are blocks of code
20 prefixed by the C<defer> modifier. They provide a section of code which runs
21 at a later time, during scope exit.
22
23 For more information, see L<perlsyn/"defer blocks">.
24
25 =head2 Unicode 14.0 is supported
26
27 See L<https://www.unicode.org/versions/Unicode14.0.0/> for details.
28
29 =head2 SIGFPE no longer deferred
30
31 Floating-point exceptions are now delivered immediately, in the same way
32 as other "fault"-like signals such as SIGSEGV. This means one has at
33 least a chance to catch such a signal with a C<$SIG{FPE}> handler, e.g.
34 so that C<die> can report the line in perl that triggered it.
35
36 =head2 Stable boolean tracking
37
38 The "true" and "false" boolean values, often accessed by constructions like
39 C<!!0> and C<!!1>, as well as being returned from many core functions and
40 operators, now remember their boolean nature even through assignment into
41 variables. The new function C<isbool()> in L<Scalar::Util> can check whether
42 a value has boolean nature.
43
44 This is likely to be useful when interoperating with other languages or
45 data-type serialisation, among other places.
46
47 =head1 Incompatible Changes
48
49 There are no changes intentionally incompatible with 5.35.3.
50 If any exist, they are bugs, and we request that you submit a
51 report.  See L</Reporting Bugs> below.
52
53 =head1 Performance Enhancements
54
55 =over 4
56
57 =item *
58
59 We now probe for compiler support for C11 thread local storage, and where
60 available use this for "implicit context" for XS extensions making API calls for
61 a threaded Perl build.  This requires fewer function calls at the C level than
62 POSIX thread specific storage. We continue to use the the pthreads approach if
63 the C11 approach is not available.
64
65 F<Configure> run with the defaults will build an unthreaded Perl (which is
66 slightly faster), but most operating systems ship a threaded Perl.
67
68 =back
69
70 =head1 Modules and Pragmata
71
72 =head2 Updated Modules and Pragmata
73
74 =over 4
75
76 =item *
77
78 L<attributes> has been upgraded from version 0.33 to 0.34.
79
80 =item *
81
82 L<B> has been upgraded from version 1.82 to 1.83.
83
84 =item *
85
86 L<B::Deparse> has been upgraded from version 1.57 to 1.58.
87
88 =item *
89
90 L<Devel::Peek> has been upgraded from version 1.31 to 1.32.
91
92 =item *
93
94 L<Exporter> has been upgraded from version 5.76 to 5.77.
95
96 =item *
97
98 L<ExtUtils::ParseXS> has been upgraded from version 3.43 to 3.44.
99
100 =item *
101
102 L<ExtUtils::Typemaps> has been upgraded from version 3.43 to 3.44.
103
104 =item *
105
106 L<feature> has been upgraded from version 1.67 to 1.68.
107
108 =item *
109
110 L<Hash::Util::FieldHash> has been upgraded from version 1.22 to 1.23.
111
112 =item *
113
114 L<IO> has been upgraded from version 1.47 to 1.48.
115
116 =item *
117
118 L<Module::CoreList> has been upgraded from version 5.20210820 to 5.20210920.
119
120 =item *
121
122 L<mro> has been upgraded from version 1.25_001 to 1.26.
123
124 =item *
125
126 L<Opcode> has been upgraded from version 1.53 to 1.54.
127
128 =item *
129
130 L<Pod::Html> has been upgraded from version 1.32 to 1.33.
131
132 =item *
133
134 L<Scalar::Util> has been upgraded from version 1.56 to 1.56_001.
135
136 =item *
137
138 L<Storable> has been upgraded from version 3.24 to 3.25.
139
140 =item *
141
142 L<Text::Tabs> has been upgraded from version 2021.0804 to 2021.0814.
143
144 =item *
145
146 L<Text::Wrap> has been upgraded from version 2021.0804 to 2021.0814.
147
148 =item *
149
150 L<threads::shared> has been upgraded from version 1.63 to 1.64.
151
152 =item *
153
154 L<Unicode::Collate> has been upgraded from version 1.30 to 1.31.  Experimental
155 support for EBCDIC has been added.
156
157 =item *
158
159 L<Unicode::UCD> has been upgraded from version 0.77 to 0.78.
160
161 =item *
162
163 L<UNIVERSAL> has been upgraded from version 1.13 to 1.14.
164
165 =item *
166
167 L<warnings> has been upgraded from version 1.53 to 1.54.
168
169 =item *
170
171 L<XS::APItest> has been upgraded from version 1.18 to 1.19.
172
173 =item *
174
175 L<XS::Typemap> has been upgraded from version 0.18 to 0.19.
176
177 =back
178
179 =head1 Documentation
180
181 =head2 Changes to Existing Documentation
182
183 We have attempted to update the documentation to reflect the changes
184 listed in this document.  If you find any we have missed, open an issue
185 at L<https://github.com/Perl/perl5/issues>.
186
187 Additionally, the following selected changes have been made:
188
189 =head3 L<perlre>
190
191 =over 4
192
193 =item *
194
195 Updated to discourage the use of the /d regexp modifier.
196
197 =back
198
199 =head1 Diagnostics
200
201 The following additions or changes have been made to diagnostic output,
202 including warnings and fatal error messages.  For the complete list of
203 diagnostic messages, see L<perldiag>.
204
205 =head2 New Diagnostics
206
207 =head3 New Errors
208
209 =over 4
210
211 =item *
212
213 L<Can't "%s" out of a defer block|perldiag/"Can't "%s" out of a defer block">
214
215 (F) An attempt was made to jump out of the scope of a defer block by using
216 a control-flow statement such as C<return>, C<goto> or a loop control. This is
217 not permitted.
218
219 =back
220
221 =head3 New Warnings
222
223 =over 4
224
225 =item *
226
227 L<defer is experimental|perldiag/"defer is experimental">
228
229 (S experimental::defer) The C<defer> block modifier is experimental. If you
230 want to use the feature, disable the warning with
231 C<no warnings 'experimental::defer'>, but know that in doing so you are taking
232 the risk that your code may break in a future Perl version.
233
234 =back
235
236 =head2 Changes to Existing Diagnostics
237
238 =over 4
239
240 =item "unexpected constant lvalue entersub entry via type/targ %d:%d" now has a panic prefix
241
242 This makes it consistent with other checks of internal consistency when
243 compiling a subroutine.
244
245 =item Removed a number of diagnostics
246
247 Commit 6a3871b339 removes many diagnostics that have been removed from the
248 perl core across many years.
249
250 =back
251
252 =head2 Platform-Specific Notes
253
254 =over 4
255
256 =item C<keys %ENV> on VMS returns consistent results
257
258 On VMS entries in the C<%ENV> hash are loaded from the OS environment on
259 first access, hence the first iteration of C<%ENV> requires the entire
260 environment to be scanned to find all possible keys. This initialisation had
261 always been done correctly for full iteration, but previously was not
262 happening for C<%ENV> in scalar context, meaning that C<scalar %ENV> would
263 return 0 if called before any other C<%ENV> access, or would only return the
264 count of keys accessed if there had been no iteration.
265
266 These bugs are now fixed - C<%ENV> and C<keys %ENV> in scalar context now
267 return the correct result - the count of all keys in the environment.
268
269 =back
270
271 =head1 Internal Changes
272
273 =over 4
274
275 =item *
276
277 C<Perl_ptr_table_clear> has been deleted. This has been marked as deprecated
278 since v5.14.0 (released in 2011), and is not used by any code on CPAN.
279
280 =item *
281
282 Added new boolean macros and functions. See L</Stable boolean tracking> for
283 related information and L<perlapi> for documentation.
284
285 =over 4
286
287 =item *
288
289 sv_setbool
290
291 =item *
292
293 sv_setbool_mg
294
295 =item *
296
297 SvIsBOOL
298
299 =back
300
301 =item *
302
303 Added 4 missing functions for dealing with RVs:
304
305 =over 4
306
307 =item *
308
309 sv_setrv_noinc
310
311 =item *
312
313 sv_setrv_noinc_mg
314
315 =item *
316
317 sv_setrv_inc
318
319 =item *
320
321 sv_setrv_inc_mg
322
323 =back
324
325 =item *
326
327 C<xs_handshake()>'s two failure modes now provide distinct messages.
328
329 =back
330
331 =head1 Acknowledgements
332
333 Perl 5.35.4 represents approximately 4 weeks of development since Perl
334 5.35.3 and contains approximately 64,000 lines of changes across 540 files
335 from 19 authors.
336
337 Excluding auto-generated files, documentation and release tools, there were
338 approximately 49,000 lines of changes to 310 .pm, .t, .c and .h files.
339
340 Perl continues to flourish into its fourth decade thanks to a vibrant
341 community of users and developers. The following people are known to have
342 contributed the improvements that became Perl 5.35.4:
343
344 Aristotle Pagaltzis, Chris 'BinGOs' Williams, Dagfinn Ilmari MannsÃ¥ker, Dan
345 Book, David Mitchell, Felipe Gasper, Hugo van der Sanden, James E Keenan,
346 Karen Etheridge, Karl Williamson, Matthew Horsfall, Nicholas Clark, Paul
347 Evans, Richard Leach, TAKAI Kousuke, Todd Rinaldo, Tomasz Konojacki,
348 Tomoyuki Sadahiro, Tony Cook, Unicode Consortium.
349
350 The list above is almost certainly incomplete as it is automatically
351 generated from version control history. In particular, it does not include
352 the names of the (very much appreciated) contributors who reported issues to
353 the Perl bug tracker.
354
355 Many of the changes included in this version originated in the CPAN modules
356 included in Perl's core. We're grateful to the entire CPAN community for
357 helping Perl to flourish.
358
359 For a more complete list of all of Perl's historical contributors, please
360 see the F<AUTHORS> file in the Perl source distribution.
361
362 =head1 Reporting Bugs
363
364 If you find what you think is a bug, you might check the perl bug database
365 at L<https://github.com/Perl/perl5/issues>.  There may also be information at
366 L<http://www.perl.org/>, the Perl Home Page.
367
368 If you believe you have an unreported bug, please open an issue at
369 L<https://github.com/Perl/perl5/issues>.  Be sure to trim your bug down to a
370 tiny but sufficient test case.
371
372 If the bug you are reporting has security implications which make it
373 inappropriate to send to a public issue tracker, then see
374 L<perlsec/SECURITY VULNERABILITY CONTACT INFORMATION>
375 for details of how to report the issue.
376
377 =head1 Give Thanks
378
379 If you wish to thank the Perl 5 Porters for the work we had done in Perl 5,
380 you can do so by running the C<perlthanks> program:
381
382     perlthanks
383
384 This will send an email to the Perl 5 Porters list with your show of thanks.
385
386 =head1 SEE ALSO
387
388 The F<Changes> file for an explanation of how to view exhaustive details on
389 what changed.
390
391 The F<INSTALL> file for how to build Perl.
392
393 The F<README> file for general stuff.
394
395 The F<Artistic> and F<Copying> files for copyright information.
396
397 =cut