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