Not a Moose class, ergo we don't have a preinitialized metaclass instance, ergo Moose...
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Upgrading.pod
CommitLineData
8c57b129 1=head1 NAME
2
3Catalyst::Upgrading - Instructions for upgrading to the latest Catalyst
4
7e2ec16e 5=head1 Upgrading to Catalyst 5.80
6
5687c7f9 7Most applications and plugins should run unaltered on Catalyst 5.80.
7e2ec16e 8
1a98f036 9However as a lot of refactoring work has taken place, and several changes have
10been made which could cause incompatibilities. If your application or plugin
11is using deprecated code, or relying on side-effects, then you could have
ba03ccca 12issues upgrading to this release.
5687c7f9 13
e11cac87 14Most issues found with pre-existing components have been easy to solve, and a
ba03ccca 15complete description of behaviour changes which may cause compatibility issues,
1a98f036 16or warnings which are now emitted is included below to help if you have problems.
7e2ec16e 17
5687c7f9 18If you think you have found an upgrade related issue which is not covered in
19this document, then please email the Catalyst list to discuss the problem.
7e2ec16e 20
5687c7f9 21=head1 Known backwards compatibility breakages.
7e2ec16e 22
38f90e49 23=head2 Issues with Class::C3
24
25Catalyst 5.80 uses L<Algorithm::C3> method dispatch order. This is built into
26perl 5.10, and comes via L<Class::C3> for perl 5.8. This replaces L<NEXT>
27with L<Class::C3::Adopt::NEXT>, forcing all components to resolve methods using
28C3, rather than the unpredictable dispatch order of L<NEXT>.
29
5d06547d 30This issue is characterised by your application failing to start due to an
31error message about having a non-linear @ISA.
32
33The Catalyst plugin most often causing this, is
34L<Catalyst::Plugin::Session::Store::FastMmap> - if you are using this plugin
35and see issues, then please upgrade - and please try upgrading your plugins
36if you have this issue, as it has been fixed. Note that Makefile.PL in the
eaae9a92 37distribution will warn about known incompatible components.
5d06547d 38
39This issue can, however, be found in your own application - the only solution is
40to go through each base class of the class the error was reported against, until
41you identify the ones in conflict, and resolve them.
42
43To be able to generate a linear @ISA, the list of superclasses for each
44class must be resolvable using the C3 algorithm. Unfortunately, when
45superclasses are being used as mixins (to add functionality used in your class),
46and with multiple inheritence, it is easy to get this wrong.
38f90e49 47
48Most common is the case of:
49
50 package Component1; # Note, this is the common case
51 use base qw/Class::Accessor::Fast Class::Data::Inheritable/;
52
53 package Component2; # Accidentally saying it this way round causes fail.
54 use base qw/Class::Data::Inheritable Class::Accessor::Fast/;
55
56 package GoesBang;
57 use base qw/Component1 Component2/;
58
5d06547d 59Any situation like this will cause your application to fail to start.
38f90e49 60
5d06547d 61Please see additional documentation about this issue, and how to resolve it in
62L<Class::C3::Adopt::NEXT>.
38f90e49 63
6f04e56a 64=head2 Components which inherit from Moose::Object before Catalyst::Component
7e2ec16e 65
6f04e56a 66Moose components which say:
7e2ec16e 67
6f04e56a 68 package TestApp::Controller::Example;
69 use Moose;
845bfcd2 70 extends qw/Moose::Object Catalyst::Component/;
7e2ec16e 71
1a98f036 72to use the constructor provided by Moose, whilst working (if you do some hacks
73with the C< BUILDARGS > method), will not work with Catalyst 5.80 as
6f04e56a 74C<Catalyst::Component> inherits from C<Moose::Object>, and so C< @ISA > fails
25f61108 75to linearize.
6f04e56a 76
1a98f036 77The fix for this is to not inherit directly from C<Moose::Object>
6f04e56a 78yourself. Having components which do not inherit their constructor from
79C<Catalyst::Component> is B<unsupported>, and has never been recommended,
80therefore you're on your own if you're using this technique. You'll need
81to detect the version of Catalyst your application is running with and deal
82with it appropriately.
7e2ec16e 83
8566c0de 84You will also see this issue if you do the following:
85
6f04e56a 86 package TestApp::Controller::Example;
87 use Moose;
8566c0de 88 use base 'Catalyst::Controller';
89
90as C< use base > appends to @ISA.
91
6f04e56a 92The correct way to use Moose in a component in a both forward and backwards
93compatible way is:
94
95 package TestApp::Controller::Root;
96 use Moose;
97 BEGIN { extends 'Catalyst::Component' }; # Or ::Controller, or whatever
98
ba03ccca 99Note that the C< extends > declaration needs to occur in a begin block for
3df46b1b 100L<attributes> to operate correctly.
101
eaae9a92 102You also don't get the L<Moose::Object> constructor, and therefore attribute
103initialization will not work as normally expected. If you want to use Moose
3df46b1b 104attributes, then they need to be made lazy to correctly initialize.
105
106Note that this only applies if your component needs to maintain component
107backwards compatibility for Catalyst versions before 5.71001 - in 5.71001
108attributes work as expected, and the BUILD method is called normally
eaae9a92 109(although BUILDARGS is not).
3df46b1b 110
111If you depend on Catalyst 5.8, then B<all> Moose features work as expected.
8566c0de 112
e11cac87 113=head3 use Moose in MyApp
114
115Similar to the above, this will also fail:
116
117 package MyApp;
118 use Moose;
119 use Catalyst qw/
120 ConfigLoader
121 /;
122 __PACKAGE__->setup;
123
124If you need to use Moose in your application class (e.g. for method modifiers
125etc) then the correct technique is:
126
127 package MyApp;
128 use Moose;
129 extends 'Catalyst';
130 __PACKAGE__->setup(qw/
131 ConfigLoader
132 /);
133
04a48104 134=head2 Anonymous closures installed directly into the symbol table
135
136If you have any code which installs anonymous subroutine references directly
137into the symbol table, you may encounter breakages. The simplest solution is
138to use L<Sub::Name> to name the subroutine. Example:
139
e11cac87 140 # Original code, likely to break:
1a98f036 141 my $full_method_name = join('::', $package_name, $method_name);
04a48104 142 *$full_method_name = sub { ... };
143
e11cac87 144 # Fixed Code
04a48104 145 use Sub::Name 'subname';
146 my $full_method_name = join('::',$package_name, $method_name);
147 *$full_method_name = subname $full_method_name, sub { ... };
148
e11cac87 149Additionally, you can take advantage of Catalysts use of L<Class::MOP> and
25f61108 150install the closure using the appropriate meta class. Example:
04a48104 151
152 use Class::MOP;
153 my $metaclass = Moose::Meta::Class->initialize($package_name);
154 $metaclass->add_method($method_name => sub { ... });
155
780654ad 156=head2 Hooking into application setup
157
25f61108 158To execute code during application start-up the following snippet in MyApp.pm
780654ad 159used to work:
160
161 sub setup {
162 my ($class, @args) = @_;
163 $class->NEXT::setup(@args);
164 ... # things to do after the actual setup
165 }
166
1a98f036 167With Catalyst 5.80 this won't work anymore. Due to the fact that Catalyst is
168no longer using NEXT.pm for method resolution, this no longer works. The
169functionality was only ever originally operational as L<NEXT> remembers what
170methods have already been called, and will not call them again.
780654ad 171
1a98f036 172Using this now causes infinite recursion between MyApp::setup and
173Catalyst::setup, due to other backwards compatibility issues related to how
174plugin setup works. Moose method modifiers like C<< before|after|around 'setup
175=> sub { ... }; >> also will not operate correctly on the setup method.
780654ad 176
177The right way to do it is this:
178
179 after setup_finalize => sub {
180 ... # things to do after the actual setup
181 };
182
ade00972 183The setup_finalize hook was introduced as a way to avoid this issue.
1a98f036 184
e11cac87 185=head2 Components with a new method which returns false
7e2ec16e 186
8dd2f514 187Previously, if you had a component which inherited from Catalyst::COMPONENT,
e11cac87 188but overrode the new method to return false, then your class' configuration
8dd2f514 189would be blessed into a hash on your behalf, and this would be returned from
a87f5aa5 190the COMPONENT method.
7e2ec16e 191
e11cac87 192This behaviour makes no sense, and so has been removed. Implementing your own
1a98f036 193C< new > method in components is B<highly> discouraged, instead, you should
194inherit the new method from Catalyst::Component, and use Mooses BUILD
195functionality and/or Moose attributes to perform any construction work
196necessary for your class.
7e2ec16e 197
198=head2 __PACKAGE__->mk_accessor('meta');
199
e11cac87 200Won't work due to a limitation of L<Moose>. This is currently being fixed
201inside Moose.
7e2ec16e 202
203=head2 Class::Data::Inheritable side effects
204
8dd2f514 205Previously, writing to a class data accessor would copy the accessor method
206down into your package.
207
ba03ccca 208This behaviour has been removed. Whilst the class data is still stored
8dd2f514 209per-class, it is stored on the metaclass of the class defining the accessor.
7e2ec16e 210
8dd2f514 211Therefore anything relying on the side-effect of the accessor being copied down
212will be broken.
7e2ec16e 213
1a98f036 214The following test demonstrates the problem:
8dd2f514 215
216 {
217 package BaseClass;
218 use base qw/Class::Data::Inheritable/;
219 __PACKAGE__->mk_classdata('foo');
220 }
221
222 {
223 package Child;
224 use base qw/BaseClass/;
225 }
226
227 BaseClass->foo('base class');
228 Child->foo('sub class');
eaae9a92 229
e11cac87 230 use Test::More;
8dd2f514 231 isnt(BaseClass->can('foo'), Child->can('foo'));
7e2ec16e 232
5687c7f9 233=head2 Extending Catalyst::Request or other classes in an ad-hoc manor using mk_accessors
7e2ec16e 234
8dd2f514 235Previously, it was possible to add additional accessors to Catalyst::Request
236(or other classes) by calling the mk_accessors class method.
7e2ec16e 237
ba03ccca 238This is no longer supported - users should make a sub-class of the class whose
239behaviour they would like to change, rather than globally polluting the
e11cac87 240Catalyst objects.
8be895a7 241
10011c19 242=head2 Confused multiple inheritance with Catalyst::Component::COMPONENT
8be895a7 243
bcc773b9 244Previously, Catalyst's COMPONENT method would delegate to the method on the
245right hand side, which could then delegate back again with NEXT. This (as it
246is insane AND makes no sense with C3 method dispatch order), and is therefore
247no longer supported.
248
ba03ccca 249If a COMPONENT method is detected in the inheritance hierarchy to the right
bcc773b9 250hand side of Catalyst::Component::COMPONENT, then the following warning
251message will be emitted:
7e2ec16e 252
8dd2f514 253 There is a COMPONENT method resolving after Catalyst::Component
5687c7f9 254 in ${next_package}.
8dd2f514 255
bcc773b9 256The correct fix is to re-arrange your class' inheritance hierarchy so that the
257COMPONENT method you would like to inherit is the first (left-hand most)
258COMPONENT method in your @ISA.
7e2ec16e 259
c571d2c8 260=head1 WARNINGS
261
ade00972 262=head2 Catalyst::Base
263
264Any code using L<Catalyst::Base> will now warn, and this module will be removed
265in a future release.
266
c571d2c8 267=head2 Methods in Catalyst::Dispatcher
268
bcc773b9 269The following methods in Catalyst::Dispatcher are both an implementation
270detail, which may change in the 5.8X release series, and therefore their use
271is highly deprecated.
c571d2c8 272
273=over
274
8dd2f514 275=item tree
c571d2c8 276
8dd2f514 277=item dispatch_types
c571d2c8 278
8dd2f514 279=item registered_dispatch_types
c571d2c8 280
8dd2f514 281=item method_action_class
c571d2c8 282
8dd2f514 283=item action_hash
c571d2c8 284
285=item container_hash
286
287=back
288
289The first time one of these methods is called, a warning will be emitted:
7e2ec16e 290
bcc773b9 291 Class $class is calling the deprecated method Catalyst::Dispatcher::$public_method_name,
292 this will be removed in Catalyst 5.9X
7e2ec16e 293
c571d2c8 294You should B<NEVER> be calling any of these methods from application code.
295
ba03ccca 296Plugins authors and maintainers whose plugins currently call these methods
8f5a2bd9 297should change to using the public API, or, if you do not feel the public API
ba03ccca 298adequately supports your use-case, please email the development list to
8f5a2bd9 299discuss what API features you need so that you can be appropriately supported.
7e2ec16e 300
95b20422 301=head2 Class files with names that don't correspond to the packages they define
7e2ec16e 302
e11cac87 303In this version of Catalyst, if a component is loaded from disk, but no
ba03ccca 304symbols are defined in that component's name space after it is loaded, this
bcc773b9 305warning will be issued:
7e2ec16e 306
bcc773b9 307 require $class was successful but the package is not defined.
7e2ec16e 308
bcc773b9 309This is to protect against confusing bugs caused by mis-typing package names,
310and will become a fatal error in a future version.
311
312Please note that 'inner packages' (via L<Devel::InnerPackage>) are still fully
313supported, this warning is only issued when component file naming does not map
314to B<any> of the packages defined within that component.
7e2ec16e 315
5687c7f9 316=head2 $c->plugin method
317
25f61108 318Calling the plugin method is deprecated, and calling it at run time is B<highly
8dd2f514 319deprecated>.
7e2ec16e 320
8dd2f514 321Instead you are recommended to use L< Catalyst::Model::Adaptor > or similar to
ba03ccca 322compose the functionality you need outside of the main application name space.
7e2ec16e 323
4e68badc 324Calling the plugin method will not be supported past Catalyst 5.81.
bcc773b9 325
7e2ec16e 326=cut
4e68badc 327