From: Tomas Doran Date: Mon, 30 Nov 2009 23:17:33 +0000 (+0000) Subject: Require new HTTP::Request::AsCGI X-Git-Tag: 5.80014_02~4 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=6cc3be547afa371706f958f6c2a50b34ba09de07;hp=1dea1c87b6cce7478a3ed28839b1e223363ffedf Require new HTTP::Request::AsCGI --- diff --git a/Changes b/Changes index 9d84a71..700b876 100644 --- a/Changes +++ b/Changes @@ -11,6 +11,8 @@ $ENV{SCRIPT_NAME} if possible. This is many web servers always fully decode PATH_INFO including URI reserved characters. This allows us to tell foo%2cbar from foo%252cbar.. RT#50082 + - Require new HTTP::Request::AsCGI so that it fully decodes $ENV{PATH_INFO} + in non CGI contexts. Refactoring / cleanups: - NoTabs and Pod tests moved to t/author so that they're not run diff --git a/Makefile.PL b/Makefile.PL index 093e32a..3d54ea9 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -34,7 +34,7 @@ requires 'HTTP::Body' => '1.04'; # makes uploadtmp work requires 'HTTP::Headers' => '1.64'; requires 'HTTP::Request' => '5.814'; requires 'HTTP::Response' => '5.813'; -requires 'HTTP::Request::AsCGI' => '0.8'; +requires 'HTTP::Request::AsCGI' => '1.0'; requires 'LWP::UserAgent'; requires 'Module::Pluggable' => '3.9'; requires 'Path::Class' => '0.09';