perl: macos version compatibility
[sheet.git] / perl.inc.pl
1 use utf8;
2 use strict;
3
4 +{
5         v5.004 => {
6                 release => '1997-05-15',
7                 distro => {
8                         debian => '2.0', # hamm 1998-07 to potato 2000-08 eol 2003-06
9                 },
10                 unstable => 0,
11         },
12
13         v5.005 => {
14                 new => [
15                         ['<code>lock</code>', 'obsolete <code>Thread</code> implementation, including a keyword to place advisory locks on shared variables', {experimental => 0, stable => 0, dropped => v5.10}],
16                         ['<code>B::…</code>', 'backend hooks'],
17                         ['<code>qr//</code>' => 'overhauled regular expression engine: precompile operator, lookahead/behind, code, conditions, localised flags'],
18                         ['<code>… foreach</code>' => '<code>for(each)</code> as statement modifier, with large ranges optimised as counting loops'],
19                         ['<code>…::</code>' => 'implicitly quoted package name'],
20                         ['<code>ref $@</code>' => '<code>die</code> passes reference values to exception handlers'],
21                         ['<code>INIT {}</code>', 'subs run just before the perl runtime begins execution'],
22                         ['<code>tie @…</code>' => 'base class for <code>TIEARRAY</code> implementations, and generally improved supported of tied handlers'],
23                         ['<code>substr …,…,…,$replace</code>', 'replacement string in 4th argument'],
24                         ['<code>splice …,…,-$length</code>', 'negative length indicates elements to keep at the end of an array'],
25                         ['<code>$/</code>', 'integer or scalar separator makes <code>&lt;&gt;</code> read records instead of lines'],
26                 ],
27                 modules => [
28                         ['Data::Dumper' => 'stringify data structures'],
29                         ['Errno' => 'system <code>errno.h</code> constants'],
30                         ['File::Spec'],
31                         ['Fatal'],
32                         ['Test'],
33                 ],
34                 release => '1998-07-22',
35                 unstable => 0,
36         },
37
38         v5.6 => {
39                 new => [
40                         ['<code>use warnings</code>', 'pragma to enable warnings in lexical scope', {name => 'warnings'}],
41                         ['<code>use utf8</code>', 'experimental unicode semantics <small>(completed in <a href="#utf8_data">v5.8</a>)</small>', {name => 'utf8', experimental => 0, stable => v5.8}],
42                         ['<code>use charnames</code>', 'string escape <code>\N{}</code> to insert named character'],
43                         ['<code>our</code>', 'declare global variables'],
44                         ['<code>v1.2.3</code>', q"represent strings as vector of ordinals, useful in version numbers (<code>printf '%vd'</code> to display)"],
45                         ['<code>0b0</code>', q"binary numbers in literals, <code>printf '%b'</code>, and <code>oct</code>"],
46                         ['<code>sub :lvalue</code>', 'subroutine attribute to return a modifiable value', {name => 'sub_lvalue', experimental => 0, stable => v5.20}],
47 #                       ['<code>sub :locked :method</code>', 'syntax to declare subroutine attributes'], # can be inferred from :lvalue support
48                         ['<code>open my $fh, $mode, $expr</code>', 'file handles in scoped scalars, third argument for unambiguous file name'],
49                         [q"<code>pack 'q'</code>", '64-bit integer support (also large files &gt;2GiB)', {experimental => 0, stable => v5.8.1}],
50                         ['<code>sort $coderef ()</code>', 'comparison function can be a subroutine reference; prototype <code>($$)</code> to pass elements as normal <code>@_</code>'],
51                         ['<code>CHECK {}</code>', 'special block called at end of compilation'],
52                         ['<code>/[[:…:]]/</code>', 'POSIX character class syntax such as <code>/[[:alpha:]]/</code>'],
53                         # quite a lot more, but leave it at this
54                 ],
55                 release => '2000-03-23',
56                 distro => {
57                         debian => '3.0', # woody 2002-07 eol 2006-06
58                         rhel => '2', # v5.6.0; also in red hat 7.0
59                         solaris => '9', # v5.6.1; 2002-05 eol 2014-10
60                         aix => '5.1', # 2001-05 eol 2006-04
61                         opensuse => '7.1', # 2001-01
62                 },
63                 versum => 'start of modern compatibility',
64                 unicode => '3.0.1',
65         },
66
67         v5.8 => {
68                 new => [
69                         [q"<code>no utf8</code>", 'full unicode support, <code>utf8</code> pragma only for script encoding', {name => 'utf8_data'}],
70                         [q"<code>use open</code>", 'file handle behaviour altered by PerlIO layers', {name => 'perlio', eg => 'binmode $fh, ":bytes"'}],
71                         [q"<code>open $fh, '-|', @cmd</code>", 'open list to fork a command without spawning a shell'],
72                         [q"<code>open $fh, '>', \$var</code>", 'perl scalars as virtual files'],
73                         [q"<code>printf '%1$s', @args</code>", 'syntax to use parameters out of order'],
74                         [q"<code>1_2_3 == 123</code>", 'underscores between digits allowed in numeric constants'],
75                 ],
76                 modules => [
77                         [bignum => 'transparent big number support', 'length 1e100 == 101'],
78                         [if => 'conditional module inclusion', 'no if $] >= 5.022, "warnings", "redundant"'],
79                         [sort => 'override sort() algorithm', {dropped => v5.28, eg => 'sort::current eq "stable"'}],
80                         [Digest => 'calculate various message digests (data hashes)', '$hash = sha256_hex($data)'],
81                         [Encode => 'character set conversion', 'encode("utf8", decode("iso-8859-1", $octets))'],
82                         ['File::Temp' => 'create a temporary file or directory safely', '$fh = tempfile();'],
83                         ['List::Util' => 'general-utility list subroutines', '@cards = shuffle 0..51'],
84                         ['Locale::Maketext' => 'various localization and internationalization in <code>Locale::*</code> and <code>L18N::*</code>'],
85                         ['Memoize' => 'remember function results, trading space for time', 'memoize "stat"'],
86                         ['MIME::Base64' => 'base64 encoded strings as in email attachments'],
87                         ['Test::More' => 'modern framework for unit testing', 'is $got, $expected'],
88                         ['Time::HiRes' => 'high resolution timers', '$μs = [gettimeofday]; sleep .1; $elapsed = tv_interval $μs'],
89                 ],
90                 release => '2002-07-18',
91                 distro => {
92                         debian => '3.1', # sarge 2005-06 eol 2008-03, v5.8.8 in etch 2007-04 eol 2010-02
93                         rhel => '3', # v5.8.0; v5.8.8 in RHEL6 (2007-2014)
94                         solaris => '10', # v5.8.4; 2005-01 eol 2021-01
95                         centos => '3-5', # v5.8.0 in v3 (2004-03); v5.8.8 in v5 (eol 2017-03)
96                         ubuntu => '4.10', # v5.8.4 (2004-10); v5.8.7 in 6.06 LTS (2006-06); v5.8.8 in 8.04 LTS (2008-04)
97                         aix => '5.2', # v5.8.0; v5.8.2 in 5.3 and 6.1 (eol 2017-04-30)
98                         freebsd => '4-6',
99                         opensuse => '8.1', # 2002-09 eol (SLES8 2002-10 eol 2007-12 ltss 2009-12)
100                 },
101                 distrosum => "RHEL 3, SLES 8, AIX 5/6 until 2017, Solaris 10 until 2021",
102                 versum => 'stable minimum during 20[01]\d',
103                 support => '2021-01', # solaris
104                 unicode => '3.2.0',
105         },
106
107         v5.10 => {
108                 new => [
109                         ['<code>//</code>', 'defined-or operator'],
110                         ['<code>~~</code>', 'smart-match operator to compare different data types <small>(updated in v5.10.1)</small>', {experimental => 'smartmatch'}],
111                         ['<code>say</code>', 'print with newline, equivalent to <code>print @_, "\n"</code>', {feature => 'say'}],
112                         ['<code>given</code>', 'switch statement to smart-match with <code>when</code>/<code>default</code>', {name => 'switch', feature => 'switch', experimental => 'smartmatch'}],
113                         ['<code>/(?&lt;name>)/</code>', 'named capture buffers into <code>%+</code>'],
114                         ['<code>/(?1)/</code>', 'recursive regular expression patterns'],
115                         ['<code>/(?|)/</code>', 'resets capture numbering for each contained branch'],
116                         ['<code>/.++/</code>', 'possessive quantifiers <code>?+</code>, <code>*+</code>, <code>++</code> to match greedily'],
117                         ['<code>s/keep\K//</code>', 'floating positive lookbehind, efficient alternative for <code>s/(keep)/$1/</code>'],
118                         ['<code>/p</code>', 'optionally preserve <code>${^MATCH}</code> variables (avoiding <code>$&</code> penalty until COW in v5.20)'],
119                         ['<code>/\v/, /\h/</code>', 'vertical and horizontal whitespace escapes (<code>\V</code> <code>\H</code> to invert); also <code>/\R/</code> for newlines'],
120                         ['<code>my $_</code>', 'lexically scoped version of the default variable', {experimental => 'lexical_topic', dropped => v5.23.4}],
121                         ['<code>state</code>', 'persistent <code>my</code> variables (scalars only until <a href="#state_ext">5.28</a>)', {feature => 'state'}],
122                 ],
123                 modules => [
124                         [autodie => 'replace builtin functions to throw exceptions instead of returning failure', 'eval {open ...} or $@->matches("open") || die'],
125                         # overloading
126                         ['IO::Compress::Zip' => 'various file compression standards', 'zip IO::Uncompress::Gunzip->new("test.gz") => "recompressed.zip"'],
127                         ['Time::Piece' => 'timestamps as objects', 'localtime->year > 1900'],
128                         ['File::Fetch' => 'generic data retrieval/download', 'File::Fetch->new(uri => "http://localhost/")->fetch(to => \$slurp)'],
129                 ],
130                 release => '2007-12-18',
131                 distro => {
132                         debian => '5.0', # lenny 2009-02 eol 2012-02
133                         rhel => '6', # v5.10.1 (-6.9 2017-03 eol 2020-11 TuxCare els 2024-12)
134                         centos => '6', # v5.10.1 (2011-07 eol 2020-11 TuxCare els 2024-11)
135                         ubuntu => '8.10', # v5.10.1 in 10.04 LTS 2010-04 eol 2013-05
136                         aix => '7.1', # v5.10.1 (2010-09 eol 2023-04)
137                         opensuse => '11.0', # 2008-06 (SLES11 2009-03 eol 2019-03 ltss 2022-03)
138                 },
139                 distrosum => "SLES 11 until 2022, RHEL 6 until 2020 or commercially 2024, AIX 7.1 until 2023",
140                 versum => "supported commercially until 2024",
141                 support => '2024-11', # aix
142                 unicode => '5.0.0',
143         },
144
145         v5.12 => {
146                 new => [
147                         ['<code>package</code> version', '<code>package</code> NAME VERSION shorthand for <code>our $VERSION</code>'],
148                         ['<code>...</code>', 'yada-yada operator: code placeholder'],
149                         ['<code>use 5.012</code>', 'implicit <code>strict</code> if use VERSION >= v5.12'],
150                         ['<code>… when</code>', '<code>when</code> is now allowed to be used as a statement modifier'],
151                         [q"<code>use overload 'qr'</code>", 'customisable conversion to regular expressions'],
152                         ['<code>/\N/</code>', 'inverse \n to match any character except newline regardless of <code>/s</code>', {experimental => 0, stable => v5.18}],
153                         ['<code>each $ref</code> e.a.', 'array and hash container functions accept references', {experimental => 'autoderef', dropped => v5.23.1}],
154                 ],
155                 release => '2010-04-12',
156                 unicode => '5.2',
157                 distro => {
158                         solaris => '11', # also v5.8.4; 2010-11; v11.3 eol 2024-01
159                         ubuntu => '11.10',
160                         freebsd => '7',
161                         opensuse => '11.3', # 2010-07
162                 },
163                 support => '2024-01', # solaris
164         },
165
166         v5.14 => {
167                 new => [
168                         ['<code>s///r</code>', 'non-destructive substitution'],
169                         ['<code>/(?{ m() })/</code>', 'regular expressions can be nested in <code>/(?{})/</code> and <code>/(??{})/</code>', {experimental => 0, stable => v5.20}],
170                         ['<code>/dalu</code>', 'regexp modifiers to restrict character classes: either <strong>d</strong>efault, <strong>a</strong>scii, <strong>l</strong>ocale, or <strong>u</strong>nicode semantics.'],
171                         [q"<code>use re '/flags'</code>", 'customise default modifiers'],
172                         ['<code>/(?^)/</code>', 'construct to reset to default modifiers'],
173                         ['<code>FH->method</code>', 'filehandle method calls load IO::File on demand (eg. <code>STDOUT->flush</code>)'],
174                         ['<code>\o{}</code>', 'escape sequence for octal values beyond \777'],
175                 ],
176                 modules => [
177                         [JSON => 'interface with data in JavaScript Object Notation', 'decode_json <>'],
178                         ['HTTP::Tiny' => 'minimal HTTP/1.1 client without <code>LWP::UserAgent</code> overhead', {dropped => 0}],
179                         # Unicode::Collate::Locale
180                 ],
181                 release => '2011-05-14',
182                 distro => {
183                         debian => '7', # wheezy 2013-05 eol 2018-05 elts 2020-06
184                         ubuntu => '12.04',
185                         opensuse => '12.1', # 2011-11 (SLES12 2014-10 eol 2024-10 ltss 2027-10)
186                 },
187                 distrosum => "Debian 7 until 2020, Ubuntu 12.04, SLES 12 until 2027",
188                 support => '2027-10', # suse
189                 unicode => '6.0+#8',
190         },
191
192         v5.16 => {
193                 new => [
194                         ['<code>__SUB__</code>', 'current subroutine reference', {feature => 'current_sub'}],
195                         ['<code>fc, "\F"</code>', 'unicode foldcase to compare case-insensitively', {feature => 'fc'}],
196                         ['<code>"\N{}"</code>', 'automatic <code>use charnames qw( :full :short )</code>'],
197                 ],
198                 release => '2012-05-20',
199                 distro => {
200                         rhel => '7', # v5.16.3 (-7.9 2020-09 eol 2024-06)
201                         centos => '7', # v5.16.3 (2014-07 eol 2024-06 TuxCare els 2028-06)
202                         freebsd => '9',
203                         opensuse => '12.2', # 2012-09
204                 },
205                 unicode => '6.1',
206         },
207
208         v5.18 => {
209                 new => [
210                         ['<code>${^LAST_FH}</code>', 'last read filehandle (used by <code>$.</code>)'],
211                         ['<code>/(?[ a + b ])/</code>', 'regex set operations (character subtraction <code>-</code>, union <code>+</code>, intersection <code>&amp;</code>, xor <code>^</code>)', {experimental => 'regex_sets', stable => v5.36}],
212                         ['<code>my sub</code>', 'lexical subroutines (also <code>state</code>, <code>our</code>); buggy before v5.22', {experimental => 'lexical_subs', stable => v5.26}],
213                         ['<code>next $expression</code>', 'loop controls allow runtime expressions'],
214                         [q"<code>no warnings 'experimental::…'</code>", 'mechanism for experimental features, as of now required for <em>smartmatch</em>'],
215                 ],
216                 release => '2013-05-18',
217                 distro => {
218                         ubuntu => '14.04 LTS', # trusty
219                         opensuse => '13.1', # 2013-11 eol 2016-01
220                         macos => '10.15', # pre-installed catalina 2019-10
221                 },
222                 unicode => '6.2',
223         },
224
225         v5.20 => {
226                 new => [
227                         ['<code>sub ($var)</code>', 'subroutine signatures', {feature => 'signatures', experimental => 'signatures', stable => v5.36}],
228                         ['<code>%hash{…}</code>', 'hash slices return key+value pairs'],
229                         ['<code>[]->@*</code>', 'postfix dereferencing (also e.g. <code>$scalar->$*</code> for <code>$$scalar</code>)', {feature => 'postderef, postderef_qq', experimental => 'postderef', stable => v5.23.1}],
230                         [q"<code>use warnings 'once'; $a</code>", 'variables $a and $b are exempt from <em>used once</em> warnings'],
231                 ],
232                 unicode => '6.3',
233                 release => '2014-05-27',
234                 distro => {
235                         debian => '8', # jessie 2015-04 eol 2018-06 lts 2020-06 elts 2025-06
236                         ubuntu => '14.10', # utopic
237                         aix => '7.2', # 2015-12 eol 2028?
238                         opensuse => '13.2', # 2014-11 eol 2017-01
239                 },
240                 distrosum => "Debian 8 until 2025, Ubuntu 14.10, openSUSE 13.2, AIX 7.2",
241                 versum => "extended vendor support 202X",
242         },
243
244         v5.22 => {
245                 new => [
246                         ['<code>\$alias =</code>', 'aliasing via reference (scoped as of v5.25.3)', {experimental => 'refaliasing'}],
247                         ['<code>&lt;&lt;>></code>', 'safe <code>readline</code> ignoring open flags in arguments'],
248                         ['<code>/()/n</code>', 'flag to disable numbered capturing, turning <code>()</code> into <code>(?:)</code>'],
249                         ['<code>/\b{}/</code>', 'boundary types: <em>gcb</em> (grapheme cluster), <em>sb</em> (sentence), <em>wb</em> (word)'],
250                         ['<code>&.</code>', '<code>& | ^ ~</code> consistently numeric, dotted operators for strings', {feature => 'bitwise', experimental => 'bitwise', stable => v5.28}],
251                         [q"<code>use re 'strict'</code>", 'apply stricter syntax rules to regular expression patterns', {experimental => 're_strict'}],
252                         ['<code>0x.beep+0</code>', q"hexadecimal floating point notation with binary power; <code>printf '%a'</code> to display"],
253                         ['<code><s>??</s></code>', 'single match shorthand (deprecated since v5.14) requires the operator <code><em>m</em>?PATTERN?</code>'],
254                 ],
255                 unicode => '7.0',
256                 release => '2015-06-01',
257                 distro => {
258                         ubuntu => '16.04 LTS', # xenial 2016-04 eol 2021-04 TuxCare els 2025-04
259                 },
260         },
261
262         v5.24 => {
263                 new => [
264                         [q"<code>printf '%.*2$x'</code>", 'reordered precision arguments'],
265                         ['<code>/\b{lb}/</code>', 'line break boundary type (position suitable for hyphenation)'],
266                         ['<code>/faster/</code>', 'various significant speedups, notably matching fixed substrings, <code>/i</code> on caseless languages, 64-bit arithmetic, scope overhead'],
267                 ],
268                 unicode => '8.0',
269                 release => '2016-05-09',
270                 distro => {
271                         debian => '9', # stretch 2017-06 eol 2020-07 lts 2022-06 elts 2027-06
272                         ubuntu => '17.04', # zesty 2017-04 eol 2018-01
273                         freebsd => '10',
274                 },
275                 support => '2027-06',
276         },
277
278         v5.26 => {
279                 new => [
280                         ['<code>&lt;&lt;~EOT</code>', 'indented here-docs, strips same whitespace before delimiter in each line'],
281                         ['<code>@{^CAPTURE}</code>', q"array of last match's captures, so <code>${^CAPTURE}[0]</code> is <code>$1</code>"],
282                         ['<code>//xx</code>', 'extended modifier to also ignore whitespace in bracketed character classes'],
283                 ],
284                 modules => [
285                         ['Test2::V0' => 'generic testing framework to replace <code>Test::*</code> and <code>TAP::*</code>'],
286                 ],
287                 unicode => '9.0', # also Script_Extensions/scx in "\p{script}"
288                 release => '2017-05-30',
289                 distro => {
290                         ubuntu => '17.10', # artful 2017-10; 18.04 LTS 2018-04 eol 2023-04
291                         opensuse => '15.0', # 2018-05 eol 2019-11; same in 15.4 2022-06
292                         centos => '8', # 2019-09 eol 2021-12 TuxCare els 2026-01
293                 },
294                 distrosum => "stable servers such as Ubuntu 17.10+ (Debian &gt;9), CentOS 8, openSUSE 15.0",
295                 support => '2023-04',
296         },
297
298         v5.28 => {
299                 new => [
300                         ['<code>delete %hash{…}</code>', 'hash slices can be deleted with key+value pairs'],
301                         ['<code>/(*…)/</code>', 'alphabetic synonyms for assertions, e.g. <code>(*atomic:…)</code> for <code>(?&gt;…)</code> and <code>(*nlb:…)</code> for <code>(?&lt;!…)</code>', {experimental => 'alpha_assertions', stable => v5.31.6}],
302                         ['<code>/(*script_run:)/</code>', 'enforces all characters to be from the same script', {experimental => 'script_run', stable => v5.31.6}],
303                         ['<code>state @a</code>', 'persistent lexical array or hash variables (in addition to <a href="#state">scalars</a>)', {name => 'state_ext'}],
304                         ['perl<code> -i -pe die</code>', 'safe in-place editing: files are replaced only after successful completion'],
305                         ['<code>${^SAFE_LOCALES}</code>', 'locales are thread-safe on supported systems, indicated by this variable'],
306                 ],
307                 unicode => '10.0',
308                 release => '2018-06-22',
309                 distro => {
310                         debian => '10', # buster 2019-07
311                         ubuntu => '19.04', # disco 2019-04 eol 2020-01
312                         freebsd => '11', # eol 2021-09
313                         macos => '11', # big sur 2020-11
314                 },
315                 distrosum => "stable systems such as Debian 10, Ubuntu 19.04, FreeBSD 11",
316         },
317
318         v5.30 => {
319                 new => [
320                         ['<code>/(?<=var+)</code>', 'variable length lookbehind assertions', {experimental => 'vlb', stable => v5.36}],
321                         ['<code>m(\p{nv=/.*/})</code>', 'match unicode properties by regular expressions', {experimental => 'uniprop_wildcards'}],
322                         ['<code><s>my $state if 0</s></code>', 'workaround for <code><a href="#state">state</a></code> (deprecated since v5.10!) is now prohibited'],
323                         [q"<code>qr'\N'</code>", 'Delimiters must be graphemes; unescaped <code>{</code> illegal; <code>\N</code> in single quotes'],
324                 ],
325                 unicode => '12.1',
326                 release => '2019-05-22',
327                 distro => {
328                         ubuntu => '20.04', # focal LTS 2020-04 eol 2025-04
329                         macos => '11.3', # big sur 2021-04 and monterrey 2021-10, alongside compatibility v5.18
330                 },
331         },
332
333         v5.32 => {
334                 new => [
335                         ['<code>isa</code>', 'infix operator to check class instance', {feature => 'isa', experimental => 'isa', stable => v5.36}],
336                         ['<code>$min &lt; $_ &lt;= $max</code>', 'chained comparison repeats inner part as <code>$min &lt; $_ and $_ &lt;= $max</code>'],
337                         ['<code>/\p{Name=$var}/</code>', 'match Unicode Name property like <code>\N{}</code> but with interpolation and subpatterns'],
338                         [q"<code>open F, '+&gt;&gt;', undef</code>", 'respect append mode on temporary files with mixed access'],
339                         ["<code>no feature 'indirect'</code>", 'disable indirect object notation such as <code>new Class</code> instead of <code>Class-&gt;new</code>'],
340                         ['streamzip', 'program distributed with core IO::Compress::Base to compress stdin into a zip container'],
341                 ],
342                 unicode => '13.0',
343                 release => '2020-06-20',
344                 details => 'https://www.effectiveperlprogramming.com/2020/01/perl-v5-32-new-features/',
345                 distro => {
346                         debian => '11', # bullseye 2021-08
347                         ubuntu => '21.04', # hirsute 2021-04 eol 2022-01
348                         rhel => '8', # -8.7 and -9.1 2022-11
349                         solaris => '11.4', # 2018-08 eol 2034-11 (SRU 38 removes 5.22, 5.26)
350                 },
351                 distrosum => "stable systems such as Debian 11, Ubuntu 21.04, RHEL 8, Solaris 11.4, AIX 7.3",
352                 support => '2034-11', # solaris
353         },
354
355         v5.34 => {
356                 new => [
357                         ['<code>try {} catch</code>', 'exception handling similar to eval blocks', {feature => 'try', experimental => 'try'}],
358                         ['<code>/{,<i>n</i>}/</code>', 'empty lower bound quantifier is accepted as shorthand for 0'],
359                         ['<code>\x{ … }</code>', 'insignificant space within curly braces, also for <code>\b{}</code>, <code>\g{}</code>, <code>\k{}</code>, <code>\N{}</code>, <code>\o{}</code> as well as <code>/{m,n}/</code> quantifiers'],
360                         ['<code>0o0</code>', 'octal prefix <code>0o</code> alternative to <code>0…</code> and <code>oct</code>'],
361                         ['<code>re::optimization(qr//)</code>', 'debug regular expression optimization information discovered at compile time'],
362                         ['<code>no feature …</code>', 'disable discouraged practices of <code>bareword_filehandles</code> and <code>multidimensional</code> array emulation'],
363                 ],
364                 release => '2021-05-20',
365                 distro => {
366                         ubuntu => '22.04', # jammy LTS 2022-04 eol 2027-04
367                         aix => '7.3', # 2021-12 eol 2035?
368                 },
369         },
370
371         v5.36 => {
372                 new => [
373                         ['<code>use v5.36</code>', "use <code>warnings</code>; use feature qw'<code>signatures isa</code>'; no feature qw'<code>indirect multidimensional switch</code>'"],
374                         ['<code>use builtin</code>', 'namespace for interpreter functions, such as <code>weaken</code> and <code>blessed</code> from <code>Scalar::Util</code>, <code>ceil</code>/<code>floor</code> from <code>POSIX</code>, and <code>trim</code> like <code>String::Util</code>', {experimental => 'builtin'}],
375                         ['<code>is_bool(!0)</code>', 'distinguish scalar variable types (by <code>builtin</code> functions) for data interoperability', {name => 'is_bool'}],
376                         ['<code>for my ($k, $v) (%hash)</code>', 'iterate over multiple values at a time (including <code>builtin::indexed</code> for arrays)', {experimental => 'for_list', feature => 'for_list'}],
377                         ['<code>defer {}</code>', 'queue code to be executed when going out of scope', {feature => 'defer', experimental => 'defer'}],
378                         ['<code>try {} finally {}</code>', 'run code at the end of a <code><a href="#try">try</a></code> construct regardless of failure', {name => 'finally', feature => 'try', experimental => 'try'}],
379                         ['<code>q«…»</code>', 'unicode delimiters for quoting operators', {experimental => 'extra_paired_delimiters'}],
380                         ['<code>sub ($var) {!<s>pop</s>}</code>', '<a href="#signatures">signature</a>d subs are stable, but mixing with the arguments array <code>@_</code> remains experimental', {feature => 'signatures', experimental => 'args_array_with_signatures'}],
381                         ['<code>$SIG{FPE}</code>', 'floating-point exceptions no longer deferred but delivered immediately like other signals', {name => 'sig_fpe'}],
382                         ['perl<code> -g</code>', 'disable input record separator (slurp mode), alias for <code>-0777</code>'],
383                 ],
384                 unicode => '14.0',
385                 release => '2022-05-28',
386                 distro => {
387                         debian => '12', # bookworm 2023-06
388                         ubuntu => '23.04', # lunar upcoming
389                 },
390         },
391
392         v5.38 => {
393                 new => [
394                         ['<code>use feature "module_true"</code>', 'default in use 5.37 and up, also <code>no feature "bareword_filehandles"</code>'],
395                         ['<code>sub ($var ||=</code> default<code>)</code>', 'assign values when false (or undefined on <code>//=</code>) instead of omitted'],
396                         ['<code>/(*{ … })/</code>', 'optimistic eval: <code>(?{ … })</code> with regex optimisations enabled'],
397                         ['<code>class</code>', "define object classes: packages with <code>field</code> variables and <code>method</code> subroutines", {feature => 'class', experimental => 'class'}],
398                         ['<code>${^LAST_<wbr>SUCCESSFUL_<wbr>PATTERN}</code>', 'explicit variable to access the previous match as in <code>s//…/</code>'],
399                         ['<code>%{^HOOK}</code>', "perform tasks <code>require__before</code> and <code>require__after</code> when calling <code>require</code>"], # also @INC hook enhancements
400                         ['<code>PERL_RAND_<wbr>SEED</code>', 'environment variable to set <code>srand</code> random number seed', {dropped => 0}],
401                         ['<code>is_tainted</code>', '<code>builtin</code> function to check variable tainting like <code>Scalar::Util::tainted</code>', {dropped => 0, experimental => 'builtin', eg => 'builtin::is_tainted($ENV{PWD}) and say "running perl -T"'}],
402                         ['<code>export_lexically</code>', '<code>builtin</code> function to export named functions into the calling scope', {dropped => 0, experimental => 'builtin', eg => 'method import {builtin::export_lexically {map {$_ => $self->can($_)} @_}}'}],
403                 ],
404                 unicode => '15.0',
405                 release => '2023-07-02',
406         },
407 }