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