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