patch from rt67989 applied, changes dependency from Digest::SHA1 to Digest::SHA
Peter Rabbitson [Sun, 25 Dec 2011 08:31:05 +0000 (09:31 +0100)]
AUTHORS
Changes
Makefile.PL
lib/SQL/Translator/Utils.pm

diff --git a/AUTHORS b/AUTHORS
index 12f42e6..caa40e2 100644 (file)
--- a/AUTHORS
+++ b/AUTHORS
@@ -37,6 +37,7 @@ The following people have contributed to the SQLFairy project:
 -   Robert Bohne <rbo@openserv.org>
 -   Ross Smith II <rossta@users.sf.net>
 -   Ryan D Johnson <ryan@innerfence.com>
+-   Salvatore Bonaccorso <carnil@cpan.org>
 -   Sam Angiuoli <angiuoli@users.sourceforge.net>
 -   Stephen Bennett <stephen@freenode.net>
 -   Stephen Clouse <stephenclouse@gmail.com>
diff --git a/Changes b/Changes
index bcb04d6..5185de6 100644 (file)
--- 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
index 190e50d..c16164c 100644 (file)
@@ -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,
index 98c0f9f..c0b0300 100644 (file)
@@ -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';