From 53552156fe4747b43f9035824fe1b83b64909c27 Mon Sep 17 00:00:00 2001 From: chylli-binary Date: Tue, 20 Dec 2022 12:59:38 +0000 Subject: [PATCH 1/2] update changes --- Changes | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Changes b/Changes index d81f1dc..7aeceae 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,8 @@ Revision history for Data-Validate-Sanctions {{$NEXT}} + A time limit is settled to avoid loading data per request as it might take resources to process a huge sanction list + Improve Redis interaction to increase the performance 0.15 2022-11-23 11:12:24+00:00 UTC Sanction data will be fetched on a single server and stored in Redis by a new module Data::Validate::Sanction::Redis From d78332ac090c344b77a614ac1a592fa6cfc779da Mon Sep 17 00:00:00 2001 From: chylli-binary Date: Wed, 21 Dec 2022 00:23:30 +0000 Subject: [PATCH 2/2] Release Data-Validate-Sanctions 0.16 A time limit is settled to avoid loading data per request as it might take resources to process a huge sanction list Improve Redis interaction to increase the performance --- Changes | 2 ++ Makefile.PL | 2 +- lib/Data/Validate/Sanctions.pm | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Changes b/Changes index 7aeceae..7ce32a0 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,8 @@ Revision history for Data-Validate-Sanctions {{$NEXT}} + +0.16 2022-12-21 00:19:22+00:00 UTC A time limit is settled to avoid loading data per request as it might take resources to process a huge sanction list Improve Redis interaction to increase the performance diff --git a/Makefile.PL b/Makefile.PL index 5dee355..2e81222 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -80,7 +80,7 @@ my %WriteMakefileArgs = ( "YAML" => 0, "utf8" => 0 }, - "VERSION" => "0.16", + "VERSION" => "0.17", "test" => { "TESTS" => "t/*.t" } diff --git a/lib/Data/Validate/Sanctions.pm b/lib/Data/Validate/Sanctions.pm index a705244..361bd72 100644 --- a/lib/Data/Validate/Sanctions.pm +++ b/lib/Data/Validate/Sanctions.pm @@ -21,7 +21,7 @@ use Locale::Country; use Text::Trim qw(trim); use Clone qw(clone); -our $VERSION = '0.16'; +our $VERSION = '0.17'; my $sanction_file; my $instance;