Add built local::lib
[catagits/Gitalist.git] / local-lib5 / lib / perl5 / Catalyst / Upgrading.pod
CommitLineData
3fea05b9 1=head1 NAME
2
3Catalyst::Upgrading - Instructions for upgrading to the latest Catalyst
4
5=head1 Upgrading to Catalyst 5.80
6
7Most applications and plugins should run unaltered on Catalyst 5.80.
8
9However, a lot of refactoring work has taken place, and several changes have
10been made which could cause incompatibilities. If your application or plugin
11is using deprecated code, or relying on side effects, then you could have
12issues upgrading to this release.
13
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.
18
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.
21
22=head1 Moose features
23
24=head2 Application class roles
25
26You can only apply method modifiers after the application's C<< ->setup >>
27method has been called. This means that modifiers will not work with methods
28which run during the call to C<< ->setup >>.
29
30See L<Catalyst::Manual::ExtendingCatalyst> for more information about using
31L<Moose> in your applications.
32
33=head2 Controller actions in Moose roles
34
35You can use L<MooseX::MethodAttributes::Role> if you want to declare actions
36inside Moose roles.
37
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
49=head1 Known backwards compatibility breakages
50
51=head2 Applications in a single file
52
53Applications must be in their own file, and loaded at compile time. This
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.
58
59This is due to the fact that Catalyst is inlining a new method on your
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.
63
64=head2 Issues with Class::C3
65
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>.
71
72This issue is characterised by your application failing to start due to an
73error message about having a non-linear @ISA.
74
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.
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.
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
95 package Component2; # Accidentally saying it this way causes a failure
96 use base qw/Class::Data::Inheritable Class::Accessor::Fast/;
97
98 package GoesBang;
99 use base qw/Component1 Component2/;
100
101Any situation like this will cause your application to fail to start.
102
103For additional documentation about this issue, and how to resolve it, see
104L<Class::C3::Adopt::NEXT>.
105
106=head2 Components which inherit from Moose::Object before Catalyst::Component
107
108Moose components which say:
109
110 package TestApp::Controller::Example;
111 use Moose;
112 extends qw/Moose::Object Catalyst::Component/;
113
114to use the constructor provided by Moose, while working (if you do some hacks
115with the C< BUILDARGS > method), will not work with Catalyst 5.80 as
116C<Catalyst::Component> inherits from C<Moose::Object>, and so C< @ISA > fails
117to linearize.
118
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
126Note that the C< extends > declaration needs to occur in a begin block for
127L<attributes> to operate correctly.
128
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
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
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
143(although BUILDARGS is not).
144
145If you depend on Catalyst 5.8, then B<all> Moose features work as expected.
146
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
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
167etc.) then the correct technique is:
168
169 package MyApp;
170 use Moose;
171 use Catalyst;
172
173 extends 'Catalyst';
174
175 __PACKAGE__->config( name => 'MyApp' );
176 __PACKAGE__->setup(qw/
177 ConfigLoader
178 /);
179
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
186 # Original code, likely to break:
187 my $full_method_name = join('::', $package_name, $method_name);
188 *$full_method_name = sub { ... };
189
190 # Fixed Code
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
195Additionally, you can take advantage of Catalyst's use of L<Class::MOP> and
196install the closure using the appropriate metaclass. Example:
197
198 use Class::MOP;
199 my $metaclass = Moose::Meta::Class->initialize($package_name);
200 $metaclass->add_method($method_name => sub { ... });
201
202=head2 Hooking into application setup
203
204To execute code during application start-up, the following snippet in MyApp.pm
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
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.
217
218Using this now causes infinite recursion between MyApp::setup and
219Catalyst::setup, due to other backwards compatibility issues related to how
220plugin setup works. Moose method modifiers like C<< before|after|around 'setup
221=> sub { ... }; >> also will not operate correctly on the setup method.
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
229The setup_finalize hook was introduced as a way to avoid this issue.
230
231=head2 Components with a new method which returns false
232
233Previously, if you had a component which inherited from Catalyst::COMPONENT,
234but overrode the new method to return false, then your class's configuration
235would be blessed into a hash on your behalf, and this would be returned from
236the COMPONENT method.
237
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
241functionality and/or Moose attributes to perform any construction work
242necessary for your class.
243
244=head2 __PACKAGE__->mk_accessor('meta');
245
246Won't work due to a limitation of L<Moose>. This is currently being fixed
247inside Moose.
248
249=head2 Class::Data::Inheritable side effects
250
251Previously, writing to a class data accessor would copy the accessor method
252down into your package.
253
254This behavior has been removed. While the class data is still stored
255per-class, it is stored on the metaclass of the class defining the accessor.
256
257Therefore anything relying on the side effect of the accessor being copied down
258will be broken.
259
260The following test demonstrates the problem:
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');
275
276 use Test::More;
277 isnt(BaseClass->can('foo'), Child->can('foo'));
278
279=head2 Extending Catalyst::Request or other classes in an ad-hoc manner using mk_accessors
280
281Previously, it was possible to add additional accessors to Catalyst::Request
282(or other classes) by calling the mk_accessors class method.
283
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
286Catalyst objects.
287
288=head2 Confused multiple inheritance with Catalyst::Component::COMPONENT
289
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.
294
295If a COMPONENT method is detected in the inheritance hierarchy to the right
296hand side of Catalyst::Component::COMPONENT, then the following warning
297message will be emitted:
298
299 There is a COMPONENT method resolving after Catalyst::Component
300 in ${next_package}.
301
302The correct fix is to re-arrange your class's inheritance hierarchy so that the
303COMPONENT method you would like to inherit is the first (left-hand most)
304COMPONENT method in your @ISA.
305
306=head1 WARNINGS
307
308=head2 Actions in your application class
309
310Having actions in your application class will now emit a warning at application
311startup as this is deprecated. It is highly recommended that these actions are moved
312into a MyApp::Controller::Root (as demonstrated by the scaffold application
313generated by catalyst.pl).
314
315This warning, also affects tests. You should move actions in your test,
316creating a myTest::Controller::Root, like the following example:
317
318 package MyTest::Controller::Root;
319
320 use strict;
321 use warnings;
322
323 use parent 'Catalyst::Controller';
324
325 __PACKAGE__->config(namespace => '');
326
327 sub action : Local {
328 my ( $self, $c ) = @_;
329 $c->do_something;
330 }
331
332 1;
333
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
345=head2 Catalyst::Base
346
347Any code using L<Catalyst::Base> will now emit a warning; this
348module will be removed in a future release.
349
350=head2 Methods in Catalyst::Dispatcher
351
352The following methods in Catalyst::Dispatcher are implementation
353details, which may change in the 5.8X release series, and therefore their use
354is highly deprecated.
355
356=over
357
358=item tree
359
360=item dispatch_types
361
362=item registered_dispatch_types
363
364=item method_action_class
365
366=item action_hash
367
368=item container_hash
369
370=back
371
372The first time one of these methods is called, a warning will be emitted:
373
374 Class $class is calling the deprecated method Catalyst::Dispatcher::$public_method_name,
375 this will be removed in Catalyst 5.9X
376
377You should B<NEVER> be calling any of these methods from application code.
378
379Plugin authors and maintainers whose plugins currently call these methods
380should change to using the public API, or, if you do not feel the public API
381adequately supports your use case, please email the development list to
382discuss what API features you need so that you can be appropriately supported.
383
384=head2 Class files with names that don't correspond to the packages they define
385
386In this version of Catalyst, if a component is loaded from disk, but no
387symbols are defined in that component's name space after it is loaded, this
388warning will be issued:
389
390 require $class was successful but the package is not defined.
391
392This is to protect against confusing bugs caused by mistyping package names,
393and will become a fatal error in a future version.
394
395Please note that 'inner packages' (via L<Devel::InnerPackage>) are still fully
396supported; this warning is only issued when component file naming does not map
397to B<any> of the packages defined within that component.
398
399=head2 $c->plugin method
400
401Calling the plugin method is deprecated, and calling it at run time is B<highly
402deprecated>.
403
404Instead you are recommended to use L<Catalyst::Model::Adaptor> or similar to
405compose the functionality you need outside of the main application name space.
406
407Calling the plugin method will not be supported past Catalyst 5.81.
408
409=cut
410