X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FCatalyst%2FUpgrading.pod;h=b37033472c8005502eaabd4fa33e71700f0fafa8;hb=3df8be3a51ac163e99d2ee87f7a819f02787e592;hp=e2d49fa127c6042ab01cb1c9b6e727f68569ce04;hpb=6c04a1eadc9d788231680a9ae7bff50d448899a3;p=catagits%2FCatalyst-Runtime.git diff --git a/lib/Catalyst/Upgrading.pod b/lib/Catalyst/Upgrading.pod index e2d49fa..b370334 100644 --- a/lib/Catalyst/Upgrading.pod +++ b/lib/Catalyst/Upgrading.pod @@ -3,11 +3,11 @@ Most applications and plugins should run unaltered on Catalyst 5.80. However as a lot of refactoring work has taken place, several changes -have been made which could cause incompatibilties, if your application +have been made which could cause incompatibilities, if your application or plugin is using deprecated code, or relying on side-effects then there could be incompatibility. -Most issues found with pre-existing components have been easy to solve, +Most issues found with pre-existing components have been easy to solve, and a complete description of behavior changes which may cause compatibility issues, or warnings to be emitted is included below to help if you have problems. @@ -17,16 +17,43 @@ this document, then please email the Catalyst list to discuss the problem. =head1 Known backwards compatibility breakages. -=head2 Moose applications +=head2 Components which inherit from Moose::Object before Catalyst::Component -Moose components for Catalyst 5.70 needed to do +Moose components which say: + package TestApp::Controller::Example; + use Moose; extends qw/Moose::Object Catalyst::Component/; -to be able to use the constructor provided by Moose. In 5.80 -C already inherits from C. Therefor you -shouldn't directly inherit from C yourself, otherwise your -Class' @ISA will not linearise with C3. +to use the constructor provided by Moose, whilst working if you do some hacks +with the C< BUILDARGS > method, will not work with Catalyst 5.80 as +C inherits from C, and so C< @ISA > fails +to linearise. + +The fix for this, is to not inherit directly from C +yourself. Having components which do not inherit their constructor from +C is B, and has never been recommended, +therefore you're on your own if you're using this technique. You'll need +to detect the version of Catalyst your application is running with and deal +with it appropriately. + +You will also see this issue if you do the following: + + package TestApp::Controller::Example; + use Moose; + use base 'Catalyst::Controller'; + +as C< use base > appends to @ISA. + +The correct way to use Moose in a component in a both forward and backwards +compatible way is: + + package TestApp::Controller::Root; + use Moose; + BEGIN { extends 'Catalyst::Component' }; # Or ::Controller, or whatever + +Note that the C< extends > decleration needs to occur in a begin block for +L to operate correctly. =head2 Anonymous closures installed directly into the symbol table @@ -50,6 +77,32 @@ install the closure using the appropriate metaclass. Example: my $metaclass = Moose::Meta::Class->initialize($package_name); $metaclass->add_method($method_name => sub { ... }); +=head2 Hooking into application setup + +To execute code during application startup the following snippet in MyApp.pm +used to work: + + sub setup { + my ($class, @args) = @_; + $class->NEXT::setup(@args); + ... # things to do after the actual setup + } + +With Catalyst 5.80 this won't work anymore. Because instead of using NEXT.pm it +relies on Class::C3::Adopt::NEXT, which doesn't remember what methods it +already called, like NEXT does and therefore goes into a deep recursion between +MyApp::setup and Catalyst::setup. + +Moose method modifiers line C<< before|after|around 'setup => sub { ... }; >> +won't work either because of backward compatibility issues related to plugin +setup methods. + +The right way to do it is this: + + after setup_finalize => sub { + ... # things to do after the actual setup + }; + =head2 Components whos new method returns false Previously if your new method returned a false value, @@ -85,7 +138,7 @@ by calling the mk_accessors class method. This is no longer supported - users should make a sub-class of the class who's behavior they would like to change, rather than globally polluting the Catalyst objects. -=head2 Confused multiple inheritence with Catalyst::Component::COMPONENT +=head2 Confused multiple inheritance with Catalyst::Component::COMPONENT Warning message: @@ -105,10 +158,6 @@ Therefore the correct fix is to re-arrange your class' inheritance hierarchy so that the COMPONENT method you would like to inherit is the first COMPONENT method in your @ISA. -=head2 Assigning lists to accessors - -FIXME - =head1 WARNINGS =head2 Methods in Catalyst::Dispatcher @@ -149,7 +198,7 @@ better API should look like. In this version of Catalyst, if a component is loaded from disk, but no symbols are defined in that component's namespace after it is loaded, this warning will be issued. -This is to pretect against confusing bugs caused by mis-typing package names. +This is to protect against confusing bugs caused by mis-typing package names. This will become a fatal error in a future version.