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