11d0198032c64af5419478ba15f8a799256ea0a4
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Upgrading.pod
1 =head1 NAME
2
3 Catalyst::Upgrading - Instructions for upgrading to the latest Catalyst
4
5 =head1 Upgrading to Catalyst 5.90060
6
7 Starting in the v5.90059_001 development release, the regexp dispatch type is
8 no longer automatically included as a dependency.  If you are still using this
9 dispatch type, you need to add L<Catalyst::DispatchType::Regex> into your build
10 system.
11
12 The standalone distribution of Regexp will be supported for the time being, but
13 should we find that supporting it prevents us from moving L<Catalyst> forward
14 in necessary ways, we reserve the right to drop that support.  It is highly
15 recommended that you use this last stage of deprecation to change your code.
16
17 =head1 Upgrading to Catalyst 5.90040
18
19 =head2 Catalyst::Plugin::Unicode::Encoding is now core
20
21 The previously stand alone Unicode support module L<Catalyst::Plugin::Unicode::Encoding>
22 has been brought into core as a default plugin.  Going forward, all you need is
23 to add a configuration setting for the encoding type.  For example:
24
25     package Myapp::Web;
26
27     use Catalyst;
28
29     __PACKAGE__->config( encoding => 'UTF-8' );
30
31 Please note that this is different from the old stand alone plugin which applied
32 C<UTF-8> encoding by default (that is, if you did not set an explicit
33 C<encoding> configuration value, it assumed you wanted UTF-8).  In order to 
34 preserve backwards compatibility you will need to explicitly turn it on via the
35 configuration setting.  THIS MIGHT CHANGE IN THE FUTURE, so please consider
36 starting to test your application with proper UTF-8 support and remove all those
37 crappy hacks you munged into the code because you didn't know the Plugin
38 existed :)
39
40 For people that are using the Plugin, you will note a startup warning suggesting
41 that you can remove it from the plugin list.  When you do so, please remember to
42 add the configuration setting, since you can no longer rely on the default being
43 UTF-8.  We'll add it for you if you continue to use the stand alone plugin and
44 we detect this, but this backwards compatibility shim will likely be removed in
45 a few releases (trying to clean up the codebase after all).
46
47 If you have trouble with any of this, please bring it to the attention of the
48 Catalyst maintainer group.
49
50 =head2 basic async and event loop support
51
52 This version of L<Catalyst> offers some support for using L<AnyEvent> and
53 L<IO::Async> event loops in your application.  These changes should work
54 fine for most applications however if you are already trying to perform
55 some streaming, minor changes in this area of the code might affect your
56 functionality.  Please see L<Catalyst::Response\write_fh> for more and for a
57 basic example.
58
59 We consider this feature experimental.  We will try not to break it, but we
60 reserve the right to make necessary changes to fix major issues that people
61 run into when the use this functionality in the wild.
62
63 =head1 Upgrading to Catalyst 5.90030
64
65 =head2 Regex dispatch type is deprecated.
66
67 The Regex dispatchtype (L<Catalyst::DispatchType::Regex>) has been deprecated.
68
69 You are encouraged to move your application to Chained dispatch (L<Catalyst::DispatchType::Chained>).
70
71 If you cannot do so, please add a dependency to Catalyst::DispatchType::Regex to your application's
72 Makefile.PL
73
74 =head1 Upgrading to Catalyst 5.9
75
76 The major change is that L<Plack>, a toolkit for using the L<PSGI>
77 specification, now replaces most of the subclasses of L<Catalyst::Engine>. If
78 you are using one of the standard subclasses of L<Catalyst::Engine> this
79 should be a straightforward upgrade for you. It was a design goal for
80 this release to preserve as much backwards compatibility as possible.
81 However, since L<Plack> is different from L<Catalyst::Engine>, it is
82 possible that differences exist for edge cases. Therefore, we recommend
83 that care be taken with this upgrade and that testing should be greater
84 than would be the case with a minor point update. Please inform the
85 Catalyst developers of any problems so that we can fix them and
86 incorporate tests.
87
88 It is highly recommended that you become familiar with the L<Plack> ecosystem
89 and documentation. Being able to take advantage of L<Plack> development and
90 middleware is a major bonus to this upgrade. Documentation about how to
91 take advantage of L<Plack::Middleware> by writing your own C<< .psgi >> file
92 is contained in L<Catalyst::PSGI>.
93
94 If you have created a custom subclass of L<Catalyst:Engine>, you will
95 need to convert it to be a subclass of L<Plack::Handler>.
96
97 If you are using the L<Plack> engine, L<Catalyst::Engine::PSGI>, this new
98 release supersedes that code.
99
100 If you are using a subclass of L<Catalyst::Engine> that is aimed at
101 nonstandard or internal/testing uses, such as
102 L<Catalyst::Engine::Embeddable>, you should still be able to continue
103 using that engine.
104
105 Advice for specific subclasses of L<Catalyst::Engine> follows:
106
107 =head2 Upgrading the FastCGI Engine
108
109 No upgrade is needed if your myapp_fastcgi.pl script is already upgraded
110 to use L<Catalyst::Script::FastCGI>.
111
112 =head2 Upgrading the mod_perl / Apache Engines
113
114 The engines that are built upon the various iterations of mod_perl,
115 L<Catalyst::Engine::Apache::MP13> (for mod_perl 1, and Apache 1.x) and
116 L<Catalyst::Engine::Apache2::MP20> (for mod_perl 2, and Apache 2.x),
117 should be seamless upgrades and will work using L<Plack::Handler::Apache1>
118 or L<Plack::Handler::Apache2> as required.
119
120 L<Catalyst::Engine::Apache2::MP19>, however, is no longer supported, as
121 Plack does not support mod_perl version 1.99. This is unlikely to be a
122 problem for anyone, as 1.99 was a brief beta-test release for mod_perl
123 2, and all users of mod_perl 1.99 are encouraged to upgrade to a
124 supported release of Apache 2 and mod_perl 2.
125
126 =head2 Upgrading the HTTP Engine
127
128 The default development server that comes with the L<Catalyst> distribution
129 should continue to work as expected with no changes as long as your C<myapp_server>
130 script is upgraded to use L<Catalyst::Script::HTTP>.
131
132 =head2 Upgrading the CGI Engine
133
134 If you were using L<Catalyst::Engine::CGI> there is no upgrade needed if your
135 myapp_cgi.pl script is already upgraded to use L<Catalyst::Script::CGI>.
136
137 =head2 Upgrading Catalyst::Engine::HTTP::Prefork
138
139 If you were using L<Catalyst::Engine::HTTP::Prefork> then L<Starman>
140 is automatically loaded. You should (at least) change your C<Makefile.PL>
141 to depend on Starman.
142
143 You can regenerate your C<myapp_server.pl> script with C<catalyst.pl>
144 and implement a C<MyApp::Script::Server> class that looks like this:
145
146     package MyApp::Script::Server;
147     use Moose;
148     use namespace::autoclean;
149
150     extends 'CatalystX::Script::Server::Starman';
151
152     1;
153
154 This takes advantage of the new script system, and will add a number of
155 options to the standard server script as extra options are added by
156 Starman.
157
158 More information about these options can be seen at
159 L<CatalystX::Script::Server::Starman/SYNOPSIS>.
160
161 An alternate route to implement this functionality is to write a simple .psgi
162 file for your application, and then use the L<plackup> utility to start the
163 server.
164
165 =head2 Upgrading the PSGI Engine
166
167 If you were using L<Catalyst::Engine::PSGI>, this new release supersedes
168 this engine in supporting L<Plack>. By default the Engine is now always
169 L<Plack>. As a result, you can remove the dependency on
170 L<Catalyst::Engine::PSGI> in your C<Makefile.PL>.
171
172 Applications that were using L<Catalyst::Engine::PSGI>
173 previously should entirely continue to work in this release with no changes.
174
175 However, if you have an C<app.psgi> script, then you no longer need to
176 specify the PSGI engine. Instead, the L<Catalyst> application class now
177 has a new method C<psgi_app> which returns a L<PSGI> compatible coderef
178 which you can wrap in the middleware of your choice.
179
180 Catalyst will use the .psgi for your application if it is located in the C<home>
181 directory of the application.
182
183 For example, if you were using L<Catalyst::Engine::PSGI> in the past, you will
184 have written (or generated) a C<script/myapp.psgi> file similar to this one:
185
186     use Plack::Builder;
187     use MyCatalytApp;
188
189     MyCatalystApp->setup_engine('PSGI');
190
191     builder {
192         enable ... # enable your desired middleware
193         sub { MyCatalystApp->run(@_) };
194     };
195
196 Instead, you now say:
197
198     use Plack::Builder;
199     use MyCatalystApp;
200
201     builder {
202         enable ... #enable your desired middleware
203         MyCatalystApp->psgi_app;
204     };
205
206 In the simplest case:
207
208     MyCatalystApp->setup_engine('PSGI');
209     my $app = sub { MyCatalystApp->run(@_) }
210
211 becomes
212
213     my $app = MyCatalystApp->psgi_app(@_);
214
215 B<NOT>:
216
217     my $app = sub { MyCatalystApp->psgi_app(@_) };
218     # If you make ^^ this mistake, your app won't work, and will confuse the hell out of you!
219
220 You can now move C<< script/myapp.psgi >> to C<< myapp.psgi >>, and the built-in
221 Catalyst scripts and your test suite will start using your .psgi file.
222
223 B<NOTE:> If you rename your .psgi file without these modifications, then
224 any tests run via L<Catalyst::Test> will not be compatible with the new
225 release, and will result in the development server starting, rather than
226 the expected test running.
227
228 B<NOTE:> If you are directly accessing C<< $c->req->env >> to get the PSGI
229 environment then this accessor is moved to C<< $c->engine->env >>,
230 you will need to update your code.
231
232 =head2 Engines which are known to be broken
233
234 The following engines B<DO NOT> work as of Catalyst version 5.9. The
235 core team will be happy to work with the developers and/or users of
236 these engines to help them port to the new Plack/Engine system, but for
237 now, applications which are currently using these engines B<WILL NOT>
238 run without modification to the engine code.
239
240 =over
241
242 =item Catalyst::Engine::Wx
243
244 =item Catalyst::Engine::Zeus
245
246 =item Catalyst::Engine::JobQueue::POE
247
248 =item Catalyst::Engine::XMPP2
249
250 =item Catalyst::Engine::SCGI
251
252 =back
253
254 =head2 Engines with unknown status
255
256 The following engines are untested or have unknown compatibility.
257 Reports are highly encouraged:
258
259 =over
260
261 =item Catalyst::Engine::Mojo
262
263 =item Catalyst::Engine::Server (marked as Deprecated)
264
265 =item Catalyst::Engine::HTTP::POE (marked as Deprecated)
266
267 =back
268
269 =head2 Plack functionality
270
271 See L<Catalyst::PSGI>.
272
273 =head2 Tests in 5.9
274
275 Tests should generally work the same in Catalyst 5.9, but there are
276 some differences.
277
278 Previously, if using L<Catalyst::Test> and doing local requests (against
279 a local server), if the application threw an exception then this
280 exception propagated into the test.
281
282 This behavior has been removed, and now a 500 response will be returned
283 to the test. This change standardizes behavior, so that local test
284 requests behave similarly to remote requests.
285
286 =head1 Upgrading to Catalyst 5.80
287
288 Most applications and plugins should run unaltered on Catalyst 5.80.
289
290 However, a lot of refactoring work has taken place, and several changes have
291 been made which could cause incompatibilities. If your application or plugin
292 is using deprecated code, or relying on side effects, then you could have
293 issues upgrading to this release.
294
295 Most issues found with existing components have been easy to
296 solve. This document provides a complete description of behavior changes
297 which may cause compatibility issues, and of new Catalyst warnings which
298 might be unclear.
299
300 If you think you have found an upgrade-related issue which is not covered in
301 this document, please email the Catalyst list to discuss the problem.
302
303 =head1 Moose features
304
305 =head2 Application class roles
306
307 You can only apply method modifiers after the application's C<< ->setup >>
308 method has been called. This means that modifiers will not work with methods
309 run during the call to C<< ->setup >>.
310
311 See L<Catalyst::Manual::ExtendingCatalyst> for more information about using
312 L<Moose> in your applications.
313
314 =head2 Controller actions in Moose roles
315
316 You can use L<MooseX::MethodAttributes::Role> if you want to declare actions
317 inside Moose roles.
318
319 =head2 Using Moose in Components
320
321 The correct way to use Moose in a component in a both forward and backwards
322 compatible way is:
323
324     package TestApp::Controller::Root;
325     use Moose;
326     BEGIN { extends 'Catalyst::Component' }; # Or ::Controller, or whatever
327
328 See L<Components which inherit from Moose::Object before Catalyst::Component>.
329
330 =head1 Known backwards compatibility breakages
331
332 =head2 Applications in a single file
333
334 Applications must be in their own file, and loaded at compile time. This
335 issue generally only affects the tests of CPAN distributions. Your
336 application will fail if you try to define an application inline in a
337 block, and use plugins which supply a C< new > method, then use that
338 application latter in tests within the same file.
339
340 This is due to the fact that Catalyst is inlining a new method on your
341 application class allowing it to be compatible with Moose. The method
342 used to do this changed in 5.80004 to avoid the possibility of reporting
343 an 'Unknown Error' if your application failed to compile.
344
345 =head2 Issues with Class::C3
346
347 Catalyst 5.80 uses the L<Algorithm::C3> method dispatch order. This is
348 built into Perl 5.10, and comes via L<Class::C3> for Perl 5.8. This
349 replaces L<NEXT> with L<Class::C3::Adopt::NEXT>, forcing all components
350 to resolve methods using C3, rather than the unpredictable dispatch
351 order of L<NEXT>.
352
353 This issue manifests itself by your application failing to start due to an
354 error message about having a non-linear @ISA.
355
356 The Catalyst plugin most often causing this is
357 L<Catalyst::Plugin::Session::Store::FastMmap> - if you are using this
358 plugin and see issues, then please upgrade your plugins, as it has been
359 fixed. Note that Makefile.PL in the distribution will warn about known
360 incompatible components.
361
362 This issue can, however, be found in your own application - the only solution is
363 to go through each base class of the class the error was reported against, until
364 you identify the ones in conflict, and resolve them.
365
366 To be able to generate a linear @ISA, the list of superclasses for each
367 class must be resolvable using the C3 algorithm. Unfortunately, when
368 superclasses are being used as mixins (to add functionality used in your class),
369 and with multiple inheritance, it is easy to get this wrong.
370
371 Most common is the case of:
372
373     package Component1; # Note, this is the common case
374     use base qw/Class::Accessor::Fast Class::Data::Inheritable/;
375
376     package Component2; # Accidentally saying it this way causes a failure
377     use base qw/Class::Data::Inheritable Class::Accessor::Fast/;
378
379     package GoesBang;
380     use base qw/Component1 Component2/;
381
382 Any situation like this will cause your application to fail to start.
383
384 For additional documentation about this issue, and how to resolve it, see
385 L<Class::C3::Adopt::NEXT>.
386
387 =head2 Components which inherit from Moose::Object before Catalyst::Component
388
389 Moose components which say:
390
391     package TestApp::Controller::Example;
392     use Moose;
393     extends qw/Moose::Object Catalyst::Component/;
394
395 to use the constructor provided by Moose, while working (if you do some hacks
396 with the C< BUILDARGS > method), will not work with Catalyst 5.80 as
397 C<Catalyst::Component> inherits from C<Moose::Object>, and so C< @ISA > fails
398 to linearize.
399
400 The correct way to use Moose in a component in a both forward and backwards
401 compatible way is:
402
403     package TestApp::Controller::Root;
404     use Moose;
405     BEGIN { extends 'Catalyst::Component' }; # Or ::Controller, or whatever
406
407 Note that the C< extends > declaration needs to occur in a begin block for
408 L<attributes> to operate correctly.
409
410 This way you do not inherit directly from C<Moose::Object>
411 yourself. Having components which do not inherit their constructor from
412 C<Catalyst::Component> is B<unsupported>, and has never been recommended,
413 therefore you're on your own if you're using this technique. You'll need
414 to detect the version of Catalyst your application is running, and deal
415 with it appropriately.
416
417 You also don't get the L<Moose::Object> constructor, and therefore attribute
418 initialization will not work as normally expected. If you want to use Moose
419 attributes, then they need to be made lazy to correctly initialize.
420
421 Note that this only applies if your component needs to maintain component
422 backwards compatibility for Catalyst versions before 5.71001 - in 5.71001
423 attributes work as expected, and the BUILD method is called normally
424 (although BUILDARGS is not).
425
426 If you depend on Catalyst 5.8, then B<all> Moose features work as expected.
427
428 You will also see this issue if you do the following:
429
430     package TestApp::Controller::Example;
431     use Moose;
432     use base 'Catalyst::Controller';
433
434 as C< use base > appends to @ISA.
435
436 =head3 use Moose in MyApp
437
438 Similar to the above, this will also fail:
439
440     package MyApp;
441     use Moose;
442     use Catalyst qw/
443       ConfigLoader
444     /;
445     __PACKAGE__->setup;
446
447 If you need to use Moose in your application class (e.g. for method modifiers
448 etc.) then the correct technique is:
449
450     package MyApp;
451     use Moose;
452     use Catalyst;
453
454     extends 'Catalyst';
455
456     __PACKAGE__->config( name => 'MyApp' );
457     __PACKAGE__->setup(qw/
458         ConfigLoader
459     /);
460
461 =head2 Anonymous closures installed directly into the symbol table
462
463 If you have any code which installs anonymous subroutine references directly
464 into the symbol table, you may encounter breakages. The simplest solution is
465 to use L<Sub::Name> to name the subroutine. Example:
466
467     # Original code, likely to break:
468     my $full_method_name = join('::', $package_name, $method_name);
469     *$full_method_name = sub { ... };
470
471     # Fixed Code
472     use Sub::Name 'subname';
473     my $full_method_name = join('::',$package_name, $method_name);
474     *$full_method_name = subname $full_method_name, sub { ... };
475
476 Additionally, you can take advantage of Catalyst's use of L<Class::MOP> and
477 install the closure using the appropriate metaclass. Example:
478
479     use Class::MOP;
480     my $metaclass = Moose::Meta::Class->initialize($package_name);
481     $metaclass->add_method($method_name => sub { ... });
482
483 =head2 Hooking into application setup
484
485 To execute code during application start-up, the following snippet in MyApp.pm
486 used to work:
487
488     sub setup {
489         my ($class, @args) = @_;
490         $class->NEXT::setup(@args);
491         ... # things to do after the actual setup
492     }
493
494 With Catalyst 5.80 this won't work anymore, because Catalyst no longer
495 uses NEXT.pm for method resolution. The functionality was only ever
496 originally operational as L<NEXT> remembers what methods have already
497 been called, and will not call them again.
498
499 Using this now causes infinite recursion between MyApp::setup and
500 Catalyst::setup, due to other backwards compatibility issues related to how
501 plugin setup works. Moose method modifiers like C<< before|after|around setup
502 => sub { ... }; >> also will not operate correctly on the setup method.
503
504 The right way to do it is this:
505
506     after setup_finalize => sub {
507         ... # things to do after the actual setup
508     };
509
510 The setup_finalize hook was introduced as a way to avoid this issue.
511
512 =head2 Components with a new method which returns false
513
514 Previously, if you had a component which inherited from Catalyst::COMPONENT,
515 but overrode the new method to return false, then your class's configuration
516 would be blessed into a hash on your behalf, and this would be returned from
517 the COMPONENT method.
518
519 This behavior makes no sense, and so has been removed. Implementing your own
520 C< new > method in components is B<highly> discouraged. Instead, you should
521 inherit the new method from Catalyst::Component, and use Moose's BUILD
522 functionality and/or Moose attributes to perform any construction work
523 necessary for your class.
524
525 =head2 __PACKAGE__->mk_accessor('meta');
526
527 Won't work due to a limitation of L<Moose>. This is currently being fixed
528 inside Moose.
529
530 =head2 Class::Data::Inheritable side effects
531
532 Previously, writing to a class data accessor would copy the accessor method
533 down into your package.
534
535 This behavior has been removed. While the class data is still stored
536 per-class, it is stored on the metaclass of the class defining the accessor.
537
538 Therefore anything relying on the side effect of the accessor being copied down
539 will be broken.
540
541 The following test demonstrates the problem:
542
543     {
544         package BaseClass;
545         use base qw/Class::Data::Inheritable/;
546         __PACKAGE__->mk_classdata('foo');
547     }
548
549     {
550         package Child;
551         use base qw/BaseClass/;
552     }
553
554     BaseClass->foo('base class');
555     Child->foo('sub class');
556
557     use Test::More;
558     isnt(BaseClass->can('foo'), Child->can('foo'));
559
560 =head2 Extending Catalyst::Request or other classes in an ad hoc manner using mk_accessors
561
562 Previously, it was possible to add additional accessors to Catalyst::Request
563 (or other classes) by calling the mk_accessors class method.
564
565 This is no longer supported - users should make a subclass of the class whose
566 behavior they would like to change, rather than globally polluting the
567 Catalyst objects.
568
569 =head2 Confused multiple inheritance with Catalyst::Component::COMPONENT
570
571 Previously, Catalyst's COMPONENT method would delegate to the method on
572 the right hand side, which could then delegate back again with
573 NEXT. This is poor practice, and in addition, makes no sense with C3
574 method dispatch order, and is therefore no longer supported.
575
576 If a COMPONENT method is detected in the inheritance hierarchy to the right
577 hand side of Catalyst::Component::COMPONENT, then the following warning
578 message will be emitted:
579
580     There is a COMPONENT method resolving after Catalyst::Component
581     in ${next_package}.
582
583 The correct fix is to re-arrange your class's inheritance hierarchy so that the
584 COMPONENT method you would like to inherit is the first (left-hand most)
585 COMPONENT method in your @ISA.
586
587 =head2 Development server relying on environment variables
588
589 Previously, the development server would allow propagation of system
590 environment variables into the request environment, this has changed with the
591 adoption of Plack. You can use L<Plack::Middleware::ForceEnv> to achieve the
592 same effect.
593
594 =head1 WARNINGS
595
596 =head2 Actions in your application class
597
598 Having actions in your application class will now emit a warning at application
599 startup as this is deprecated. It is highly recommended that these actions are moved
600 into a MyApp::Controller::Root (as demonstrated by the scaffold application
601 generated by catalyst.pl). 
602
603 This warning, also affects tests. You should move actions in your test,
604 creating a myTest::Controller::Root, like the following example:
605
606     package MyTest::Controller::Root;
607
608     use strict;
609     use warnings;
610
611     use parent 'Catalyst::Controller';
612
613     __PACKAGE__->config(namespace => '');
614
615     sub action : Local {
616         my ( $self, $c ) = @_;
617         $c->do_something; 
618     }
619
620     1;
621
622 =head2 ::[MVC]:: naming scheme
623
624 Having packages called MyApp::[MVC]::XX is deprecated and can no longer be generated
625 by catalyst.pl
626
627 This is still supported, but it is recommended that you rename your application
628 components to Model/View/Controller.
629
630 A warning will be issued at application startup if the ::[MVC]:: naming scheme is
631 in use.
632
633 =head2 Catalyst::Base
634
635 Any code using L<Catalyst::Base> will now emit a warning; this
636 module will be removed in a future release.
637
638 =head2 Methods in Catalyst::Dispatcher
639
640 The following methods in Catalyst::Dispatcher are implementation
641 details, which may change in the 5.8X release series, and therefore their use
642 is highly deprecated.
643
644 =over
645
646 =item tree
647
648 =item dispatch_types
649
650 =item registered_dispatch_types
651
652 =item method_action_class
653
654 =item action_hash
655
656 =item container_hash
657
658 =back
659
660 The first time one of these methods is called, a warning will be emitted:
661
662     Class $class is calling the deprecated method Catalyst::Dispatcher::$public_method_name,
663     this will be removed in Catalyst 5.9
664
665 You should B<NEVER> be calling any of these methods from application code.
666
667 Plugin authors and maintainers whose plugins currently call these methods
668 should change to using the public API, or, if you do not feel the public API
669 adequately supports your use case, please email the development list to
670 discuss what API features you need so that you can be appropriately supported.
671
672 =head2 Class files with names that don't correspond to the packages they define
673
674 In this version of Catalyst, if a component is loaded from disk, but no
675 symbols are defined in that component's name space after it is loaded, this
676 warning will be issued:
677
678     require $class was successful but the package is not defined.
679
680 This is to protect against confusing bugs caused by mistyping package names,
681 and will become a fatal error in a future version.
682
683 Please note that 'inner packages' (via L<Devel::InnerPackage>) are still fully
684 supported; this warning is only issued when component file naming does not map
685 to B<any> of the packages defined within that component.
686
687 =head2 $c->plugin method
688
689 Calling the plugin method is deprecated, and calling it at run time is B<highly
690 deprecated>.
691
692 Instead you are recommended to use L<Catalyst::Model::Adaptor> or similar to
693 compose the functionality you need outside of the main application name space.
694
695 Calling the plugin method will not be supported past Catalyst 5.81.
696
697 =cut
698