From: Mischa POSLAWSKY Date: Wed, 24 Apr 2024 18:50:27 +0000 (+0200) Subject: perl: mention cgi being dropped from core in v5.22 X-Git-Tag: v1.19~15 X-Git-Url: http://git.shiar.net/sheet.git/commitdiff_plain/0dda0e3a03a9068cd21f8b20252f531e96cb7d1e perl: mention cgi being dropped from core in v5.22 Suggestion by Greg on a Mastodon thread (with support from Mark Gardner) : > might want to include the removal of CGI from core, in 5.22 --- diff --git a/perl.inc.pl b/perl.inc.pl index e26cbcd..7b50cef 100644 --- a/perl.inc.pl +++ b/perl.inc.pl @@ -252,6 +252,7 @@ my $wbr = "\N{ZERO WIDTH SPACE}"; [q"use re 'strict'", 'apply stricter syntax rules to regular expression patterns', {experimental => 're_strict'}], ['0x.beep+0', q"hexadecimal floating point notation with binary power; printf '%a' to display"], ['??', 'single match shorthand (deprecated since v5.14) requires the operator m?PATTERN?'], + ['use CGI' => 'deprecated interface for serving http requests removed from core, see CGI::Alternatives', {name => 'cgi'}], ], unicode => '7.0', release => '2015-06-01', @@ -322,6 +323,7 @@ my $wbr = "\N{ZERO WIDTH SPACE}"; ['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'], + ['use Locale::Codes', 'removed from core, get actual lists from CPAN', {dropped => v5.30}], ], unicode => '12.1', release => '2019-05-22',