diff -pruN 3.18-1/Changes 3.19-1/Changes
--- 3.18-1/Changes	2022-06-25 02:05:03.000000000 +0000
+++ 3.19-1/Changes	2022-08-04 04:43:25.000000000 +0000
@@ -1,8 +1,14 @@
 # Revision history for Perl extension Encode.
 #
-# $Id: Changes,v 3.18 2022/06/25 02:05:01 dankogai Exp dankogai $
+# $Id: Changes,v 3.19 2022/08/04 04:43:23 dankogai Exp dankogai $
 #
-$Revision: 3.18 $ $Date: 2022/06/25 02:05:01 $
+$Revision: 3.19 $ $Date: 2022/08/04 04:43:23 $
+! lib/Encode/Alias.pm /t/Aliases.t
+  Add ISO-8859-8-I as an alias of ISO-8859-8
+  <8ac3918e-5d77-4815-f1e6-6577397068c6@iki.fi>
+  https://en.wikipedia.org/wiki/ISO-8859-8-I
+
+3.18 2022/06/25 02:05:01
 ! lib/Encode/MIME/Header.pm t/mime-header.t
   Pulled: Encode::MIME::Header: Fix base64 word decoding
   https://github.com/dankogai/p5-encode/pull/169
diff -pruN 3.18-1/debian/changelog 3.19-1/debian/changelog
--- 3.18-1/debian/changelog	2022-06-25 10:15:02.000000000 +0000
+++ 3.19-1/debian/changelog	2022-08-04 16:38:35.000000000 +0000
@@ -1,3 +1,9 @@
+libencode-perl (3.19-1) unstable; urgency=medium
+
+  * Import upstream version 3.19.
+
+ -- gregor herrmann <gregoa@debian.org>  Thu, 04 Aug 2022 18:38:35 +0200
+
 libencode-perl (3.18-1) unstable; urgency=medium
 
   * Import upstream version 3.18.
diff -pruN 3.18-1/Encode.pm 3.19-1/Encode.pm
--- 3.18-1/Encode.pm	2022-06-25 02:05:03.000000000 +0000
+++ 3.19-1/Encode.pm	2022-08-04 04:43:25.000000000 +0000
@@ -1,5 +1,5 @@
 #
-# $Id: Encode.pm,v 3.18 2022/06/25 02:04:06 dankogai Exp $
+# $Id: Encode.pm,v 3.19 2022/08/04 04:42:30 dankogai Exp $
 #
 package Encode;
 use strict;
@@ -7,7 +7,7 @@ use warnings;
 use constant DEBUG => !!$ENV{PERL_ENCODE_DEBUG};
 our $VERSION;
 BEGIN {
-    $VERSION = sprintf "%d.%02d", q$Revision: 3.18 $ =~ /(\d+)/g;
+    $VERSION = sprintf "%d.%02d", q$Revision: 3.19 $ =~ /(\d+)/g;
     require XSLoader;
     XSLoader::load( __PACKAGE__, $VERSION );
 }
diff -pruN 3.18-1/lib/Encode/Alias.pm 3.19-1/lib/Encode/Alias.pm
--- 3.18-1/lib/Encode/Alias.pm	2022-06-25 02:05:03.000000000 +0000
+++ 3.19-1/lib/Encode/Alias.pm	2022-08-04 04:43:28.000000000 +0000
@@ -1,7 +1,7 @@
 package Encode::Alias;
 use strict;
 use warnings;
-our $VERSION = do { my @r = ( q$Revision: 2.24 $ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r };
+our $VERSION = do { my @r = ( q$Revision: 2.25 $ =~ /\d+/g ); sprintf "%d." . "%02d" x $#r, @r };
 use constant DEBUG => !!$ENV{PERL_ENCODE_DEBUG};
 
 use Exporter 'import';
@@ -162,6 +162,10 @@ sub init_aliases {
     # Allow variants of iso-8859-1 etc.
     define_alias( qr/\biso[-_]?(\d+)[-_](\d+)$/i => '"iso-$1-$2"' );
 
+    # ISO-8859-8-I => ISO-8859-8
+    # https://en.wikipedia.org/wiki/ISO-8859-8-I
+    define_alias( qr/\biso[-_]8859[-_]8[-_]I$/i => '"iso-8859-8"' );
+
     # At least HP-UX has these.
     define_alias( qr/\biso8859(\d+)$/i => '"iso-8859-$1"' );
 
diff -pruN 3.18-1/META.json 3.19-1/META.json
--- 3.18-1/META.json	2022-06-25 02:05:46.000000000 +0000
+++ 3.19-1/META.json	2022-08-04 04:48:31.000000000 +0000
@@ -49,7 +49,7 @@
          "url" : "https://github.com/dankogai/p5-encode"
       }
    },
-   "version" : "3.18",
+   "version" : "3.19",
    "x_contributors" : [
       "Alex Davies <alex.davies@talktalk.net>",
       "Alex Kapranoff <alex@kapranoff.ru>",
diff -pruN 3.18-1/META.yml 3.19-1/META.yml
--- 3.18-1/META.yml	2022-06-25 02:05:45.000000000 +0000
+++ 3.19-1/META.yml	2022-08-04 04:48:31.000000000 +0000
@@ -24,7 +24,7 @@ requires:
   parent: '0.221'
 resources:
   repository: https://github.com/dankogai/p5-encode
-version: '3.18'
+version: '3.19'
 x_contributors:
   - 'Alex Davies <alex.davies@talktalk.net>'
   - 'Alex Kapranoff <alex@kapranoff.ru>'
diff -pruN 3.18-1/t/Aliases.t 3.19-1/t/Aliases.t
--- 3.18-1/t/Aliases.t	2016-11-29 23:05:16.000000000 +0000
+++ 3.19-1/t/Aliases.t	2022-07-31 02:20:53.000000000 +0000
@@ -42,6 +42,7 @@ sub init_a2c{
         'arabic'   => 'iso-8859-6',
         'greek'    => 'iso-8859-7',
         'hebrew'   => 'iso-8859-8',
+        'iso-8859-8-I' => 'iso-8859-8',
         'thai'     => 'iso-8859-11',
         'tis620'   => 'iso-8859-11',
         'tis-620'   => 'iso-8859-11',
