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