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