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