Also see Moose::Manual::Delta for more details of, and workarounds
for, noteworthy changes.
+0.74 Tue, April 7, 2009
* Moose::Meta::Role
* Moose::Meta::Method::Destructor
- Include stack traces in the deprecation warnings.
(Florian Ragwitz)
+ * Moose::Meta::Class
+ - Removed the long-deprecated _apply_all_roles method.
+
+ * Moose::Meta::TypeContsraint
+ - Removed the long-deprecated union method.
+
+
0.73_02 Mon, April 6, 2009
* More deprecations and renamings
- Moose::Meta::Method::Constructor
return $self;
}
-# NOTE:
-# this was crap anyway, see
-# Moose::Util::apply_all_roles
-# instead
-sub _apply_all_roles {
- Carp::croak 'DEPRECATED: use Moose::Util::apply_all_roles($meta, @roles) instead'
-}
-
sub _process_attribute {
my ( $self, $name, @args ) = @_;
return $class->new(%opts, parent => $self);
}
-## this should get deprecated actually ...
-
-sub union { Carp::croak "DEPRECATED" }
-
1;
__END__
],
'Moose::Meta::TypeCoercion' => ['compile_type_coercion'],
'Moose::Meta::TypeCoercion::Union' => ['compile_type_coercion'],
- 'Moose::Meta::TypeConstraint' => [ 'compile_type_constraint', 'union' ],
+ 'Moose::Meta::TypeConstraint' => [ 'compile_type_constraint' ],
'Moose::Meta::TypeConstraint::Class' =>
[qw( equals is_a_type_of is_a_subtype_of )],
'Moose::Meta::TypeConstraint::Enum' =>