From: Tomas Doran Date: Mon, 22 Apr 2013 14:03:35 +0000 (+0100) Subject: Fix RT#84787 X-Git-Tag: 5.90040~15 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=701e20e514a3513de3b406a8f65fc468c2f61dea Fix RT#84787 --- diff --git a/Changes b/Changes index 616fe66..115949c 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ # This file documents the revision history for Perl extension Catalyst. + - Add Devel::InnerPackage to dependencies, fixing tests on perl 5.17.11 + as it's been removed from core. RT#84787 + 5.90030 - 2013-04-12 ! POSSIBLE BREAKING CHANGE: Removed Regexp dispatch type from core, and put it in an external package. If you need Regexp dispatch types you should diff --git a/Makefile.PL b/Makefile.PL index d906d0f..1e25b5e 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -65,6 +65,7 @@ requires 'Text::Balanced'; # core in 5.8.x but mentioned for completeness requires 'MRO::Compat'; requires 'MooseX::Getopt' => '0.48'; requires 'String::RewritePrefix' => '0.004'; # Catalyst::Utils::resolve_namespace +requires 'Devel::InnerPackage'; # No longer core in blead requires 'Plack' => '0.9991'; # IIS6+7 fix middleware requires 'Plack::Middleware::ReverseProxy' => '0.04'; requires 'Plack::Test::ExternalServer';