Fixes to pass podchecker OK
[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, 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
15 solve. This document provides a complete description of behavior changes
16 which may cause compatibility issues, and of new Catalyst warnings which
17 be unclear.
18
19 If you think you have found an upgrade-related issue which is not covered in
20 this document, please email the Catalyst list to discuss the problem.
21
22 =head1 Moose features
23
24 =head2 Application class roles
25
26 You can only apply method modifiers after the application's C<< ->setup >>
27 method has been called. This means that modifiers will not work with methods
28 which run during the call to C<< ->setup >>.
29
30 See L<Catalyst::Manual::ExtendingCatalyst> for more information about using
31 L<Moose> in your applications.
32
33 =head2 Controller actions in Moose roles
34
35 You can use L<MooseX::MethodAttributes::Role> if you want to declare actions
36 inside Moose roles.
37
38 =head2 Using Moose in Components
39
40 The correct way to use Moose in a component in a both forward and backwards
41 compatible way is:
42
43     package TestApp::Controller::Root;
44     use Moose;
45     BEGIN { extends 'Catalyst::Component' }; # Or ::Controller, or whatever
46
47 See L<Components which inherit from Moose::Object before Catalyst::Component>.
48
49 =head1 Known backwards compatibility breakages
50
51 =head2 Applications in a single file
52
53 Applications must be in their own file, and loaded at compile time. This
54 issue generally only affects the tests of CPAN distributions. Your
55 application will fail if you try to define an application inline in a
56 block, and use plugins which supply a C< new > method, then use that
57 application latter in tests within the same file.
58
59 This is due to the fact that Catalyst is inlining a new method on your
60 application class allowing it to be compatible with Moose. The method
61 used to do this changed in 5.80004 to avoid the possibility of reporting
62 an 'Unknown Error' if your application failed to compile.
63
64 =head2 Issues with Class::C3
65
66 Catalyst 5.80 uses the L<Algorithm::C3> method dispatch order. This is
67 built into Perl 5.10, and comes via L<Class::C3> for Perl 5.8. This
68 replaces L<NEXT> with L<Class::C3::Adopt::NEXT>, forcing all components
69 to resolve methods using C3, rather than the unpredictable dispatch
70 order of L<NEXT>.
71
72 This issue is characterised by your application failing to start due to an
73 error message about having a non-linear @ISA.
74
75 The Catalyst plugin most often causing this is
76 L<Catalyst::Plugin::Session::Store::FastMmap> - if you are using this
77 plugin and see issues, then please upgrade your plugins, as it has been
78 fixed. Note that Makefile.PL in the distribution will warn about known
79 incompatible components.
80
81 This issue can, however, be found in your own application - the only solution is
82 to go through each base class of the class the error was reported against, until
83 you identify the ones in conflict, and resolve them.
84
85 To be able to generate a linear @ISA, the list of superclasses for each
86 class must be resolvable using the C3 algorithm. Unfortunately, when
87 superclasses are being used as mixins (to add functionality used in your class),
88 and with multiple inheritence, it is easy to get this wrong.
89
90 Most common is the case of:
91
92     package Component1; # Note, this is the common case
93     use base qw/Class::Accessor::Fast Class::Data::Inheritable/;
94
95     package Component2; # Accidentally saying it this way causes a failure
96     use base qw/Class::Data::Inheritable Class::Accessor::Fast/;
97
98     package GoesBang;
99     use base qw/Component1 Component2/;
100
101 Any situation like this will cause your application to fail to start.
102
103 For additional documentation about this issue, and how to resolve it, see
104 L<Class::C3::Adopt::NEXT>.
105
106 =head2 Components which inherit from Moose::Object before Catalyst::Component
107
108 Moose components which say:
109
110     package TestApp::Controller::Example;
111     use Moose;
112     extends qw/Moose::Object Catalyst::Component/;
113
114 to use the constructor provided by Moose, while working (if you do some hacks
115 with the C< BUILDARGS > method), will not work with Catalyst 5.80 as
116 C<Catalyst::Component> inherits from C<Moose::Object>, and so C< @ISA > fails
117 to linearize.
118
119 The correct way to use Moose in a component in a both forward and backwards
120 compatible way is:
121
122     package TestApp::Controller::Root;
123     use Moose;
124     BEGIN { extends 'Catalyst::Component' }; # Or ::Controller, or whatever
125
126 Note that the C< extends > declaration needs to occur in a begin block for
127 L<attributes> to operate correctly.
128
129 This way you do not inherit directly from C<Moose::Object>
130 yourself. Having components which do not inherit their constructor from
131 C<Catalyst::Component> is B<unsupported>, and has never been recommended,
132 therefore you're on your own if you're using this technique. You'll need
133 to detect the version of Catalyst your application is running, and deal
134 with it appropriately.
135
136 You also don't get the L<Moose::Object> constructor, and therefore attribute
137 initialization will not work as normally expected. If you want to use Moose
138 attributes, then they need to be made lazy to correctly initialize.
139
140 Note that this only applies if your component needs to maintain component
141 backwards compatibility for Catalyst versions before 5.71001 - in 5.71001
142 attributes work as expected, and the BUILD method is called normally
143 (although BUILDARGS is not).
144
145 If you depend on Catalyst 5.8, then B<all> Moose features work as expected.
146
147 You will also see this issue if you do the following:
148
149     package TestApp::Controller::Example;
150     use Moose;
151     use base 'Catalyst::Controller';
152
153 as C< use base > appends to @ISA.
154
155 =head3 use Moose in MyApp
156
157 Similar to the above, this will also fail:
158
159     package MyApp;
160     use Moose;
161     use Catalyst qw/
162       ConfigLoader
163     /;
164     __PACKAGE__->setup;
165
166 If you need to use Moose in your application class (e.g. for method modifiers
167 etc.) then the correct technique is:
168
169     package MyApp;
170     use Moose;
171     use Catalyst;
172
173     extends 'Catalyst';
174
175     __PACKAGE__->config( name => 'MyApp' );
176     __PACKAGE__->setup(qw/
177         ConfigLoader
178     /);
179
180 =head2 Anonymous closures installed directly into the symbol table
181
182 If you have any code which installs anonymous subroutine references directly
183 into the symbol table, you may encounter breakages. The simplest solution is
184 to use L<Sub::Name> to name the subroutine. Example:
185
186     # Original code, likely to break:
187     my $full_method_name = join('::', $package_name, $method_name);
188     *$full_method_name = sub { ... };
189
190     # Fixed Code
191     use Sub::Name 'subname';
192     my $full_method_name = join('::',$package_name, $method_name);
193     *$full_method_name = subname $full_method_name, sub { ... };
194
195 Additionally, you can take advantage of Catalyst's use of L<Class::MOP> and
196 install the closure using the appropriate metaclass. Example:
197
198     use Class::MOP;
199     my $metaclass = Moose::Meta::Class->initialize($package_name);
200     $metaclass->add_method($method_name => sub { ... });
201
202 =head2 Hooking into application setup
203
204 To execute code during application start-up, the following snippet in MyApp.pm
205 used to work:
206
207     sub setup {
208         my ($class, @args) = @_;
209         $class->NEXT::setup(@args);
210         ... # things to do after the actual setup
211     }
212
213 With Catalyst 5.80 this won't work anymore, because Catalyst no longer
214 uses NEXT.pm for method resolution. The functionality was only ever
215 originally operational as L<NEXT> remembers what methods have already
216 been called, and will not call them again.
217
218 Using this now causes infinite recursion between MyApp::setup and
219 Catalyst::setup, due to other backwards compatibility issues related to how
220 plugin setup works. Moose method modifiers like C<< before|after|around 'setup
221 => sub { ... }; >> also will not operate correctly on the setup method.
222
223 The right way to do it is this:
224
225     after setup_finalize => sub {
226         ... # things to do after the actual setup
227     };
228
229 The setup_finalize hook was introduced as a way to avoid this issue.
230
231 =head2 Components with a new method which returns false
232
233 Previously, if you had a component which inherited from Catalyst::COMPONENT,
234 but overrode the new method to return false, then your class's configuration
235 would be blessed into a hash on your behalf, and this would be returned from
236 the COMPONENT method.
237
238 This behavior makes no sense, and so has been removed. Implementing your own
239 C< new > method in components is B<highly> discouraged. Instead, you should
240 inherit the new method from Catalyst::Component, and use Moose's BUILD
241 functionality and/or Moose attributes to perform any construction work
242 necessary for your class.
243
244 =head2 __PACKAGE__->mk_accessor('meta');
245
246 Won't work due to a limitation of L<Moose>. This is currently being fixed
247 inside Moose.
248
249 =head2 Class::Data::Inheritable side effects
250
251 Previously, writing to a class data accessor would copy the accessor method
252 down into your package.
253
254 This behavior has been removed. While the class data is still stored
255 per-class, it is stored on the metaclass of the class defining the accessor.
256
257 Therefore anything relying on the side effect of the accessor being copied down
258 will be broken.
259
260 The following test demonstrates the problem:
261
262     {
263         package BaseClass;
264         use base qw/Class::Data::Inheritable/;
265         __PACKAGE__->mk_classdata('foo');
266     }
267
268     {
269         package Child;
270         use base qw/BaseClass/;
271     }
272
273     BaseClass->foo('base class');
274     Child->foo('sub class');
275
276     use Test::More;
277     isnt(BaseClass->can('foo'), Child->can('foo'));
278
279 =head2 Extending Catalyst::Request or other classes in an ad-hoc manner using mk_accessors
280
281 Previously, it was possible to add additional accessors to Catalyst::Request
282 (or other classes) by calling the mk_accessors class method.
283
284 This is no longer supported - users should make a subclass of the class whose
285 behavior they would like to change, rather than globally polluting the
286 Catalyst objects.
287
288 =head2 Confused multiple inheritance with Catalyst::Component::COMPONENT
289
290 Previously, Catalyst's COMPONENT method would delegate to the method on
291 the right hand side, which could then delegate back again with
292 NEXT. This is poor practice, and in addition, makes no sense with C3
293 method dispatch order, and is therefore no longer supported.
294
295 If a COMPONENT method is detected in the inheritance hierarchy to the right
296 hand side of Catalyst::Component::COMPONENT, then the following warning
297 message will be emitted:
298
299     There is a COMPONENT method resolving after Catalyst::Component
300     in ${next_package}.
301
302 The correct fix is to re-arrange your class's inheritance hierarchy so that the
303 COMPONENT method you would like to inherit is the first (left-hand most)
304 COMPONENT method in your @ISA.
305
306 =head1 WARNINGS
307
308 =head2 Actions in your application class
309
310 Having actions in your application class will now emit a warning at application
311 startup as this is deprecated. It is highly recommended that these actions are moved
312 into a MyApp::Controller::Root (as demonstrated by the scaffold application
313 generated by catalyst.pl). 
314
315 This warning, also affects tests. You should move actions in your test,
316 creating a myTest::Controller::Root, like the following example:
317
318     package MyTest::Controller::Root;
319
320     use strict;
321     use warnings;
322
323     use parent 'Catalyst::Controller';
324
325     __PACKAGE__->config(namespace => '');
326
327     sub action : Local {
328         my ( $self, $c ) = @_;
329         $c->do_something; 
330     }
331
332     1;
333
334 =head2 ::[MVC]:: naming scheme
335
336 Having packages called MyApp::[MVC]::XX is deprecated and can no longer be generated
337 by catalyst.pl
338
339 This is still supported, but it is recommended that you rename your application
340 components to Model/View/Controller.
341
342 A warning will be issued at application startup if the ::[MVC]:: naming scheme is
343 in use.
344
345 =head2 Catalyst::Base
346
347 Any code using L<Catalyst::Base> will now emit a warning; this
348 module will be removed in a future release.
349
350 =head2 Methods in Catalyst::Dispatcher
351
352 The following methods in Catalyst::Dispatcher are implementation
353 details, which may change in the 5.8X release series, and therefore their use
354 is highly deprecated.
355
356 =over
357
358 =item tree
359
360 =item dispatch_types
361
362 =item registered_dispatch_types
363
364 =item method_action_class
365
366 =item action_hash
367
368 =item container_hash
369
370 =back
371
372 The first time one of these methods is called, a warning will be emitted:
373
374     Class $class is calling the deprecated method Catalyst::Dispatcher::$public_method_name,
375     this will be removed in Catalyst 5.9X
376
377 You should B<NEVER> be calling any of these methods from application code.
378
379 Plugin authors and maintainers whose plugins currently call these methods
380 should change to using the public API, or, if you do not feel the public API
381 adequately supports your use case, please email the development list to
382 discuss what API features you need so that you can be appropriately supported.
383
384 =head2 Class files with names that don't correspond to the packages they define
385
386 In this version of Catalyst, if a component is loaded from disk, but no
387 symbols are defined in that component's name space after it is loaded, this
388 warning will be issued:
389
390     require $class was successful but the package is not defined.
391
392 This is to protect against confusing bugs caused by mistyping package names,
393 and will become a fatal error in a future version.
394
395 Please note that 'inner packages' (via L<Devel::InnerPackage>) are still fully
396 supported; this warning is only issued when component file naming does not map
397 to B<any> of the packages defined within that component.
398
399 =head2 $c->plugin method
400
401 Calling the plugin method is deprecated, and calling it at run time is B<highly
402 deprecated>.
403
404 Instead you are recommended to use L<Catalyst::Model::Adaptor> or similar to
405 compose the functionality you need outside of the main application name space.
406
407 Calling the plugin method will not be supported past Catalyst 5.81.
408
409 =cut
410