prep for release
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Upgrading.pod
CommitLineData
8c57b129 1=head1 NAME
2
3Catalyst::Upgrading - Instructions for upgrading to the latest Catalyst
4
e5ac67e5 5=head1 Upgrading to Catalyst 5.90100
6
7The method C<last_error> in L</Catalyst> was actually returning the first error. This has
8been fixed but there is a small chance it could be a breaking issue for you. If this gives
9you trouble changing to C<shift_errors> is the easiest workaround (although that does
10modify the error stack so if you are relying on that not being changed you should try something
11like @{$c->errors}[-1] instead. Since this method is relatively new and the cases when the
12error stack actually has more than one error in it, we feel the exposure is very low, but bug
13reports are very welcomed.
14
ec4d7259 15=head1 Upgrading to Catalyst 5.90090
16
17L<Catalyst::Utils> has a new method 'inject_component' which works the same as the method of
18the same name in L<CatalystX::InjectComponent>. You should start converting any
19use of the non core method in your code as future changes to Catalyst will be
20sychronized to the core method first. We reserve the right to cease support
21of the non core version should we reach a point in time where it cannot be
22properly supported as an external module. Luckily this should be a trivial
23search and replace. Change all occurances of:
24
25 CatalystX::InjectComponent->inject(...)
26
27Into
28
29 Catalyst::Utils::inject_component(...)
30
31and we expect everything to work the same (we'd consider it not working the same
32to be a bug, and please report it.)
33
a791afa9 34We also cored features from L<CatalystX::RoleApplicator> to compose a role into the
35request, response and stats classes. The main difference is that with L<CatalystX::RoleApplicator>
36you did:
37
38 package MyApp;
39
40 use Catalyst;
41 use CatalystX::RoleApplicator;
42
43 __PACKAGE__->apply_request_class_roles(
44 qw/My::Request::Role Other::Request::Role/);
45
46Whereas now we have three class attributes, 'request_class_traits', 'response_class_traits'
47and 'stats_class_traits', so you use like this (note this value is an ArrayRef)
48
49
50 package MyApp;
51
52 use Catalyst;
53
54 __PACKAGE__->request_class_traits([qw/
55 My::Request::Role
56 Other::Request::Role/]);
57
58(And the same for response_class_traits and stats_class_traits. We left off the
59traits for Engine, since that class does a lot less nowadays, and dispatcher. If you
60used those and can share a use case, we'd be likely to support them.
61
3e560748 62Lastly, we have some of the feature from L<CatalystX::ComponentsFromConfig> in
63core. This should mostly work the same way in core, except for now the
64core version does not create an automatic base wrapper class for your configured
65components (it requires these to be catalyst components and injects them directly.
66So if you make heavy use of custom base classes in L<CatalystX::ComponentsFromConfig>
67you might need a bit of work to use the core version (although there is no reason
68to stop using L<CatalystX::ComponentsFromConfig> since it should continue to work
69fine and we'd consider issues with it to be bugs). Here's one way to map from
70L<CatalystX::ComponentsFromConfig> to core:
71
72In L<CatalystX::ComponentsFromConfig>:
73
74 MyApp->config(
75 'Model::MyClass' => {
044e7667 76 class => 'MyClass',
77 args => { %args },
3e560748 78
79 });
80
044e7667 81and now in core:
82
83 MyApp->config(
84 inject_components => {
85 'Model::MyClass' => { from_component => 'My::Class' },
86 },
87 'Model::MyClass' => {
88 %args
89 },
90 );
91
92Although the cored behavior requires more code, its better separates concerns
93as well as plays more into core Catalyst expections of how configuration shoul
94look.
3e560748 95
96Also we added a new develop console mode only warning when you call a component
97with arguments that don't expect or do anything meaningful with those args. Its
98possible if you are logging debug mode in production (please don't...) this
99could add verbosity to those logs if you also happen to be calling for components
100and passing pointless arguments. We added this warning to help people not make this
101error and to better understand the component resolution flow.
102
7a504990 103=head1 Upgrading to Catalyst 5.90085
104
105In this version of Catalyst we made a small change to Chained Dispatching so
106that when two or more actions all have the same path specification AND they
107all have Args(0), we break the tie by choosing the last action defined, and
108not the first one defined. This was done to normalize Chaining to following
109the 'longest Path wins, and when several actions match the same Path specification
110we choose the last defined.' rule. Previously Args(0) was hard coded to be a special
111case such that the first action defined would match (which is not the case when
112Args is not zero.)
113
114Its possible that this could be a breaking change for you, if you had used
115action roles (custom or otherwise) to add additional matching rules to differentiate
116between several Args(0) actions that share the same root action chain. For
117example if you have code now like this:
118
119 sub check_default :Chained(/) CaptureArgs(0) { ... }
120
121 sub default_get :Chained('check_default') PathPart('') Args(0) GET {
122 pop->res->body('get3');
123 }
124
125 sub default_post :Chained('check_default') PathPart('') Args(0) POST {
126 pop->res->body('post3');
127 }
128
129 sub chain_default :Chained('check_default') PathPart('') Args(0) {
130 pop->res->body('chain_default');
131 }
132
133The way that chaining will work previous is that when two or more equal actions can
134match, the 'top' one wins. So if the request is "GET .../check_default" BOTH
135actions 'default_get' AND 'chain_default' would match. To break the tie in
136the case when Args is 0, we'd previous take the 'top' (or first defined) action.
137Unfortunately this treatment of Args(0) is special case. In all other cases
138we choose the 'last defined' action to break a tie. So this version of
139Catalyst changed the dispatcher to make Args(0) no longer a special case for
140breaking ties. This means that the above code must now become:
141
142 sub check_default :Chained(/) CaptureArgs(0) { ... }
143
144 sub chain_default :Chained('check_default') PathPart('') Args(0) {
145 pop->res->body('chain_default');
146 }
147
148 sub default_get :Chained('check_default') PathPart('') Args(0) GET {
149 pop->res->body('get3');
150 }
151
152 sub default_post :Chained('check_default') PathPart('') Args(0) POST {
153 pop->res->body('post3');
154 }
155
156If we want it to work as expected (for example we we GET to match 'default_get' and
157POST to match 'default_post' and any other http Method to match 'chain_default').
158
159In other words Arg(0) and chained actions must now follow the normal rule where
160in a tie the last defined action wins and you should place all your less defined
161or 'catch all' actions first.
162
163If this causes you trouble and you can't fix your code to conform, you may set the
164application configuration setting "use_chained_args_0_special_case" to true and
165that will revert you code to the previous behavior.
166
6cf77e11 167=head2 More backwards compatibility options with UTF-8 changes
168
169In order to give better backwards compatiblity with the 5.90080+ UTF-8 changes
170we've added several configuration options around control of how we try to decode
171your URL keywords / query parameters.
172
173C<do_not_decode_query>
174
175If true, then do not try to character decode any wide characters in your
176request URL query or keywords. Most readings of the relevent specifications
177suggest these should be UTF-* encoded, which is the default that L<Catalyst>
178will use, hwoever if you are creating a lot of URLs manually or have external
179evil clients, this might cause you trouble. If you find the changes introduced
180in Catalyst version 5.90080+ break some of your query code, you may disable
181the UTF-8 decoding globally using this configuration.
182
183This setting takes precedence over C<default_query_encoding> and
184C<decode_query_using_global_encoding>
185
186C<default_query_encoding>
187
188By default we decode query and keywords in your request URL using UTF-8, which
189is our reading of the relevent specifications. This setting allows one to
190specify a fixed value for how to decode your query. You might need this if
191you are doing a lot of custom encoding of your URLs and not using UTF-8.
192
193This setting take precedence over C<decode_query_using_global_encoding>.
194
195C<decode_query_using_global_encoding>
196
197Setting this to true will default your query decoding to whatever your
198general global encoding is (the default is UTF-8).
199
200
b8b29bac 201=head1 Upgrading to Catalyst 5.90080
202
203UTF8 encoding is now default. For temporary backwards compatibility, if this
204change is causing you trouble, you can disable it by setting the application
205configuration option to undef:
206
207 MyApp->config(encoding => undef);
208
209But please consider this a temporary measure since it is the intention that
210UTF8 is enabled going forwards and the expectation is that other ecosystem
211projects will assume this as well. At some point you application will not
212correctly function without this setting.
213
0d94e986 214As of 5.90084 we've added two additional configuration flags for more selective
215control over some encoding changes: 'skip_body_param_unicode_decoding' and
216'skip_complex_post_part_handling'. You may use these to more selectively
217disable new features while you are seeking a long term fix. Please review
218CONFIGURATION in L<Catalyst>.
219
d63cc9c8 220For further information, please see L<Catalyst::UTF8>
221
b8b29bac 222A number of projects in the wider ecosystem required minor updates to be able
223to work correctly. Here's the known list:
224
225L<Catalyst::View::TT>, L<Catalyst::View::Mason>, L<Catalyst::View::HTML::Mason>,
226L<Catalyst::View::Xslate>, L<Test::WWW::Mechanize::Catalyst>
227
228You will need to update to modern versions in most cases, although quite a few
229of these only needed minor test case and documentation changes so you will need
230to review the changelog of each one that is relevant to you to determine your
231true upgrade needs.
232
78acc1f7 233=head1 Upgrading to Catalyst 5.90060
234
235Starting in the v5.90059_001 development release, the regexp dispatch type is
236no longer automatically included as a dependency. If you are still using this
237dispatch type, you need to add L<Catalyst::DispatchType::Regex> into your build
238system.
239
240The standalone distribution of Regexp will be supported for the time being, but
241should we find that supporting it prevents us from moving L<Catalyst> forward
242in necessary ways, we reserve the right to drop that support. It is highly
243recommended that you use this last stage of deprecation to change your code.
244
ba7766f8 245=head1 Upgrading to Catalyst 5.90040
717fc5c9 246
8275d3b9 247=head2 Catalyst::Plugin::Unicode::Encoding is now core
248
249The previously stand alone Unicode support module L<Catalyst::Plugin::Unicode::Encoding>
250has been brought into core as a default plugin. Going forward, all you need is
251to add a configuration setting for the encoding type. For example:
252
253 package Myapp::Web;
254
255 use Catalyst;
256
257 __PACKAGE__->config( encoding => 'UTF-8' );
258
259Please note that this is different from the old stand alone plugin which applied
260C<UTF-8> encoding by default (that is, if you did not set an explicit
5fa5b709 261C<encoding> configuration value, it assumed you wanted UTF-8). In order to
8275d3b9 262preserve backwards compatibility you will need to explicitly turn it on via the
263configuration setting. THIS MIGHT CHANGE IN THE FUTURE, so please consider
264starting to test your application with proper UTF-8 support and remove all those
265crappy hacks you munged into the code because you didn't know the Plugin
266existed :)
267
268For people that are using the Plugin, you will note a startup warning suggesting
269that you can remove it from the plugin list. When you do so, please remember to
270add the configuration setting, since you can no longer rely on the default being
271UTF-8. We'll add it for you if you continue to use the stand alone plugin and
272we detect this, but this backwards compatibility shim will likely be removed in
273a few releases (trying to clean up the codebase after all).
274
275If you have trouble with any of this, please bring it to the attention of the
276Catalyst maintainer group.
277
278=head2 basic async and event loop support
279
717fc5c9 280This version of L<Catalyst> offers some support for using L<AnyEvent> and
e37f92f5 281L<IO::Async> event loops in your application. These changes should work
282fine for most applications however if you are already trying to perform
283some streaming, minor changes in this area of the code might affect your
4e6e0ab2 284functionality. Please see L<Catalyst::Response\write_fh> for more and for a
285basic example.
8275d3b9 286
287We consider this feature experimental. We will try not to break it, but we
288reserve the right to make necessary changes to fix major issues that people
289run into when the use this functionality in the wild.
717fc5c9 290
ba7766f8 291=head1 Upgrading to Catalyst 5.90030
292
293=head2 Regex dispatch type is deprecated.
294
295The Regex dispatchtype (L<Catalyst::DispatchType::Regex>) has been deprecated.
296
297You are encouraged to move your application to Chained dispatch (L<Catalyst::DispatchType::Chained>).
298
299If you cannot do so, please add a dependency to Catalyst::DispatchType::Regex to your application's
300Makefile.PL
301
dacd8b0e 302=head1 Upgrading to Catalyst 5.9
5d5f4a73 303
e6006848 304The major change is that L<Plack>, a toolkit for using the L<PSGI>
862a7989 305specification, now replaces most of the subclasses of L<Catalyst::Engine>. If
e6006848 306you are using one of the standard subclasses of L<Catalyst::Engine> this
307should be a straightforward upgrade for you. It was a design goal for
308this release to preserve as much backwards compatibility as possible.
309However, since L<Plack> is different from L<Catalyst::Engine>, it is
310possible that differences exist for edge cases. Therefore, we recommend
311that care be taken with this upgrade and that testing should be greater
312than would be the case with a minor point update. Please inform the
313Catalyst developers of any problems so that we can fix them and
314incorporate tests.
5d5f4a73 315
773b3b08 316It is highly recommended that you become familiar with the L<Plack> ecosystem
ae908e7e 317and documentation. Being able to take advantage of L<Plack> development and
318middleware is a major bonus to this upgrade. Documentation about how to
319take advantage of L<Plack::Middleware> by writing your own C<< .psgi >> file
320is contained in L<Catalyst::PSGI>.
5d5f4a73 321
e6006848 322If you have created a custom subclass of L<Catalyst:Engine>, you will
323need to convert it to be a subclass of L<Plack::Handler>.
5d5f4a73 324
325If you are using the L<Plack> engine, L<Catalyst::Engine::PSGI>, this new
773b3b08 326release supersedes that code.
5d5f4a73 327
e6006848 328If you are using a subclass of L<Catalyst::Engine> that is aimed at
329nonstandard or internal/testing uses, such as
330L<Catalyst::Engine::Embeddable>, you should still be able to continue
331using that engine.
5d5f4a73 332
333Advice for specific subclasses of L<Catalyst::Engine> follows:
334
93d60cae 335=head2 Upgrading the FastCGI Engine
5d5f4a73 336
e6006848 337No upgrade is needed if your myapp_fastcgi.pl script is already upgraded
338to use L<Catalyst::Script::FastCGI>.
5d5f4a73 339
93d60cae 340=head2 Upgrading the mod_perl / Apache Engines
5d5f4a73 341
e6006848 342The engines that are built upon the various iterations of mod_perl,
14148e06 343L<Catalyst::Engine::Apache::MP13> (for mod_perl 1, and Apache 1.x) and
862a7989 344L<Catalyst::Engine::Apache2::MP20> (for mod_perl 2, and Apache 2.x),
bd85860b 345should be seamless upgrades and will work using L<Plack::Handler::Apache1>
14148e06 346or L<Plack::Handler::Apache2> as required.
5d5f4a73 347
e6006848 348L<Catalyst::Engine::Apache2::MP19>, however, is no longer supported, as
862a7989 349Plack does not support mod_perl version 1.99. This is unlikely to be a
350problem for anyone, as 1.99 was a brief beta-test release for mod_perl
3512, and all users of mod_perl 1.99 are encouraged to upgrade to a
352supported release of Apache 2 and mod_perl 2.
5d5f4a73 353
93d60cae 354=head2 Upgrading the HTTP Engine
5d5f4a73 355
040835f0 356The default development server that comes with the L<Catalyst> distribution
357should continue to work as expected with no changes as long as your C<myapp_server>
358script is upgraded to use L<Catalyst::Script::HTTP>.
5d5f4a73 359
93d60cae 360=head2 Upgrading the CGI Engine
5d5f4a73 361
697a3e9e 362If you were using L<Catalyst::Engine::CGI> there is no upgrade needed if your
e6006848 363myapp_cgi.pl script is already upgraded to use L<Catalyst::Script::CGI>.
5d5f4a73 364
cf8eab35 365=head2 Upgrading Catalyst::Engine::HTTP::Prefork
5d5f4a73 366
040835f0 367If you were using L<Catalyst::Engine::HTTP::Prefork> then L<Starman>
da9eab5a 368is automatically loaded. You should (at least) change your C<Makefile.PL>
369to depend on Starman.
0ea8962d 370
da9eab5a 371You can regenerate your C<myapp_server.pl> script with C<catalyst.pl>
372and implement a C<MyApp::Script::Server> class that looks like this:
373
374 package MyApp::Script::Server;
375 use Moose;
376 use namespace::autoclean;
377
378 extends 'CatalystX::Script::Server::Starman';
379
380 1;
381
e6006848 382This takes advantage of the new script system, and will add a number of
383options to the standard server script as extra options are added by
384Starman.
da9eab5a 385
386More information about these options can be seen at
387L<CatalystX::Script::Server::Starman/SYNOPSIS>.
388
389An alternate route to implement this functionality is to write a simple .psgi
e6006848 390file for your application, and then use the L<plackup> utility to start the
da9eab5a 391server.
5d5f4a73 392
93d60cae 393=head2 Upgrading the PSGI Engine
5d5f4a73 394
e6006848 395If you were using L<Catalyst::Engine::PSGI>, this new release supersedes
396this engine in supporting L<Plack>. By default the Engine is now always
397L<Plack>. As a result, you can remove the dependency on
398L<Catalyst::Engine::PSGI> in your C<Makefile.PL>.
8f912f0b 399
400Applications that were using L<Catalyst::Engine::PSGI>
401previously should entirely continue to work in this release with no changes.
402
e6006848 403However, if you have an C<app.psgi> script, then you no longer need to
404specify the PSGI engine. Instead, the L<Catalyst> application class now
405has a new method C<psgi_app> which returns a L<PSGI> compatible coderef
406which you can wrap in the middleware of your choice.
8f912f0b 407
408Catalyst will use the .psgi for your application if it is located in the C<home>
e6006848 409directory of the application.
697a3e9e 410
93a57b4b 411For example, if you were using L<Catalyst::Engine::PSGI> in the past, you will
8f912f0b 412have written (or generated) a C<script/myapp.psgi> file similar to this one:
697a3e9e 413
414 use Plack::Builder;
415 use MyCatalytApp;
416
417 MyCatalystApp->setup_engine('PSGI');
418
419 builder {
420 enable ... # enable your desired middleware
421 sub { MyCatalystApp->run(@_) };
422 };
423
8f912f0b 424Instead, you now say:
697a3e9e 425
426 use Plack::Builder;
427 use MyCatalystApp;
428
429 builder {
430 enable ... #enable your desired middleware
75d68821 431 MyCatalystApp->psgi_app;
697a3e9e 432 };
5d5f4a73 433
34effbc7 434In the simplest case:
8f912f0b 435
34effbc7 436 MyCatalystApp->setup_engine('PSGI');
437 my $app = sub { MyCatalystApp->run(@_) }
438
439becomes
440
34effbc7 441 my $app = MyCatalystApp->psgi_app(@_);
442
443B<NOT>:
444
445 my $app = sub { MyCatalystApp->psgi_app(@_) };
446 # If you make ^^ this mistake, your app won't work, and will confuse the hell out of you!
447
e6006848 448You can now move C<< script/myapp.psgi >> to C<< myapp.psgi >>, and the built-in
773b3b08 449Catalyst scripts and your test suite will start using your .psgi file.
ad15c817 450
e6006848 451B<NOTE:> If you rename your .psgi file without these modifications, then
452any tests run via L<Catalyst::Test> will not be compatible with the new
453release, and will result in the development server starting, rather than
454the expected test running.
93a57b4b 455
c47cd2ce 456B<NOTE:> If you are directly accessing C<< $c->req->env >> to get the PSGI
457environment then this accessor is moved to C<< $c->engine->env >>,
458you will need to update your code.
459
e6006848 460=head2 Engines which are known to be broken
93a57b4b 461
e6006848 462The following engines B<DO NOT> work as of Catalyst version 5.9. The
463core team will be happy to work with the developers and/or users of
464these engines to help them port to the new Plack/Engine system, but for
465now, applications which are currently using these engines B<WILL NOT>
466run without modification to the engine code.
93a57b4b 467
468=over
469
470=item Catalyst::Engine::Wx
471
ad15c817 472=item Catalyst::Engine::Zeus
473
474=item Catalyst::Engine::JobQueue::POE
475
476=item Catalyst::Engine::XMPP2
477
478=item Catalyst::Engine::SCGI
479
93a57b4b 480=back
481
5d5f4a73 482=head2 Engines with unknown status
483
e6006848 484The following engines are untested or have unknown compatibility.
485Reports are highly encouraged:
5d5f4a73 486
ad15c817 487=over
488
489=item Catalyst::Engine::Mojo
490
e6006848 491=item Catalyst::Engine::Server (marked as Deprecated)
ad15c817 492
e6006848 493=item Catalyst::Engine::HTTP::POE (marked as Deprecated)
ad15c817 494
495=back
5d5f4a73 496
3f22de0b 497=head2 Plack functionality
040835f0 498
3f22de0b 499See L<Catalyst::PSGI>.
0aafa77a 500
dacd8b0e 501=head2 Tests in 5.9
4db14a9a 502
e6006848 503Tests should generally work the same in Catalyst 5.9, but there are
504some differences.
4db14a9a 505
e6006848 506Previously, if using L<Catalyst::Test> and doing local requests (against
507a local server), if the application threw an exception then this
508exception propagated into the test.
4db14a9a 509
e6006848 510This behavior has been removed, and now a 500 response will be returned
511to the test. This change standardizes behavior, so that local test
512requests behave similarly to remote requests.
4db14a9a 513
7e2ec16e 514=head1 Upgrading to Catalyst 5.80
515
5687c7f9 516Most applications and plugins should run unaltered on Catalyst 5.80.
7e2ec16e 517
8f61d649 518However, a lot of refactoring work has taken place, and several changes have
1a98f036 519been made which could cause incompatibilities. If your application or plugin
8f61d649 520is using deprecated code, or relying on side effects, then you could have
ba03ccca 521issues upgrading to this release.
5687c7f9 522
cf8eab35 523Most issues found with existing components have been easy to
8f61d649 524solve. This document provides a complete description of behavior changes
525which may cause compatibility issues, and of new Catalyst warnings which
773b3b08 526might be unclear.
7e2ec16e 527
8f61d649 528If you think you have found an upgrade-related issue which is not covered in
529this document, please email the Catalyst list to discuss the problem.
7e2ec16e 530
85f0a66f 531=head1 Moose features
532
8f61d649 533=head2 Application class roles
85f0a66f 534
8f61d649 535You can only apply method modifiers after the application's C<< ->setup >>
85f0a66f 536method has been called. This means that modifiers will not work with methods
773b3b08 537run during the call to C<< ->setup >>.
85f0a66f 538
a6eb852a 539See L<Catalyst::Manual::ExtendingCatalyst> for more information about using
540L<Moose> in your applications.
541
85f0a66f 542=head2 Controller actions in Moose roles
543
d76c88f3 544You can use L<MooseX::MethodAttributes::Role> if you want to declare actions
545inside Moose roles.
85f0a66f 546
d935773d 547=head2 Using Moose in Components
548
549The correct way to use Moose in a component in a both forward and backwards
550compatible way is:
551
552 package TestApp::Controller::Root;
553 use Moose;
554 BEGIN { extends 'Catalyst::Component' }; # Or ::Controller, or whatever
555
556See L<Components which inherit from Moose::Object before Catalyst::Component>.
557
8f61d649 558=head1 Known backwards compatibility breakages
7e2ec16e 559
8f61d649 560=head2 Applications in a single file
85f0a66f 561
562Applications must be in their own file, and loaded at compile time. This
8f61d649 563issue generally only affects the tests of CPAN distributions. Your
564application will fail if you try to define an application inline in a
565block, and use plugins which supply a C< new > method, then use that
566application latter in tests within the same file.
85f0a66f 567
568This is due to the fact that Catalyst is inlining a new method on your
8f61d649 569application class allowing it to be compatible with Moose. The method
570used to do this changed in 5.80004 to avoid the possibility of reporting
571an 'Unknown Error' if your application failed to compile.
85f0a66f 572
38f90e49 573=head2 Issues with Class::C3
574
8f61d649 575Catalyst 5.80 uses the L<Algorithm::C3> method dispatch order. This is
576built into Perl 5.10, and comes via L<Class::C3> for Perl 5.8. This
577replaces L<NEXT> with L<Class::C3::Adopt::NEXT>, forcing all components
578to resolve methods using C3, rather than the unpredictable dispatch
579order of L<NEXT>.
38f90e49 580
cf8eab35 581This issue manifests itself by your application failing to start due to an
5d06547d 582error message about having a non-linear @ISA.
583
8f61d649 584The Catalyst plugin most often causing this is
585L<Catalyst::Plugin::Session::Store::FastMmap> - if you are using this
586plugin and see issues, then please upgrade your plugins, as it has been
587fixed. Note that Makefile.PL in the distribution will warn about known
588incompatible components.
5d06547d 589
590This issue can, however, be found in your own application - the only solution is
591to go through each base class of the class the error was reported against, until
592you identify the ones in conflict, and resolve them.
593
594To be able to generate a linear @ISA, the list of superclasses for each
595class must be resolvable using the C3 algorithm. Unfortunately, when
596superclasses are being used as mixins (to add functionality used in your class),
ae7da8f5 597and with multiple inheritance, it is easy to get this wrong.
38f90e49 598
599Most common is the case of:
600
601 package Component1; # Note, this is the common case
602 use base qw/Class::Accessor::Fast Class::Data::Inheritable/;
603
8f61d649 604 package Component2; # Accidentally saying it this way causes a failure
38f90e49 605 use base qw/Class::Data::Inheritable Class::Accessor::Fast/;
606
607 package GoesBang;
608 use base qw/Component1 Component2/;
609
5d06547d 610Any situation like this will cause your application to fail to start.
38f90e49 611
8f61d649 612For additional documentation about this issue, and how to resolve it, see
5d06547d 613L<Class::C3::Adopt::NEXT>.
38f90e49 614
6f04e56a 615=head2 Components which inherit from Moose::Object before Catalyst::Component
7e2ec16e 616
6f04e56a 617Moose components which say:
7e2ec16e 618
6f04e56a 619 package TestApp::Controller::Example;
620 use Moose;
845bfcd2 621 extends qw/Moose::Object Catalyst::Component/;
7e2ec16e 622
8f61d649 623to use the constructor provided by Moose, while working (if you do some hacks
1a98f036 624with the C< BUILDARGS > method), will not work with Catalyst 5.80 as
6f04e56a 625C<Catalyst::Component> inherits from C<Moose::Object>, and so C< @ISA > fails
25f61108 626to linearize.
6f04e56a 627
6f04e56a 628The correct way to use Moose in a component in a both forward and backwards
629compatible way is:
630
631 package TestApp::Controller::Root;
632 use Moose;
633 BEGIN { extends 'Catalyst::Component' }; # Or ::Controller, or whatever
634
ba03ccca 635Note that the C< extends > declaration needs to occur in a begin block for
3df46b1b 636L<attributes> to operate correctly.
637
d935773d 638This way you do not inherit directly from C<Moose::Object>
639yourself. Having components which do not inherit their constructor from
640C<Catalyst::Component> is B<unsupported>, and has never been recommended,
641therefore you're on your own if you're using this technique. You'll need
642to detect the version of Catalyst your application is running, and deal
643with it appropriately.
644
eaae9a92 645You also don't get the L<Moose::Object> constructor, and therefore attribute
646initialization will not work as normally expected. If you want to use Moose
3df46b1b 647attributes, then they need to be made lazy to correctly initialize.
648
649Note that this only applies if your component needs to maintain component
650backwards compatibility for Catalyst versions before 5.71001 - in 5.71001
651attributes work as expected, and the BUILD method is called normally
eaae9a92 652(although BUILDARGS is not).
3df46b1b 653
654If you depend on Catalyst 5.8, then B<all> Moose features work as expected.
8566c0de 655
d935773d 656You will also see this issue if you do the following:
657
658 package TestApp::Controller::Example;
659 use Moose;
660 use base 'Catalyst::Controller';
661
662as C< use base > appends to @ISA.
663
e11cac87 664=head3 use Moose in MyApp
665
666Similar to the above, this will also fail:
667
668 package MyApp;
669 use Moose;
670 use Catalyst qw/
671 ConfigLoader
672 /;
673 __PACKAGE__->setup;
674
675If you need to use Moose in your application class (e.g. for method modifiers
8f61d649 676etc.) then the correct technique is:
e11cac87 677
678 package MyApp;
679 use Moose;
5b6f82d2 680 use Catalyst;
681
e11cac87 682 extends 'Catalyst';
5b6f82d2 683
684 __PACKAGE__->config( name => 'MyApp' );
e11cac87 685 __PACKAGE__->setup(qw/
686 ConfigLoader
687 /);
688
04a48104 689=head2 Anonymous closures installed directly into the symbol table
690
691If you have any code which installs anonymous subroutine references directly
692into the symbol table, you may encounter breakages. The simplest solution is
693to use L<Sub::Name> to name the subroutine. Example:
694
e11cac87 695 # Original code, likely to break:
1a98f036 696 my $full_method_name = join('::', $package_name, $method_name);
04a48104 697 *$full_method_name = sub { ... };
698
e11cac87 699 # Fixed Code
04a48104 700 use Sub::Name 'subname';
701 my $full_method_name = join('::',$package_name, $method_name);
702 *$full_method_name = subname $full_method_name, sub { ... };
703
8f61d649 704Additionally, you can take advantage of Catalyst's use of L<Class::MOP> and
705install the closure using the appropriate metaclass. Example:
04a48104 706
707 use Class::MOP;
708 my $metaclass = Moose::Meta::Class->initialize($package_name);
709 $metaclass->add_method($method_name => sub { ... });
710
780654ad 711=head2 Hooking into application setup
712
8f61d649 713To execute code during application start-up, the following snippet in MyApp.pm
780654ad 714used to work:
715
716 sub setup {
717 my ($class, @args) = @_;
718 $class->NEXT::setup(@args);
719 ... # things to do after the actual setup
720 }
721
8f61d649 722With Catalyst 5.80 this won't work anymore, because Catalyst no longer
723uses NEXT.pm for method resolution. The functionality was only ever
724originally operational as L<NEXT> remembers what methods have already
725been called, and will not call them again.
780654ad 726
1a98f036 727Using this now causes infinite recursion between MyApp::setup and
728Catalyst::setup, due to other backwards compatibility issues related to how
e6c5b548 729plugin setup works. Moose method modifiers like C<< before|after|around setup
1a98f036 730=> sub { ... }; >> also will not operate correctly on the setup method.
780654ad 731
732The right way to do it is this:
733
734 after setup_finalize => sub {
735 ... # things to do after the actual setup
736 };
737
ade00972 738The setup_finalize hook was introduced as a way to avoid this issue.
1a98f036 739
e11cac87 740=head2 Components with a new method which returns false
7e2ec16e 741
8dd2f514 742Previously, if you had a component which inherited from Catalyst::COMPONENT,
8f61d649 743but overrode the new method to return false, then your class's configuration
8dd2f514 744would be blessed into a hash on your behalf, and this would be returned from
a87f5aa5 745the COMPONENT method.
7e2ec16e 746
8f61d649 747This behavior makes no sense, and so has been removed. Implementing your own
748C< new > method in components is B<highly> discouraged. Instead, you should
749inherit the new method from Catalyst::Component, and use Moose's BUILD
1a98f036 750functionality and/or Moose attributes to perform any construction work
751necessary for your class.
7e2ec16e 752
753=head2 __PACKAGE__->mk_accessor('meta');
754
e11cac87 755Won't work due to a limitation of L<Moose>. This is currently being fixed
756inside Moose.
7e2ec16e 757
758=head2 Class::Data::Inheritable side effects
759
8dd2f514 760Previously, writing to a class data accessor would copy the accessor method
761down into your package.
762
8f61d649 763This behavior has been removed. While the class data is still stored
8dd2f514 764per-class, it is stored on the metaclass of the class defining the accessor.
7e2ec16e 765
8f61d649 766Therefore anything relying on the side effect of the accessor being copied down
8dd2f514 767will be broken.
7e2ec16e 768
1a98f036 769The following test demonstrates the problem:
8dd2f514 770
771 {
772 package BaseClass;
773 use base qw/Class::Data::Inheritable/;
774 __PACKAGE__->mk_classdata('foo');
775 }
776
777 {
778 package Child;
779 use base qw/BaseClass/;
780 }
781
782 BaseClass->foo('base class');
783 Child->foo('sub class');
eaae9a92 784
e11cac87 785 use Test::More;
8dd2f514 786 isnt(BaseClass->can('foo'), Child->can('foo'));
7e2ec16e 787
f4dda4a8 788=head2 Extending Catalyst::Request or other classes in an ad hoc manner using mk_accessors
7e2ec16e 789
8dd2f514 790Previously, it was possible to add additional accessors to Catalyst::Request
791(or other classes) by calling the mk_accessors class method.
7e2ec16e 792
8f61d649 793This is no longer supported - users should make a subclass of the class whose
794behavior they would like to change, rather than globally polluting the
e11cac87 795Catalyst objects.
8be895a7 796
10011c19 797=head2 Confused multiple inheritance with Catalyst::Component::COMPONENT
8be895a7 798
8f61d649 799Previously, Catalyst's COMPONENT method would delegate to the method on
800the right hand side, which could then delegate back again with
801NEXT. This is poor practice, and in addition, makes no sense with C3
802method dispatch order, and is therefore no longer supported.
bcc773b9 803
ba03ccca 804If a COMPONENT method is detected in the inheritance hierarchy to the right
bcc773b9 805hand side of Catalyst::Component::COMPONENT, then the following warning
806message will be emitted:
7e2ec16e 807
8dd2f514 808 There is a COMPONENT method resolving after Catalyst::Component
5687c7f9 809 in ${next_package}.
8dd2f514 810
8f61d649 811The correct fix is to re-arrange your class's inheritance hierarchy so that the
bcc773b9 812COMPONENT method you would like to inherit is the first (left-hand most)
813COMPONENT method in your @ISA.
7e2ec16e 814
7e9340de 815=head2 Development server relying on environment variables
816
817Previously, the development server would allow propagation of system
818environment variables into the request environment, this has changed with the
819adoption of Plack. You can use L<Plack::Middleware::ForceEnv> to achieve the
820same effect.
821
c571d2c8 822=head1 WARNINGS
823
63b546b1 824=head2 Actions in your application class
825
826Having actions in your application class will now emit a warning at application
e256d0e1 827startup as this is deprecated. It is highly recommended that these actions are moved
63b546b1 828into a MyApp::Controller::Root (as demonstrated by the scaffold application
5fa5b709 829generated by catalyst.pl).
da73c6af 830
e256d0e1 831This warning, also affects tests. You should move actions in your test,
832creating a myTest::Controller::Root, like the following example:
da73c6af 833
834 package MyTest::Controller::Root;
95a52a01 835
da73c6af 836 use strict;
837 use warnings;
95a52a01 838
da73c6af 839 use parent 'Catalyst::Controller';
95a52a01 840
da73c6af 841 __PACKAGE__->config(namespace => '');
95a52a01 842
da73c6af 843 sub action : Local {
844 my ( $self, $c ) = @_;
5fa5b709 845 $c->do_something;
da73c6af 846 }
95a52a01 847
da73c6af 848 1;
63b546b1 849
ac9279b0 850=head2 ::[MVC]:: naming scheme
851
852Having packages called MyApp::[MVC]::XX is deprecated and can no longer be generated
853by catalyst.pl
854
855This is still supported, but it is recommended that you rename your application
856components to Model/View/Controller.
857
858A warning will be issued at application startup if the ::[MVC]:: naming scheme is
859in use.
860
ade00972 861=head2 Catalyst::Base
862
8f61d649 863Any code using L<Catalyst::Base> will now emit a warning; this
864module will be removed in a future release.
ade00972 865
c571d2c8 866=head2 Methods in Catalyst::Dispatcher
867
8f61d649 868The following methods in Catalyst::Dispatcher are implementation
869details, which may change in the 5.8X release series, and therefore their use
bcc773b9 870is highly deprecated.
c571d2c8 871
872=over
873
8dd2f514 874=item tree
c571d2c8 875
8dd2f514 876=item dispatch_types
c571d2c8 877
8dd2f514 878=item registered_dispatch_types
c571d2c8 879
8dd2f514 880=item method_action_class
c571d2c8 881
8dd2f514 882=item action_hash
c571d2c8 883
884=item container_hash
885
886=back
887
888The first time one of these methods is called, a warning will be emitted:
7e2ec16e 889
bcc773b9 890 Class $class is calling the deprecated method Catalyst::Dispatcher::$public_method_name,
dacd8b0e 891 this will be removed in Catalyst 5.9
7e2ec16e 892
c571d2c8 893You should B<NEVER> be calling any of these methods from application code.
894
8f61d649 895Plugin authors and maintainers whose plugins currently call these methods
8f5a2bd9 896should change to using the public API, or, if you do not feel the public API
8f61d649 897adequately supports your use case, please email the development list to
8f5a2bd9 898discuss what API features you need so that you can be appropriately supported.
7e2ec16e 899
95b20422 900=head2 Class files with names that don't correspond to the packages they define
7e2ec16e 901
e11cac87 902In this version of Catalyst, if a component is loaded from disk, but no
ba03ccca 903symbols are defined in that component's name space after it is loaded, this
bcc773b9 904warning will be issued:
7e2ec16e 905
bcc773b9 906 require $class was successful but the package is not defined.
7e2ec16e 907
8f61d649 908This is to protect against confusing bugs caused by mistyping package names,
bcc773b9 909and will become a fatal error in a future version.
910
911Please note that 'inner packages' (via L<Devel::InnerPackage>) are still fully
8f61d649 912supported; this warning is only issued when component file naming does not map
bcc773b9 913to B<any> of the packages defined within that component.
7e2ec16e 914
5687c7f9 915=head2 $c->plugin method
916
25f61108 917Calling the plugin method is deprecated, and calling it at run time is B<highly
8dd2f514 918deprecated>.
7e2ec16e 919
95a52a01 920Instead you are recommended to use L<Catalyst::Model::Adaptor> or similar to
ba03ccca 921compose the functionality you need outside of the main application name space.
7e2ec16e 922
4e68badc 923Calling the plugin method will not be supported past Catalyst 5.81.
bcc773b9 924
7e2ec16e 925=cut
4e68badc 926