From: Tomas Doran Date: Sat, 15 May 2010 09:55:07 +0000 (+0000) Subject: Changelog, bump versions, add new contributor :) X-Git-Tag: 5.80025~2^2~13^2~2 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=7aba3b2defff97a59aebafc5fc6f422a9d4f5439 Changelog, bump versions, add new contributor :) --- diff --git a/Changes b/Changes index 5a36bc8..fe66038 100644 --- a/Changes +++ b/Changes @@ -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: diff --git a/lib/Catalyst.pm b/lib/Catalyst.pm index 08f85f3..7ab8c48 100644 --- a/lib/Catalyst.pm +++ b/lib/Catalyst.pm @@ -79,7 +79,7 @@ __PACKAGE__->stats_class('Catalyst::Stats'); # 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 @@ random: Roland Lammel Robert Sedlacek C<< >> +SpiceMan: Marcel Montes + sky: Arthur Bergman szbalint: Balint Szilakszi diff --git a/lib/Catalyst/Runtime.pm b/lib/Catalyst/Runtime.pm index 89ddad1..0c37ca2 100644 --- a/lib/Catalyst/Runtime.pm +++ b/lib/Catalyst/Runtime.pm @@ -7,7 +7,7 @@ BEGIN { require 5.008004; } # Remember to update this in Catalyst as well! -our $VERSION = '5.80023'; +our $VERSION = '5.80024'; =head1 NAME