X-Git-Url: http://git.shiar.net/sheet.git/blobdiff_plain/a448623d4ae3e8fb391dab7359a41043173c16e8..HEAD:/perl.inc.pl diff --git a/perl.inc.pl b/perl.inc.pl index 6ab2fdf..e26cbcd 100644 --- a/perl.inc.pl +++ b/perl.inc.pl @@ -1,5 +1,7 @@ use utf8; +use strict; +my $wbr = "\N{ZERO WIDTH SPACE}"; +{ v5.004 => { release => '1997-05-15', @@ -11,7 +13,7 @@ use utf8; v5.005 => { new => [ - ['threads' => '', {experimental => 0, stable => 0}], + ['lock', 'obsolete Thread implementation, including a keyword to place advisory locks on shared variables', {experimental => 0, stable => 0, dropped => v5.10}], ['B::…', 'backend hooks'], ['qr//' => 'overhauled regular expression engine: precompile operator, lookahead/behind, code, conditions, localised flags'], ['… foreach' => 'for(each) as statement modifier, with large ranges optimised as counting loops'], @@ -23,19 +25,26 @@ use utf8; ['splice …,…,-$length', 'negative length indicates elements to keep at the end of an array'], ['$/', 'integer or scalar separator makes <> read records instead of lines'], ], + modules => [ + ['Data::Dumper' => 'stringify data structures'], + ['Errno' => 'system errno.h constants'], + ['File::Spec'], + ['Fatal'], + ['Test'], + ], release => '1998-07-22', unstable => 0, }, v5.6 => { new => [ - ['use warnings', 'pragma to enable warnings in lexical scope'], - ['use utf8', 'experimental unicode semantics (completed in v5.8)', {experimental => 0, stable => v5.8}], + ['use warnings', 'pragma to enable warnings in lexical scope', {name => 'warnings'}], + ['use utf8', 'experimental unicode semantics (completed in v5.8)', {name => 'utf8', experimental => 0, stable => v5.8}], ['use charnames', 'string escape \N{} to insert named character'], ['our', 'declare global variables'], ['v1.2.3', q"represent strings as vector of ordinals, useful in version numbers (printf '%vd' to display)"], ['0b0', q"binary numbers in literals, printf '%b', and oct"], - ['sub :lvalue', 'subroutine attribute to return a modifiable value', {experimental => 0, stable => v5.20}], + ['sub :lvalue', 'subroutine attribute to return a modifiable value', {name => 'sub_lvalue', experimental => 0, stable => v5.20}], # ['sub :locked :method', 'syntax to declare subroutine attributes'], # can be inferred from :lvalue support ['open my $fh, $mode, $expr', 'file handles in scoped scalars, third argument for unambiguous file name'], [q"pack 'q'", '64-bit integer support (also large files >2GiB)', {experimental => 0, stable => v5.8.1}], @@ -58,13 +67,26 @@ use utf8; v5.8 => { new => [ - [q"no utf8", 'full unicode support, utf8 pragma only for script encoding'], - [q"binmode $fh, ':perlio'", 'file handle behaviour altered by PerlIO layers'], + [q"no utf8", 'full unicode support, utf8 pragma only for script encoding', {name => 'utf8_data'}], + [q"use open", 'file handle behaviour altered by PerlIO layers', {name => 'perlio', eg => 'binmode $fh, ":bytes"'}], [q"open $fh, '-|', @cmd", 'open list to fork a command without spawning a shell'], [q"open $fh, '>', \$var", 'perl scalars as virtual files'], [q"printf '%1$s', @args", 'syntax to use parameters out of order'], [q"1_2_3 == 123", 'underscores between digits allowed in numeric constants'], -# [q"use if", 'conditional module inclusion'], # also installable in earlier versions + ], + modules => [ + [bignum => 'transparent big number support', 'length 1e100 == 101'], + [if => 'conditional module inclusion', 'no if $] >= 5.022, "warnings", "redundant"'], + [sort => 'override sort() algorithm', {dropped => v5.28, eg => 'sort::current eq "stable"'}], + [Digest => 'calculate various message digests (data hashes)', '$hash = sha256_hex($data)'], + [Encode => 'character set conversion', 'encode("utf8", decode("iso-8859-1", $octets))'], + ['File::Temp' => 'create a temporary file or directory safely', '$fh = tempfile();'], + ['List::Util' => 'general-utility list subroutines', '@cards = shuffle 0..51'], + ['Locale::Maketext' => 'various localization and internationalization in Locale::* and L18N::*'], + ['Memoize' => 'remember function results, trading space for time', 'memoize "stat"'], + ['MIME::Base64' => 'base64 encoded strings as in email attachments'], + ['Test::More' => 'modern framework for unit testing', 'is $got, $expected'], + ['Time::HiRes' => 'high resolution timers', '$μs = [gettimeofday]; sleep .1;'.$wbr.' $elapsed = tv_interval $μs'], ], release => '2002-07-18', distro => { @@ -88,7 +110,7 @@ use utf8; ['//', 'defined-or operator'], ['~~', 'smart-match operator to compare different data types (updated in v5.10.1)', {experimental => 'smartmatch'}], ['say', 'print with newline, equivalent to print @_, "\n"', {feature => 'say'}], - ['given', 'switch statement to smart-match with when/default', {feature => 'switch', experimental => 'smartmatch'}], + ['given', 'switch statement to smart-match with when/default', {name => 'switch', feature => 'switch', experimental => 'smartmatch'}], ['/(?<name>)/', 'named capture buffers into %+'], ['/(?1)/', 'recursive regular expression patterns'], ['/(?|)/', 'resets capture numbering for each contained branch'], @@ -97,7 +119,14 @@ use utf8; ['/p', 'optionally preserve ${^MATCH} variables (avoiding $& penalty until COW in v5.20)'], ['/\v/, /\h/', 'vertical and horizontal whitespace escapes (\V \H to invert); also /\R/ for newlines'], ['my $_', 'lexically scoped version of the default variable', {experimental => 'lexical_topic', dropped => v5.23.4}], - ['state', 'persistent my variables', {feature => 'state'}], + ['state', 'persistent my variables (scalars only until 5.28)', {feature => 'state'}], + ], + modules => [ + [autodie => 'replace builtin functions to throw exceptions instead of returning failure', 'eval {open ...} or $@->matches("open") || die'], + # overloading + ['IO::Compress::Zip' => 'various file compression standards', 'zip IO::Uncompress::Gunzip->new("test.gz")'.$wbr.' => "recompressed.zip"'], + ['Time::Piece' => 'timestamps as objects', 'localtime->year > 1900'], + ['File::Fetch' => 'generic data retrieval/download', 'File::Fetch->new(uri => "http://localhost/")'.$wbr.'->fetch(to => \$slurp)'], ], release => '2007-12-18', distro => { @@ -122,6 +151,7 @@ use utf8; ['… when', 'when is now allowed to be used as a statement modifier'], [q"use overload 'qr'", 'customisable conversion to regular expressions'], ['/\N/', 'inverse \n to match any character except newline regardless of /s', {experimental => 0, stable => v5.18}], + ['each $ref e.a.', 'array and hash container functions accept references', {experimental => 'autoderef', dropped => v5.23.1}], ], release => '2010-04-12', unicode => '5.2', @@ -141,10 +171,14 @@ use utf8; ['/dalu', 'regexp modifiers to restrict character classes: either default, ascii, locale, or unicode semantics.'], [q"use re '/flags'", 'customise default modifiers'], ['/(?^)/', 'construct to reset to default modifiers'], - ['each $ref e.a.', 'array and hash container functions accept references', {experimental => 'postderef', dropped => v5.23.1}], ['FH->method', 'filehandle method calls load IO::File on demand (eg. STDOUT->flush)'], ['\o{}', 'escape sequence for octal values beyond \777'], ], + modules => [ + [JSON => 'interface with data in JavaScript Object Notation', 'decode_json <>'], + ['HTTP::Tiny' => 'minimal HTTP/1.1 client without LWP::UserAgent overhead', {dropped => 0}], + # Unicode::Collate::Locale + ], release => '2011-05-14', distro => { debian => '7', # wheezy 2013-05 eol 2018-05 elts 2020-06 @@ -184,6 +218,7 @@ use utf8; distro => { ubuntu => '14.04 LTS', # trusty opensuse => '13.1', # 2013-11 eol 2016-01 + macos => '10.15', # pre-installed catalina 2019-10 }, unicode => '6.2', }, @@ -247,6 +282,9 @@ use utf8; ['@{^CAPTURE}', q"array of last match's captures, so ${^CAPTURE}[0] is $1"], ['//xx', 'extended modifier to also ignore whitespace in bracketed character classes'], ], + modules => [ + ['Test2::V0' => 'generic testing framework to replace Test::* and TAP::*'], + ], unicode => '9.0', # also Script_Extensions/scx in "\p{script}" release => '2017-05-30', distro => { @@ -263,7 +301,7 @@ use utf8; ['delete %hash{…}', 'hash slices can be deleted with key+value pairs'], ['/(*…)/', 'alphabetic synonyms for assertions, e.g. (*atomic:…) for (?>…) and (*nlb:…) for (?<!…)', {experimental => 'alpha_assertions', stable => v5.31.6}], ['/(*script_run:)/', 'enforces all characters to be from the same script', {experimental => 'script_run', stable => v5.31.6}], - ['state @a', 'persistent lexical array or hash variables'], + ['state @a', 'persistent lexical array or hash variables (in addition to scalars)', {name => 'state_ext'}], ['perl -i -pe die', 'safe in-place editing: files are replaced only after successful completion'], ['${^SAFE_LOCALES}', 'locales are thread-safe on supported systems, indicated by this variable'], ], @@ -273,6 +311,7 @@ use utf8; debian => '10', # buster 2019-07 ubuntu => '19.04', # disco 2019-04 eol 2020-01 freebsd => '11', # eol 2021-09 + macos => '11', # big sur 2020-11 }, distrosum => "stable systems such as Debian 10, Ubuntu 19.04, FreeBSD 11", }, @@ -281,13 +320,14 @@ use utf8; new => [ ['/(?<=var+)', 'variable length lookbehind assertions', {experimental => 'vlb', stable => v5.36}], ['m(\p{nv=/.*/})', 'match unicode properties by regular expressions', {experimental => 'uniprop_wildcards'}], - ['my $state if 0', 'workaround for state (deprecated since v5.10!) is now prohibited'], - [q"qr'\N'", 'Delimiters must be graphemes; unescaped { illegal; \N in single quotes'], + ['my $state if 0', 'workaround for state (deprecated since v5.10!) is now prohibited'], + [q"qr'\N'", 'Delimiters must be graphemes; unescaped { illegal; \N in single quotes'], ], unicode => '12.1', release => '2019-05-22', distro => { ubuntu => '20.04', # focal LTS 2020-04 eol 2025-04 + macos => '11.3', # big sur 2021-04 and monterrey 2021-10, alongside compatibility v5.18 }, }, @@ -295,7 +335,7 @@ use utf8; new => [ ['isa', 'infix operator to check class instance', {feature => 'isa', experimental => 'isa', stable => v5.36}], ['$min < $_ <= $max', 'chained comparison repeats inner part as $min < $_ and $_ <= $max'], - ['/\p{Name=$var}/', 'match Unicode Name property like \N{} but with interpolation and subpatterns'], + ['/\p{Name=$var}/', 'match Unicode Name property like \N{} but with interpolation and subpatterns'], [q"open F, '+>>', undef", 'respect append mode on temporary files with mixed access'], ["no feature 'indirect'", 'disable indirect object notation such as new Class instead of Class->new'], ['streamzip', 'program distributed with core IO::Compress::Base to compress stdin into a zip container'], @@ -333,20 +373,36 @@ use utf8; new => [ ['use v5.36', "use warnings; use feature qw'signatures isa'; no feature qw'indirect multidimensional switch'"], ['use builtin', 'namespace for interpreter functions, such as weaken and blessed from Scalar::Util, ceil/floor from POSIX, and trim like String::Util', {experimental => 'builtin'}], - ['is_bool(!0)', 'distinguish scalar variable types (by builtin functions) for data interoperability'], + ['is_bool(!0)', 'distinguish scalar variable types (by builtin functions) for data interoperability', {name => 'is_bool'}], ['for my ($k, $v) (%hash)', 'iterate over multiple values at a time (including builtin::indexed for arrays)', {experimental => 'for_list', feature => 'for_list'}], ['defer {}', 'queue code to be executed when going out of scope', {feature => 'defer', experimental => 'defer'}], - ['try {} finally {}', 'run code at the end of a try construct regardless of failure', {feature => 'try', experimental => 'try'}], + ['try {} finally {}', 'run code at the end of a try construct regardless of failure', {name => 'finally', feature => 'try', experimental => 'try'}], ['q«…»', 'unicode delimiters for quoting operators', {experimental => 'extra_paired_delimiters'}], - ['sub ($var) {!pop}', 'signatured subs are stable, but mixing with the arguments array @_ remains experimental', {feature => 'signatures', experimental => 'args_array_with_signatures'}], - ['$SIG{FPE}', 'floating-point exceptions no longer deferred but delivered immediately like other signals'], + ['sub ($var) {!pop}', 'signatured subs are stable, but mixing with the arguments array @_ remains experimental', {feature => 'signatures', experimental => 'args_array_with_signatures'}], + ['$SIG{FPE}', 'floating-point exceptions no longer deferred but delivered immediately like other signals', {name => 'sig_fpe'}], ['perl -g', 'disable input record separator (slurp mode), alias for -0777'], ], unicode => '14.0', release => '2022-05-28', distro => { - debian => '12', # bookworm 2023 upcoming + debian => '12', # bookworm 2023-06 ubuntu => '23.04', # lunar upcoming }, }, + + v5.38 => { + new => [ + ['use feature "module_true"', 'default in use 5.37 and up, also no feature "bareword_filehandles"'], + ['sub ($var ||= default)', 'assign values when false (or undefined on //=) instead of omitted'], + ['/(*{ … })/', 'optimistic eval: (?{ … }) with regex optimisations enabled'], + ['class', "define object classes: packages with field variables and method subroutines", {feature => 'class', experimental => 'class'}], + ['${^LAST_SUCCESSFUL_PATTERN}', 'explicit variable to access the previous match as in s//…/'], + ['%{^HOOK}', "perform tasks require__before and require__after when calling require"], # also @INC hook enhancements + ['PERL_RAND_SEED', 'environment variable to set srand random number seed', {dropped => 0}], + ['is_tainted', 'builtin function to check variable tainting like Scalar::Util::tainted', {dropped => 0, experimental => 'builtin', eg => 'builtin::is_tainted($ENV{PWD}) and say "running perl -T"'}], + ['export_lexically', 'builtin function to export named functions into the calling scope', {dropped => 0, experimental => 'builtin', eg => 'method import {builtin::export_lexically {map {$_ => $self->can($_)} @_}}'}], + ], + unicode => '15.0', + release => '2023-07-02', + }, }