From: Tomas Doran Date: Mon, 30 Nov 2009 20:57:37 +0000 (+0000) Subject: This doesn't make any tests fail in currently released Catalyst, (and in fact _also_... X-Git-Tag: v1.0^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FHTTP-Request-AsCGI.git;a=commitdiff_plain;h=66abdd0142c7bcf3123f92e0398539077d7bb8e1 This doesn't make any tests fail in currently released Catalyst, (and in fact _also_ makes t/aggregate/live_engine_request_escaped_path.t pass), so should be safe to ship.. --- diff --git a/Changes b/Changes index 5ede19a..37eb9d0 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,6 @@ This file documents the revision history for Perl extension HTTP::Request::AsCGI. +1.0 2009-11-30 - Change how PATH_INFO is decoded so that everything is decoded, including URI reserved characters (RT#50082) diff --git a/dist.ini b/dist.ini index 1f741c1..4aba746 100644 --- a/dist.ini +++ b/dist.ini @@ -1,5 +1,5 @@ name = HTTP-Request-AsCGI -version = 0.9 +version = 1.0 license = Perl_5 author = Christian Hansen author = Hans Dieter Pearcey diff --git a/lib/HTTP/Request/AsCGI.pm b/lib/HTTP/Request/AsCGI.pm index f2ddbff..e5e167f 100644 --- a/lib/HTTP/Request/AsCGI.pm +++ b/lib/HTTP/Request/AsCGI.pm @@ -5,7 +5,7 @@ use warnings; use bytes; use base 'Class::Accessor::Fast'; -our $VERSION = '0.9'; +our $VERSION = '1.0'; use Carp; use HTTP::Response;