Doc for MX::E::CAF list assign bug, TODO updates incl Prefork tested
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Upgrading.pod
index 0460754..a2d30ba 100644 (file)
@@ -105,6 +105,17 @@ Therefore the correct fix is to re-arrange your class' inheritance
 hierarchy so that the COMPONENT method you would like to inherit is
 the first COMPONENT method in your @ISA. 
 
+=head2 Assigning lists to accessors
+
+Accessors generated by Class::Accessor::Fast will, when multiple values
+are assigned to them, store a reference to a list automatically for you.
+
+This is not currently supported by MooseX::Emulate::Class::Accessor::Fast,
+and only the first value in the list will be stored.
+
+If you are relying on this behavior, and inheriting mk_accessors from a
+Catalyst component, then your code will fail.
+
 =head1 WARNINGS
 
 =head2 Methods in Catalyst::Dispatcher