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