charset: display latin1 parents again
[sheet.git] / perl.inc.pl
1 use utf8;
2
3 +{
4         v5.005 => {
5                 new => [
6                         ['threads' => '', {experimental => 0, stable => 0}],
7                         ['<code>B::…</code>', 'backend hooks'],
8                         ['<code>qr//</code>' => 'overhauled regular expression engine: precompile operator, lookahead/behind, code, conditions, localised flags'],
9                         ['<code>… foreach</code>' => '<code>for(each)</code> as statement modifier, with large ranges optimised as counting loops'],
10                         ['<code>…::</code>' => 'implicitly quoted package name'],
11                         ['<code>ref $@</code>' => '<code>die</code> passes reference values to exception handlers'],
12                         ['<code>INIT {}</code>', 'subs run just before the perl runtime begins execution'],
13                         ['<code>tie @…</code>' => 'base class for <code>TIEARRAY</code> implementations, and generally improved supported of tied handlers'],
14                         ['<code>substr …,…,…,$replace</code>', 'replacement string in 4th argument'],
15                         ['<code>splice …,…,-$length</code>', 'negative length indicates elements to keep at the end of an array'],
16                         ['<code>$/</code>', 'integer or scalar separator makes <code>&lt;&gt;</code> read records instead of lines'],
17                 ],
18                 release => '1998-07-22',
19                 unstable => 0,
20         },
21
22         v5.6 => {
23                 new => [
24                         ['<code>use warnings</code>', 'pragma to enable warnings in lexical scope'],
25                         ['<code>use utf8</code>', 'experimental unicode semantics <small>(completed in v5.8)</small>', {experimental => 0, stable => v5.8}],
26                         ['<code>use charnames</code>', 'string escape <code>\N{}</code> to insert named character'],
27                         ['<code>our</code>', 'declare global variables'],
28                         ['<code>v1.2.3</code>', q"represent strings as vector of ordinals, useful in version numbers (<code>printf '%vd'</code> to display)"],
29                         ['<code>0b0</code>', q"binary numbers in literals, <code>printf '%b'</code>, and <code>oct</code>"],
30                         ['<code>sub :lvalue</code>', 'subroutine attribute to return a modifiable value', {experimental => 0, stable => v5.20}],
31 #                       ['<code>sub :locked :method</code>', 'syntax to declare subroutine attributes'], # can be inferred from :lvalue support
32                         ['<code>open my $fh, $mode, $expr</code>', 'file handles in scoped scalars, third argument for unambiguous file name'],
33                         [q"<code>pack 'q'</code>", '64-bit integer support (also large files &gt;2GiB)', {experimental => 0, stable => v5.8.1}],
34                         ['<code>sort $coderef ()</code>', 'comparison function can be a subroutine reference; prototype <code>($$)</code> to pass elements as normal <code>@_</code>'],
35                         ['<code>CHECK {}</code>', 'special block called at end of compilation'],
36                         ['<code>/[[:…:]]/</code>', 'POSIX character class syntax such as <code>/[[:alpha:]]/</code>'],
37                         # quite a lot more, but leave it at this
38                 ],
39                 release => '2000-03-23',
40                 distro => {
41                         debian => 'woody',
42                         rhel => '2', # v5.6.0; also in red hat 7.0
43                         solaris => '9', # v5.6.1; 2002-05 eol 2014-10
44                         aix => '5.1', # 2001-05 eol 2006-04
45                 },
46                 unicode => '3.0.1',
47         },
48
49         v5.8 => {
50                 new => [
51                         [q"<code>no utf8</code>", 'full unicode support, <code>utf8</code> pragma only for script encoding'],
52                         [q"<code>binmode $fh, ':perlio'</code>", 'file handle behaviour altered by PerlIO layers'],
53                         [q"<code>open $fh, '-|', @cmd</code>", 'open list to fork a command without spawning a shell'],
54                         [q"<code>open $fh, '>', \$var</code>", 'perl scalars as virtual files'],
55                         [q"<code>printf '%1$s', @args</code>", 'syntax to use parameters out of order'],
56                         [q"<code>1_2_3 == 123</code>", 'underscores between digits allowed in numeric constants'],
57 #                       [q"<code>use if</code>", 'conditional module inclusion'], # also installable in earlier versions
58                 ],
59                 release => '2002-07-18',
60                 distro => {
61                         debian => 'sarge',
62                         rhel => '3', # v5.8.0; v5.8.8 in RHEL6 (2007-2014)
63                         solaris => '10', # v5.8.4; 2005-01 eol 2021-01
64                         centos => '3-5', # v5.8.0 in v3 (2004-03); v5.8.8 in v5 (eol 2017-03)
65                         ubuntu => '4.10',
66                         aix => '5.2', # v5.8.0; v5.8.2 in 5.3 and 6.1 (eol 2017-04-30)
67                 },
68                 unicode => '3.2.0',
69         },
70
71         v5.10 => {
72                 new => [
73                         ['<code>//</code>', 'defined-or operator'],
74                         ['<code>~~</code>', 'smart-match operator to compare different data types <small>(updated in v5.10.1)</small>', {experimental => 'smartmatch'}],
75                         ['<code>say</code>', 'print with newline, equivalent to <code>print @_, "\n"</code>', {feature => 'say'}],
76                         ['<code>given</code>', 'switch statement to smart-match with <code>when</code>/<code>default</code>', {feature => 'switch', experimental => 'smartmatch'}],
77                         ['<code>/(?&lt;name>)/</code>', 'named capture buffers into <code>%+</code>'],
78                         ['<code>/(?1)/</code>', 'recursive regular expression patterns'],
79                         ['<code>/.++/</code>', 'possessive quantifiers <code>?+</code>, <code>*+</code>, <code>++</code> to match greedily'],
80                         ['<code>s/keep\K//</code>', 'floating positive lookbehind, efficient alternative for <code>s/(keep)/$1/</code>'],
81                         ['<code>/\v/, /\h/</code>', 'vertical and horizontal whitespace escapes'],
82                         ['<code>my $_</code>', 'lexically scoped version of the default variable', {experimental => 'lexical_topic', dropped => v5.23.4}],
83                         ['<code>state</code>', 'persistent <code>my</code> variables', {feature => 'state'}],
84                 ],
85                 release => '2007-12-18',
86                 distro => {
87                         debian => 'lenny',
88                         rhel => '6', # v5.10.1
89                         centos => '6', # v5.10.1 (2011-07 eol 2020-11)
90                         ubuntu => '8.10', # v5.10.1 in 10.04 LTS
91                         aix => '7.1', # v5.10.1 (2010-09 eol 2020?)
92                 },
93                 unicode => '5.0.0',
94         },
95
96         v5.12 => {
97                 new => [
98                         ['<code>package</code> version', '<code>package</code> NAME VERSION shorthand for <code>our $VERSION</code>'],
99                         ['<code>...</code>', 'yada-yada operator: code placeholder'],
100                         ['<code>use 5.012</code>', 'implicit <code>strict</code> if use VERSION >= v5.12'],
101                         ['<code>… when</code>', '<code>when</code> is now allowed to be used as a statement modifier'],
102                         [q"<code>use overload 'qr'</code>", 'customisable conversion to regular expressions'],
103                         ['<code>/\N/</code>', 'inverse \n to match any character except newline regardless of <code>/s</code>', {experimental => 0, stable => v5.18}],
104                 ],
105                 release => '2010-04-12',
106                 unicode => '5.2',
107                 distro => {
108                         solaris => '11', # also v5.8.4; 2010-11 eol 2024-11
109                         ubuntu => '11.10',
110                 },
111         },
112
113         v5.14 => {
114                 new => [
115                         ['<code>s///r</code>', 'non-destructive substitution'],
116                         ['<code>/(?^)/</code>', 'construct to reset to default modifiers'],
117                         ['<code>/(?{ m() })/</code>', 'regular expressions can be nested in <code>/(?{})/</code> and <code>/(??{})/</code>', {experimental => 0, stable => v5.20}],
118                         [q"<code>use re '/flags'</code>", 'customise default modifiers'],
119                         ['<code>each $ref</code> e.a.', 'array and hash container functions accept references', {experimental => 'postderef', dropped => v5.23.1}],
120                         ['<code>FH->method</code>', 'filehandle method calls load IO::File on demand (eg. <code>STDOUT->flush</code>)'],
121                 ],
122                 release => '2011-05-14',
123                 distro => {
124                         debian => 'wheezy',
125                         ubuntu => '12.04',
126                 },
127                 unicode => '6.0+#8',
128         },
129
130         v5.16 => {
131                 new => [
132                         ['<code>__SUB__</code>', 'current subroutine reference', {feature => 'current_sub'}],
133                         ['<code>fc, "\F"</code>', 'unicode foldcase to compare case-insensitively', {feature => 'fc'}],
134                         ['<code>"\N{}"</code>', 'automatic <code>use charnames qw( :full :short )</code>'],
135                 ],
136                 release => '2012-05-20',
137                 distro => {
138                         rhel => '7', # v5.16.3
139                         centos => '7', # v5.16.3 (2014-07 eol 2024-06)
140                 },
141                 unicode => '6.1',
142         },
143
144         v5.18 => {
145                 new => [
146                         ['<code>${^LAST_FH}</code>', 'last read filehandle (used by <code>$.</code>)'],
147                         ['<code>/(?[ a + b ])/</code>', 'regex set operations (character substraction <code>-</code>, unions <code>&amp;</code>)', {experimental => 'regex_sets'}],
148                         ['<code>my sub</code>', 'lexical subroutines (also <code>state</code>, <code>our</code>); buggy before v5.22', {feature => 'lexical_subs', experimental => 'lexical_subs'}],
149                         ['<code>next $expression</code>', 'loop controls allow runtime expressions'],
150                         [q"<code>no warnings 'experimental::…'</code>", 'mechanism for experimental features, as of now required for <em>smartmatch</em>'],
151                 ],
152                 release => '2013-05-18',
153                 distro => {
154                         ubuntu => '14.04',
155                 },
156                 unicode => '6.2',
157         },
158
159         v5.20 => {
160                 new => [
161                         ['<code>sub ($var)</code>', 'subroutine signatures', {feature => 'signatures', experimental => 'signatures'}],
162                         ['<code>%hash{…}</code>', 'hash slices return key+value pairs'],
163                         ['<code>[]->@*</code>', 'postfix dereferencing (also e.g. <code>$scalar->$*</code> for <code>$$scalar</code>)', {feature => 'postderef, postderef_qq', experimental => 'postderef', stable => v5.23.1}],
164                         [q"<code>use warnings 'once'; $a</code>", 'variables $a and $b are exempt from <em>used once</em> warnings'],
165                 ],
166                 unicode => '6.3',
167                 release => '2014-05-27',
168                 distro => {
169                         debian => 'jessie',
170                         ubuntu => '14.10',
171                         aix => '7.2',
172                 },
173         },
174
175         v5.22 => {
176                 new => [
177                         ['<code>\$alias =</code>', 'aliasing via reference (scoped as of v5.25.3)', {experimental => 'refaliasing'}],
178                         ['<code>&lt;&lt;>></code>', 'safe <code>readline</code> ignoring open flags in arguments'],
179                         ['<code>/()/n</code>', 'flag to disable numbered capturing, turning <code>()</code> into <code>(?:)</code>'],
180                         ['<code>/\b{}/</code>', 'boundary types: <em>gcb</em> (grapheme cluster), <em>sb</em> (sentence), <em>wb</em> (word)'],
181                         ['<code>&.</code>', '<code>& | ^ ~</code> consistently numeric, dotted operators for strings', {experimental => 'bitwise'}],
182                         [q"<code>use re 'strict'</code>", 'apply stricter syntax rules to regular expression patterns', {experimental => 're_strict'}],
183                         ['<code>0x.beep+0</code>', q"hexadecimal floating point notation with binary power; <code>printf '%a'</code> to display"],
184                 ],
185                 unicode => '7.0',
186                 release => '2015-06-01',
187                 distro => {
188                         ubuntu => '16.04',
189                 },
190         },
191
192         v5.24 => {
193                 new => [
194                         [q"<code>printf '%.*2$x'</code>", 'reordered precision arguments'],
195                         ['<code>/\b{lb}/</code>', 'line break boundary type (position suitable for hyphenation)'],
196                         ['<code>/faster/</code>', 'various significant speedups, notably matching fixed substrings, <code>/i</code> on caseless languages, 64-bit arithmetic, scope overhead'],
197                 ],
198                 unicode => '8.0',
199                 release => '2016-05-09',
200         },
201
202         v5.25.10 => {
203                 new => [
204                         ['<code>&lt;&lt;~EOT</code>', 'indented here-docs, strips same whitespace before delimiter in each line'],
205                         ['<code>@{^CAPTURE}</code>', q"array of last match's captures, so <code>${^CAPTURE}[0]</code> is <code>$1</code>"],
206                         ['<code>//xx</code>', 'extended modifier to also ignore whitespace in bracketed character classes'],
207                 ],
208                 unicode => '9.0', # also Script_Extensions/scx in "\p{script}"
209                 release => '2017-02-20',
210         },
211 }