unicode: one set of barb arrows from unicode 7.0
[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                         opensuse => '7.1',
46                 },
47                 unicode => '3.0.1',
48         },
49
50         v5.8 => {
51                 new => [
52                         [q"<code>no utf8</code>", 'full unicode support, <code>utf8</code> pragma only for script encoding'],
53                         [q"<code>binmode $fh, ':perlio'</code>", 'file handle behaviour altered by PerlIO layers'],
54                         [q"<code>open $fh, '-|', @cmd</code>", 'open list to fork a command without spawning a shell'],
55                         [q"<code>open $fh, '>', \$var</code>", 'perl scalars as virtual files'],
56                         [q"<code>printf '%1$s', @args</code>", 'syntax to use parameters out of order'],
57                         [q"<code>1_2_3 == 123</code>", 'underscores between digits allowed in numeric constants'],
58 #                       [q"<code>use if</code>", 'conditional module inclusion'], # also installable in earlier versions
59                 ],
60                 release => '2002-07-18',
61                 distro => {
62                         debian => 'sarge',
63                         rhel => '3', # v5.8.0; v5.8.8 in RHEL6 (2007-2014)
64                         solaris => '10', # v5.8.4; 2005-01 eol 2021-01
65                         centos => '3-5', # v5.8.0 in v3 (2004-03); v5.8.8 in v5 (eol 2017-03)
66                         ubuntu => '4.10',
67                         aix => '5.2', # v5.8.0; v5.8.2 in 5.3 and 6.1 (eol 2017-04-30)
68                         freebsd => '4-6',
69                         opensuse => '8.1',
70                 },
71                 distrosum => "dinosaur platforms such as Solaris 10, AIX 5.2, RHEL 3, SLES 8",
72                 unicode => '3.2.0',
73         },
74
75         v5.10 => {
76                 new => [
77                         ['<code>//</code>', 'defined-or operator'],
78                         ['<code>~~</code>', 'smart-match operator to compare different data types <small>(updated in v5.10.1)</small>', {experimental => 'smartmatch'}],
79                         ['<code>say</code>', 'print with newline, equivalent to <code>print @_, "\n"</code>', {feature => 'say'}],
80                         ['<code>given</code>', 'switch statement to smart-match with <code>when</code>/<code>default</code>', {feature => 'switch', experimental => 'smartmatch'}],
81                         ['<code>/(?&lt;name>)/</code>', 'named capture buffers into <code>%+</code>'],
82                         ['<code>/(?1)/</code>', 'recursive regular expression patterns'],
83                         ['<code>/(?|)/</code>', 'resets capture numbering for each contained branch'],
84                         ['<code>/.++/</code>', 'possessive quantifiers <code>?+</code>, <code>*+</code>, <code>++</code> to match greedily'],
85                         ['<code>s/keep\K//</code>', 'floating positive lookbehind, efficient alternative for <code>s/(keep)/$1/</code>'],
86                         ['<code>/p</code>', 'optionally preserve <code>${^MATCH}</code> variables (avoiding <code>$&</code> penalty until COW in v5.20)'],
87                         ['<code>/\v/, /\h/</code>', 'vertical and horizontal whitespace escapes (<code>\V</code> <code>\H</code> to invert); also <code>/\R/</code> for newlines'],
88                         ['<code>my $_</code>', 'lexically scoped version of the default variable', {experimental => 'lexical_topic', dropped => v5.23.4}],
89                         ['<code>state</code>', 'persistent <code>my</code> variables', {feature => 'state'}],
90                 ],
91                 release => '2007-12-18',
92                 distro => {
93                         debian => 'lenny',
94                         rhel => '6', # v5.10.1
95                         centos => '6', # v5.10.1 (2011-07 eol 2020-11)
96                         ubuntu => '8.10', # v5.10.1 in 10.04 LTS
97                         aix => '7.1', # v5.10.1 (2010-09 eol 2020?)
98                         opensuse => '11.0',
99                 },
100                 unicode => '5.0.0',
101         },
102
103         v5.12 => {
104                 new => [
105                         ['<code>package</code> version', '<code>package</code> NAME VERSION shorthand for <code>our $VERSION</code>'],
106                         ['<code>...</code>', 'yada-yada operator: code placeholder'],
107                         ['<code>use 5.012</code>', 'implicit <code>strict</code> if use VERSION >= v5.12'],
108                         ['<code>… when</code>', '<code>when</code> is now allowed to be used as a statement modifier'],
109                         [q"<code>use overload 'qr'</code>", 'customisable conversion to regular expressions'],
110                         ['<code>/\N/</code>', 'inverse \n to match any character except newline regardless of <code>/s</code>', {experimental => 0, stable => v5.18}],
111                 ],
112                 release => '2010-04-12',
113                 unicode => '5.2',
114                 distro => {
115                         solaris => '11', # also v5.8.4; 2010-11 eol 2024-11
116                         ubuntu => '11.10',
117                         freebsd => '7',
118                         opensuse => '11.3',
119                 },
120         },
121
122         v5.14 => {
123                 new => [
124                         ['<code>s///r</code>', 'non-destructive substitution'],
125                         ['<code>/(?{ m() })/</code>', 'regular expressions can be nested in <code>/(?{})/</code> and <code>/(??{})/</code>', {experimental => 0, stable => v5.20}],
126                         ['<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.'],
127                         [q"<code>use re '/flags'</code>", 'customise default modifiers'],
128                         ['<code>/(?^)/</code>', 'construct to reset to default modifiers'],
129                         ['<code>each $ref</code> e.a.', 'array and hash container functions accept references', {experimental => 'postderef', dropped => v5.23.1}],
130                         ['<code>FH->method</code>', 'filehandle method calls load IO::File on demand (eg. <code>STDOUT->flush</code>)'],
131                         ['<code>\o{}</code>', 'escape sequence for octal values beyond \777'],
132                 ],
133                 release => '2011-05-14',
134                 distro => {
135                         debian => '7', # wheezy 2013-05 eol 2018-05
136                         ubuntu => '12.04',
137                         opensuse => '12.1',
138                 },
139                 distrosum => "stable servers such as Debian 7, Ubuntu 12.04, CentOS 7",
140                 unicode => '6.0+#8',
141         },
142
143         v5.16 => {
144                 new => [
145                         ['<code>__SUB__</code>', 'current subroutine reference', {feature => 'current_sub'}],
146                         ['<code>fc, "\F"</code>', 'unicode foldcase to compare case-insensitively', {feature => 'fc'}],
147                         ['<code>"\N{}"</code>', 'automatic <code>use charnames qw( :full :short )</code>'],
148                 ],
149                 release => '2012-05-20',
150                 distro => {
151                         rhel => '7', # v5.16.3
152                         centos => '7', # v5.16.3 (2014-07 eol 2024-06)
153                         freebsd => '9',
154                         opensuse => '12.2',
155                 },
156                 unicode => '6.1',
157         },
158
159         v5.18 => {
160                 new => [
161                         ['<code>${^LAST_FH}</code>', 'last read filehandle (used by <code>$.</code>)'],
162                         ['<code>/(?[ a + b ])/</code>', 'regex set operations (character substraction <code>-</code>, unions <code>&amp;</code>)', {experimental => 'regex_sets'}],
163                         ['<code>my sub</code>', 'lexical subroutines (also <code>state</code>, <code>our</code>); buggy before v5.22', {experimental => 'lexical_subs', stable => v5.26}],
164                         ['<code>next $expression</code>', 'loop controls allow runtime expressions'],
165                         [q"<code>no warnings 'experimental::…'</code>", 'mechanism for experimental features, as of now required for <em>smartmatch</em>'],
166                 ],
167                 release => '2013-05-18',
168                 distro => {
169                         ubuntu => '14.04 LTS', # trusty
170                         opensuse => '13.1',
171                 },
172                 unicode => '6.2',
173         },
174
175         v5.20 => {
176                 new => [
177                         ['<code>sub ($var)</code>', 'subroutine signatures', {feature => 'signatures', experimental => 'signatures'}],
178                         ['<code>%hash{…}</code>', 'hash slices return key+value pairs'],
179                         ['<code>[]->@*</code>', 'postfix dereferencing (also e.g. <code>$scalar->$*</code> for <code>$$scalar</code>)', {feature => 'postderef, postderef_qq', experimental => 'postderef', stable => v5.23.1}],
180                         [q"<code>use warnings 'once'; $a</code>", 'variables $a and $b are exempt from <em>used once</em> warnings'],
181                 ],
182                 unicode => '6.3',
183                 release => '2014-05-27',
184                 distro => {
185                         debian => '8', # jessie 2015-04 eol 2020-05
186                         ubuntu => '14.10', # utopic
187                         aix => '7.2',
188                         opensuse => '13.2', # 2014-11 eol 2017-01
189                 },
190                 distrosum => "stable servers such as Debian 8 (oldstable), Ubuntu 14.10, FreeBSD 10, openSUSE 13.2",
191         },
192
193         v5.22 => {
194                 new => [
195                         ['<code>\$alias =</code>', 'aliasing via reference (scoped as of v5.25.3)', {experimental => 'refaliasing'}],
196                         ['<code>&lt;&lt;>></code>', 'safe <code>readline</code> ignoring open flags in arguments'],
197                         ['<code>/()/n</code>', 'flag to disable numbered capturing, turning <code>()</code> into <code>(?:)</code>'],
198                         ['<code>/\b{}/</code>', 'boundary types: <em>gcb</em> (grapheme cluster), <em>sb</em> (sentence), <em>wb</em> (word)'],
199                         ['<code>&.</code>', '<code>& | ^ ~</code> consistently numeric, dotted operators for strings', {feature => 'bitwise', experimental => 'bitwise', stable => v5.28}],
200                         [q"<code>use re 'strict'</code>", 'apply stricter syntax rules to regular expression patterns', {experimental => 're_strict'}],
201                         ['<code>0x.beep+0</code>', q"hexadecimal floating point notation with binary power; <code>printf '%a'</code> to display"],
202                         ['<code><s>??</s></code>', 'single match shorthand (deprecated since v5.14) requires the operator <code><em>m</em>?PATTERN?</code>'],
203                 ],
204                 unicode => '7.0',
205                 release => '2015-06-01',
206                 distro => {
207                         ubuntu => '16.04 LTS', # xenial
208                 },
209         },
210
211         v5.24 => {
212                 new => [
213                         [q"<code>printf '%.*2$x'</code>", 'reordered precision arguments'],
214                         ['<code>/\b{lb}/</code>', 'line break boundary type (position suitable for hyphenation)'],
215                         ['<code>/faster/</code>', 'various significant speedups, notably matching fixed substrings, <code>/i</code> on caseless languages, 64-bit arithmetic, scope overhead'],
216                 ],
217                 unicode => '8.0',
218                 release => '2016-05-09',
219                 distro => {
220                         debian => '9', # stretch 2017-06
221                         ubuntu => '17.04', # zesty
222                         freebsd => '10',
223                 },
224         },
225
226         v5.26 => {
227                 new => [
228                         ['<code>&lt;&lt;~EOT</code>', 'indented here-docs, strips same whitespace before delimiter in each line'],
229                         ['<code>@{^CAPTURE}</code>', q"array of last match's captures, so <code>${^CAPTURE}[0]</code> is <code>$1</code>"],
230                         ['<code>//xx</code>', 'extended modifier to also ignore whitespace in bracketed character classes'],
231                 ],
232                 unicode => '9.0', # also Script_Extensions/scx in "\p{script}"
233                 release => '2017-05-30',
234                 distro => {
235                         ubuntu => '17.10', # artful
236                 },
237         },
238
239         v5.28 => {
240                 new => [
241                         ['<code>delete %hash{…}</code>', 'hash slices can be deleted with key+value pairs'],
242                         ['<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}],
243                         ['<code>/(*script_run:)/</code>', 'enforces all characters to be from the same script', {experimental => 'script_run', stable => v5.31.6}],
244                         ['<code>state @a</code>', 'persistent lexical array or hash variables'],
245                         ['<code>perl -i -pe die</code>', 'safe in-place editing: files are replaced only after successful completion'],
246                         ['<code>${^SAFE_LOCALES}</code>', 'locales are thread-safe on supported systems, indicated by this variable'],
247                 ],
248                 unicode => '10.0',
249                 release => '2018-06-22',
250                 distro => {
251                 },
252         },
253
254         v5.30 => {
255                 new => [
256                         ['<code>/(?<=var+)</code>', 'variable length lookbehind assertions', {experimental => 'vlb'}],
257                         ['<code>m(\p{nv=/.*/})</code>', 'match unicode properties by regular expressions', {experimental => 'uniprop_wildcards'}],
258                         ['<code><s>my $state if 0</s></code>', 'workaround for <code>state</code> (deprecated since v5.10!) is now prohibited'],
259                         [q"<code>qr'\N'</code>", 'Delimiters must be graphemes; unescaped { illegal; \N in single quotes'],
260                 ],
261                 unicode => '12.1',
262                 release => '2019-05-22',
263         },
264
265         v5.32 => {
266                 new => [
267                         ['<code>isa</code>', 'infix operator to check class instance'],
268                         ['<code>$min &lt; $_ &lt;= $max</code>', 'chained comparison repeats inner part as <code>$min &lt; $_ and $_ &lt;= $max</code>'],
269                         ['<code>/\p{Name=$var}/</code>', 'match Unicode Name property like \N{} but with interpolation and subpatterns'],
270                         [q"<code>open F, '+&gt;&gt;', undef</code>", 'respect append mode on temporary files with mixed access'],
271                         ["<code>no feature 'indirect'</code>", 'disable indirect object notation such as <code>new Class</code> instead of <code>Class-&gt;new</code>'],
272                         ['streamzip', 'program distributed with core IO::Compress::Base to compress stdin into a zip container'],
273                 ],
274                 unicode => '13.0',
275                 release => '2020-06-20',
276                 details => 'https://www.effectiveperlprogramming.com/2020/01/perl-v5-32-new-features/',
277         },
278
279         v5.34 => {
280                 new => [
281                         ['<code>try {} catch</code>', 'exception handling similar to eval blocks', {experimental => 'try'}],
282                         ['<code>/{,<i>n</i>}/</code>', 'empty lower bound quantifier is accepted as shorthand for 0'],
283                         ['<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'],
284                         ['<code>0o0</code>', 'octal prefix <code>0o</code> alternative to <code>0…</code> and <code>oct</code>'],
285                         ['<code>re::optimization(qr//)</code>', 'debug regular expression optimization information discovered at compile time'],
286                 ],
287                 release => '2021-05-20',
288         },
289 }