Work correctly with latest Catalyst 0.001007
Tomas Doran [Sat, 15 May 2010 10:38:29 +0000 (12:38 +0200)]
Changes
lib/Gitalist.pm

diff --git a/Changes b/Changes
index 02bf807..8a07c20 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 This file documents the revision history for Perl extension Gitalist.
 
+0.001007 2010-05-15
+    - Set the use_request_uri_for_path configuration variable to be compatible
+      with Catalyst 5.80024.
+
 0.001006 2010-05-13
     - Fix Catalyst::Action::REST dependency (there wasn't one previously)
     - Depend on latest Catalyst::View::TT due to a previous bad version
index 69256e2..94bf8b9 100644 (file)
@@ -14,13 +14,15 @@ use Catalyst qw/
                 SubRequest
 /;
 
-our $VERSION = '0.001006';
+our $VERSION = '0.001007';
 $VERSION = eval $VERSION;
 
 __PACKAGE__->config(
     name => 'Gitalist',
     default_view => 'Default',
     default_model => 'CollectionOfRepos',
+    use_request_uri_for_path => 1,
+    disable_component_resolution_regex_fallback => 1,
 );
 
 __PACKAGE__->setup();