[Catalyst-commits] r13264 - in Catalyst-Runtime/5.80/trunk: . lib lib/Catalyst

t0m at dev.catalyst.perl.org t0m at dev.catalyst.perl.org
Sat May 15 09:55:07 GMT 2010


Author: t0m
Date: 2010-05-15 10:55:07 +0100 (Sat, 15 May 2010)
New Revision: 13264

Modified:
   Catalyst-Runtime/5.80/trunk/Changes
   Catalyst-Runtime/5.80/trunk/lib/Catalyst.pm
   Catalyst-Runtime/5.80/trunk/lib/Catalyst/Runtime.pm
Log:
Changelog, bump versions, add new contributor :)

Modified: Catalyst-Runtime/5.80/trunk/Changes
===================================================================
--- Catalyst-Runtime/5.80/trunk/Changes	2010-05-15 09:42:58 UTC (rev 13263)
+++ Catalyst-Runtime/5.80/trunk/Changes	2010-05-15 09:55:07 UTC (rev 13264)
@@ -1,5 +1,24 @@
 # This file documents the revision history for Perl extension Catalyst.
 
+5.80024 2010-05-15 11:55:44
+
+  Bug fixes:
+   - Revert the path resolution behaviour to how it used to work before
+     Catalyst 5.80014_02, so that application paths are (by default)
+     resolved from $ENV{PATH_INFO} and $ENV{SCRIPT_NAME}. This fixes backward
+     compatibility breakage seen by a number of people since that release
+     with mod_rewrite and SSI.
+
+  New features:
+   - Add a use_request_uri_for_path config setting to optionally
+     use the (more correct) $ENV{REQUEST_URI} path resolution behaviour.
+
+  Documentation:
+   - Clarify the documentation for the Catalyst::Stats interface.
+   - Copious documentation about the use_request_uri_for_path feature
+     and the implications of setting this to true/false in
+     Catalyst::Engine::CGI
+
 5.80023 2010-05-07 23:50:27
 
   Bug fixes:

Modified: Catalyst-Runtime/5.80/trunk/lib/Catalyst/Runtime.pm
===================================================================
--- Catalyst-Runtime/5.80/trunk/lib/Catalyst/Runtime.pm	2010-05-15 09:42:58 UTC (rev 13263)
+++ Catalyst-Runtime/5.80/trunk/lib/Catalyst/Runtime.pm	2010-05-15 09:55:07 UTC (rev 13264)
@@ -7,7 +7,7 @@
 
 # Remember to update this in Catalyst as well!
 
-our $VERSION = '5.80023';
+our $VERSION = '5.80024';
 
 =head1 NAME
 

Modified: Catalyst-Runtime/5.80/trunk/lib/Catalyst.pm
===================================================================
--- Catalyst-Runtime/5.80/trunk/lib/Catalyst.pm	2010-05-15 09:42:58 UTC (rev 13263)
+++ Catalyst-Runtime/5.80/trunk/lib/Catalyst.pm	2010-05-15 09:55:07 UTC (rev 13264)
@@ -79,7 +79,7 @@
 
 # Remember to update this in Catalyst::Runtime as well!
 
-our $VERSION = '5.80023';
+our $VERSION = '5.80024';
 
 sub import {
     my ( $class, @arguments ) = @_;
@@ -3181,6 +3181,8 @@
 
 Robert Sedlacek C<< <rs at 474.at> >>
 
+SpiceMan: Marcel Montes
+
 sky: Arthur Bergman
 
 szbalint: Balint Szilakszi <szbalint at cpan.org>




More information about the Catalyst-commits mailing list