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