List assignment to MX::Emulate::CAF accessors now works.
[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
5687c7f9 108Previously if your new method returned a false value,
7e2ec16e 109
5687c7f9 110Previously, if you had a component which inherited from Catalyst::COMPONENT, but
111overrode the new method, to return false, then your class' configuration would be blessed into a hash on your behalf,
112and this would be returned from the COMPONENT method. T
7e2ec16e 113
5687c7f9 114This behaviour makes no sense, and so has been removed.. You are recommended to implement your own new method
115in components, instead, you should inherit the new method from Catalyst::Component, and use Moose's BUILD functionality
116to perform 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
5687c7f9 126Previously, writing to a class data accessor would copy the accessor method down into your package.
7e2ec16e 127
5687c7f9 128This behavior has been removed. Whilst the class data is still stored per-class, it is stored on
129the metaclass of the class defining the accessor.
7e2ec16e 130
5687c7f9 131Therefore anything relying on the side-effect of the accessor being copied down will be broken.
7e2ec16e 132
5687c7f9 133=head2 Extending Catalyst::Request or other classes in an ad-hoc manor using mk_accessors
7e2ec16e 134
5687c7f9 135Previously, it was possible to add additional accessors to Catalyst::Request (or other classes)
136by calling the mk_accessors class method.
7e2ec16e 137
5687c7f9 138This is no longer supported - users should make a sub-class of the class who's behavior they would
139like to change, rather than globally polluting the Catalyst objects.
8be895a7 140
10011c19 141=head2 Confused multiple inheritance with Catalyst::Component::COMPONENT
8be895a7 142
5687c7f9 143Warning message:
7e2ec16e 144
5687c7f9 145 There is a COMPONENT method resolving after Catalyst::Component
146 in ${next_package}.
147
148This means that one of the packages on the right hand side of
149Catalyst::Component in your Class' inheritance hierarchy defines
150a COMPONENT method.
7e2ec16e 151
5687c7f9 152Previously, Catalyst's COMPONENT method would delegate to the
153method on the right hand side, which could then delegate back again
154with NEXT. This (as it is insane), is no longer supported, as it
155makes no sense with C3 method dispatch order.
156
157Therefore the correct fix is to re-arrange your class' inheritance
158hierarchy so that the COMPONENT method you would like to inherit is
159the first COMPONENT method in your @ISA.
7e2ec16e 160
c571d2c8 161=head1 WARNINGS
162
163=head2 Methods in Catalyst::Dispatcher
164
165The following methods in Catalyst::Dispatcher are likely to change
166significantly in the 5.8X release series, and therefore their use is highly
167deprecated.
168
169=over
170
171=item tree
172
173=item dispatch_types
174
175=item registered_dispatch_types
176
177=item method_action_class
178
179=item action_hash
180
181=item container_hash
182
183=back
184
185The first time one of these methods is called, a warning will be emitted:
7e2ec16e 186
187 Class $class is calling the deprecated method Catalyst::Dispatcher::$public_method_name,\n"
188 . "this will be removed in Catalyst 5.9X"
189
c571d2c8 190You should B<NEVER> be calling any of these methods from application code.
191
192Plugins authors and maintainers whos plugins need to call these methods
193should email the development list to discuss your use-case, and what a
194better API should look like.
7e2ec16e 195
5687c7f9 196=head2 require $class was successful but the package is not defined.
7e2ec16e 197
5687c7f9 198In this version of Catalyst, if a component is loaded from disk, but no symbols are defined in that component's namespace
199after it is loaded, this warning will be issued.
7e2ec16e 200
10011c19 201This is to protect against confusing bugs caused by mis-typing package names.
7e2ec16e 202
5687c7f9 203This will become a fatal error in a future version.
7e2ec16e 204
5687c7f9 205=head2 $c->plugin method
206
207Calling the plugin method is deprecated, and calling it at runtime is B<highly deprecated>.
7e2ec16e 208
5687c7f9 209Instead you are recommended to use L< Catalyst::Model::Adaptor > or similar to compose the functionality
210you need outside of the main application namespace.
7e2ec16e 211
212=cut