Remove useless column in chained action debug table.
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Upgrading.pod
CommitLineData
7e2ec16e 1=head1 Upgrading to Catalyst 5.80
2
5687c7f9 3Most applications and plugins should run unaltered on Catalyst 5.80.
7e2ec16e 4
5687c7f9 5However as a lot of refactoring work has taken place, several changes
10011c19 6have been made which could cause incompatibilities, if your application
5687c7f9 7or plugin is using deprecated code, or relying on side-effects then
8there could be incompatibility.
9
6f04e56a 10Most issues found with pre-existing components have been easy to solve,
5687c7f9 11and a complete description of behavior changes which may cause compatibility
12issues, or warnings to be emitted is included below to help if you have
13problems.
7e2ec16e 14
5687c7f9 15If you think you have found an upgrade related issue which is not covered in
16this document, then please email the Catalyst list to discuss the problem.
7e2ec16e 17
5687c7f9 18=head1 Known backwards compatibility breakages.
7e2ec16e 19
6f04e56a 20=head2 Components which inherit from Moose::Object before Catalyst::Component
7e2ec16e 21
6f04e56a 22Moose components which say:
7e2ec16e 23
6f04e56a 24 package TestApp::Controller::Example;
25 use Moose;
845bfcd2 26 extends qw/Moose::Object Catalyst::Component/;
7e2ec16e 27
6f04e56a 28to use the constructor provided by Moose, whilst working if you do some hacks
29with the C< BUILDARGS > method, will not work with Catalyst 5.80 as
30C<Catalyst::Component> inherits from C<Moose::Object>, and so C< @ISA > fails
31to linearise.
32
33The fix for this, is to not inherit directly from C<Moose::Object>
34yourself. Having components which do not inherit their constructor from
35C<Catalyst::Component> is B<unsupported>, and has never been recommended,
36therefore you're on your own if you're using this technique. You'll need
37to detect the version of Catalyst your application is running with and deal
38with it appropriately.
7e2ec16e 39
8566c0de 40You will also see this issue if you do the following:
41
6f04e56a 42 package TestApp::Controller::Example;
43 use Moose;
8566c0de 44 use base 'Catalyst::Controller';
45
46as C< use base > appends to @ISA.
47
6f04e56a 48The correct way to use Moose in a component in a both forward and backwards
49compatible way is:
50
51 package TestApp::Controller::Root;
52 use Moose;
53 BEGIN { extends 'Catalyst::Component' }; # Or ::Controller, or whatever
54
55Note that the C< extends > decleration needs to occur in a begin block for
56L<attributes> to operate correctly.
8566c0de 57
04a48104 58=head2 Anonymous closures installed directly into the symbol table
59
60If you have any code which installs anonymous subroutine references directly
61into the symbol table, you may encounter breakages. The simplest solution is
62to use L<Sub::Name> to name the subroutine. Example:
63
64 #Originalcode, likely to break:
65 my $full_method_name = join('::',$package_name, $method_name);
66 *$full_method_name = sub { ... };
67
68 #Fixed Code
69 use Sub::Name 'subname';
70 my $full_method_name = join('::',$package_name, $method_name);
71 *$full_method_name = subname $full_method_name, sub { ... };
72
73Additionally, you can take advantage of Catalyst's use of L<Class::MOP> and
74install the closure using the appropriate metaclass. Example:
75
76 use Class::MOP;
77 my $metaclass = Moose::Meta::Class->initialize($package_name);
78 $metaclass->add_method($method_name => sub { ... });
79
780654ad 80=head2 Hooking into application setup
81
82To execute code during application startup the following snippet in MyApp.pm
83used to work:
84
85 sub setup {
86 my ($class, @args) = @_;
87 $class->NEXT::setup(@args);
88 ... # things to do after the actual setup
89 }
90
91With Catalyst 5.80 this won't work anymore. Because instead of using NEXT.pm it
92relies on Class::C3::Adopt::NEXT, which doesn't remember what methods it
93already called, like NEXT does and therefore goes into a deep recursion between
94MyApp::setup and Catalyst::setup.
95
96Moose method modifiers line C<< before|after|around 'setup => sub { ... }; >>
97won't work either because of backward compatibility issues related to plugin
98setup methods.
99
100The right way to do it is this:
101
102 after setup_finalize => sub {
103 ... # things to do after the actual setup
104 };
105
5687c7f9 106=head2 Components whos new method returns false
7e2ec16e 107
8dd2f514 108Previously, if you had a component which inherited from Catalyst::COMPONENT,
109but overrode the new method, to return false, then your class' configuration
110would be blessed into a hash on your behalf, and this would be returned from
a87f5aa5 111the COMPONENT method.
7e2ec16e 112
8dd2f514 113This behaviour makes no sense, and so has been removed.. You are recommended to
114implement your own new method in components, instead, you should inherit the
115new method from Catalyst::Component, and use Moose's BUILD functionality to
116perform any construction work necessary for your sub-class.
7e2ec16e 117
118=head2 __PACKAGE__->mk_accessor('meta');
119
5687c7f9 120Won't work due to a limitation of L<Moose>
7e2ec16e 121
5687c7f9 122This is currently being fixed inside core Moose.
7e2ec16e 123
124=head2 Class::Data::Inheritable side effects
125
8dd2f514 126Previously, writing to a class data accessor would copy the accessor method
127down into your package.
128
129This behavior has been removed. Whilst the class data is still stored
130per-class, it is stored on the metaclass of the class defining the accessor.
7e2ec16e 131
8dd2f514 132Therefore anything relying on the side-effect of the accessor being copied down
133will be broken.
7e2ec16e 134
8dd2f514 135The following example demonstrates the problem:
136
137 {
138 package BaseClass;
139 use base qw/Class::Data::Inheritable/;
140 __PACKAGE__->mk_classdata('foo');
141 }
142
143 {
144 package Child;
145 use base qw/BaseClass/;
146 }
147
148 BaseClass->foo('base class');
149 Child->foo('sub class');
150
151 isnt(BaseClass->can('foo'), Child->can('foo'));
7e2ec16e 152
5687c7f9 153=head2 Extending Catalyst::Request or other classes in an ad-hoc manor using mk_accessors
7e2ec16e 154
8dd2f514 155Previously, it was possible to add additional accessors to Catalyst::Request
156(or other classes) by calling the mk_accessors class method.
7e2ec16e 157
8dd2f514 158This is no longer supported - users should make a sub-class of the class who's
159behavior they would like to change, rather than globally polluting the Catalyst
160objects.
8be895a7 161
10011c19 162=head2 Confused multiple inheritance with Catalyst::Component::COMPONENT
8be895a7 163
5687c7f9 164Warning message:
7e2ec16e 165
8dd2f514 166 There is a COMPONENT method resolving after Catalyst::Component
5687c7f9 167 in ${next_package}.
8dd2f514 168
169This means that one of the packages on the right hand side of
5687c7f9 170Catalyst::Component in your Class' inheritance hierarchy defines
171a COMPONENT method.
7e2ec16e 172
5687c7f9 173Previously, Catalyst's COMPONENT method would delegate to the
174method on the right hand side, which could then delegate back again
175with NEXT. This (as it is insane), is no longer supported, as it
176makes no sense with C3 method dispatch order.
177
178Therefore the correct fix is to re-arrange your class' inheritance
179hierarchy so that the COMPONENT method you would like to inherit is
8dd2f514 180the first COMPONENT method in your @ISA.
7e2ec16e 181
c571d2c8 182=head1 WARNINGS
183
184=head2 Methods in Catalyst::Dispatcher
185
8dd2f514 186The following methods in Catalyst::Dispatcher are likely to change
c571d2c8 187significantly in the 5.8X release series, and therefore their use is highly
188deprecated.
189
190=over
191
8dd2f514 192=item tree
c571d2c8 193
8dd2f514 194=item dispatch_types
c571d2c8 195
8dd2f514 196=item registered_dispatch_types
c571d2c8 197
8dd2f514 198=item method_action_class
c571d2c8 199
8dd2f514 200=item action_hash
c571d2c8 201
202=item container_hash
203
204=back
205
206The first time one of these methods is called, a warning will be emitted:
7e2ec16e 207
208 Class $class is calling the deprecated method Catalyst::Dispatcher::$public_method_name,\n"
209 . "this will be removed in Catalyst 5.9X"
210
c571d2c8 211You should B<NEVER> be calling any of these methods from application code.
212
8dd2f514 213Plugins authors and maintainers whos plugins need to call these methods should
214email the development list to discuss your use-case, and what a better API
215should look like.
7e2ec16e 216
5687c7f9 217=head2 require $class was successful but the package is not defined.
7e2ec16e 218
8dd2f514 219In this version of Catalyst, if a component is loaded from disk, but no symbols
220are defined in that component's namespace after it is loaded, this warning will
221be issued.
7e2ec16e 222
10011c19 223This is to protect against confusing bugs caused by mis-typing package names.
7e2ec16e 224
5687c7f9 225This will become a fatal error in a future version.
7e2ec16e 226
5687c7f9 227=head2 $c->plugin method
228
8dd2f514 229Calling the plugin method is deprecated, and calling it at runtime is B<highly
230deprecated>.
7e2ec16e 231
8dd2f514 232Instead you are recommended to use L< Catalyst::Model::Adaptor > or similar to
233compose the functionality you need outside of the main application namespace.
7e2ec16e 234
235=cut