Revision history for MooseX-UndefTolerant
+{{$NEXT}}
+ * No longer apply UndefTolerant behaviour to attributes with a type
+ constraint that handles undef (or those with no type constraint at all).
+ (Karen Etheridge)
+
0.09 March 2, 2011
* Add missing test prereq on Test::Fatal. (Dave Rolsky)
the attributes they will not be initialized, effectively behaving as if you
had not provided a value at all.
+You can also apply the 'UndefTolerant' trait to individual attributes. See See
+L<MooseX::UndefTolerant::Attribute> for details.
+
+There will be no change in behaviour to any attribute with a type constraint
+that accepts undef values (for example C<Maybe> types), as it is presumed that
+since the type is already "undef tolerant", there is no need to avoid
+initializing the attribute value with C<undef>.
+
=head1 MOTIVATION
I often found myself in this quandry: