Bump Moose dep, remove MOP dep as Moose already depends on recent enough version...
Tomas Doran [Tue, 28 Apr 2009 17:50:40 +0000 (17:50 +0000)]
Changes
Makefile.PL
TODO
lib/Catalyst.pm

diff --git a/Changes b/Changes
index 12e23a0..b1524b8 100644 (file)
--- a/Changes
+++ b/Changes
@@ -8,11 +8,13 @@
           AGGREGATE_TESTS environment variable is set and a recent
           Test::Aggregate is available. (rafl)
         - POD formatting fix for Catalyst::Test (Dan Dascalescu)
-        - Bump to MooseX::MethodAttributes 0.09, to gain the 
+        - Bump to MooseX::MethodAttributes 0.09, to gain the
           get_nearest_methods_with_attributes method allowing methods without
-          attributes in a subclass to override those with attributes in a 
+          attributes in a subclass to override those with attributes in a
           superclass. This fixes CatalystX::CRUD's method of overriding /
-          disabling functionality from base controllers (t0m).
+          disabling functionality from base controllers. (t0m)
+        - Bump Moose dependency to latest version to fix metaclass
+          incompatibility issues in some cases. (t0m)
 
 5.80002 2009-04-22 01:28:36
         - Fix CATALYST_DEBUG and MYAPP_DEBUG environment variables
index e9e9b7f..2c38339 100644 (file)
@@ -8,11 +8,10 @@ all_from 'lib/Catalyst/Runtime.pm';
 requires 'namespace::clean';
 requires 'Scope::Upper' => '0.06';
 requires 'MooseX::Emulate::Class::Accessor::Fast' => '0.00801';
-requires 'Moose' => '0.73';
+requires 'Moose' => '0.76';
 requires 'MooseX::MethodAttributes::Inheritable' => '0.09';
 requires 'Carp';
 requires 'Class::C3::Adopt::NEXT' => '0.07';
-requires 'Class::MOP' => '0.79';
 requires 'CGI::Simple::Cookie';
 requires 'Data::Dump';
 requires 'File::Modified';
diff --git a/TODO b/TODO
index 5669c63..d8eefc4 100644 (file)
--- a/TODO
+++ b/TODO
@@ -2,7 +2,6 @@ Bugs:
    - Make logging levels properly additive.
    - Stats bugs?
    - Moose tests failing - new MX::MethodAttributes helps with this somewhat.
-   - HTTP::Request::AsCGI 0.8
 
    - Chained bugs in http://github.com/bobtfish/catalyst-app-bug-go_chain/tree/master
 
index 066339c..75652fb 100644 (file)
@@ -3,7 +3,6 @@ package Catalyst;
 use Moose;
 extends 'Catalyst::Component';
 use Moose::Util qw/find_meta/;
-use Moose::Util::MetaRole ();
 use bytes;
 use Scope::Upper ();
 use Catalyst::Exception;