From: Peter Rabbitson Date: Sun, 25 Dec 2011 08:31:05 +0000 (+0100) Subject: patch from rt67989 applied, changes dependency from Digest::SHA1 to Digest::SHA X-Git-Tag: v0.11011~61 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c092c5b324e238d963d0f5e2a92622134e2e04eb;p=dbsrgits%2FSQL-Translator.git patch from rt67989 applied, changes dependency from Digest::SHA1 to Digest::SHA --- diff --git a/AUTHORS b/AUTHORS index 12f42e6..caa40e2 100644 --- a/AUTHORS +++ b/AUTHORS @@ -37,6 +37,7 @@ The following people have contributed to the SQLFairy project: - Robert Bohne - Ross Smith II - Ryan D Johnson +- Salvatore Bonaccorso - Sam Angiuoli - Stephen Bennett - Stephen Clouse diff --git a/Changes b/Changes index bcb04d6..5185de6 100644 --- a/Changes +++ b/Changes @@ -9,6 +9,7 @@ * Fix possible name duplication in SQLlite producer * Oracle does not accept ON DELETE/UPDATE RESTRICT (though it is the actual default) fix by not adding the ON DELETE/UPDATE clause at all +* Changed dependency on Digest::SHA1 to the core-bundled Digest::SHA (RT#67989) # ---------------------------------------------------------- # 0.11010 2011-10-05 diff --git a/Makefile.PL b/Makefile.PL index 190e50d..c16164c 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -10,7 +10,7 @@ my $deps = { 'Class::Base' => 0, 'Class::Data::Inheritable' => 0.02, 'Class::MakeMethods' => 0, - 'Digest::SHA1' => 2.00, + 'Digest::SHA' => 0, 'Carp::Clan' => 0, 'IO::Dir' => 0, 'IO::Scalar' => 2.110, diff --git a/lib/SQL/Translator/Utils.pm b/lib/SQL/Translator/Utils.pm index 98c0f9f..c0b0300 100644 --- a/lib/SQL/Translator/Utils.pm +++ b/lib/SQL/Translator/Utils.pm @@ -3,7 +3,7 @@ package SQL::Translator::Utils; use strict; use warnings; use base qw(Exporter); -use Digest::SHA1 qw( sha1_hex ); +use Digest::SHA qw( sha1_hex ); use Exporter; our $VERSION = '1.59';