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