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