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