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