rename alias and excludes to -alias and -excludes
[gitmo/Moose.git] / lib / Moose / Manual / Delta.pod
CommitLineData
600f7f85 1=pod
2
3=head1 NAME
4
5Moose::Manual::Delta - Important Changes in Moose
6
7=head1 DESCRIPTION
8
0f13f53c 9This documents any important or noteworthy changes in Moose, with a
10focus on backwards. This does duplicate data from the F<Changes> file,
11but aims to provide more details and when possible workarounds.
12
13Besides helping keep up with changes, you can also use this document
14for finding the lowest version of Moose that supported a given
15feature. If you encounter a problem and have a solution but don't see
16it documented here, or think we missed an important feature, please
17send us a patch.
600f7f85 18
8a8856de 19=head1 Version 0.89
20
21C<< use Moose -metaclass => 'Foo' >> now does alias resolution, just like
22C<-traits> (and the C<metaclass> and C<traits> options to C<has>).
23
27f2f43f 24Added two functions C<meta_class_alias> and C<meta_attribute_alias> to
25L<Moose::Util>, to simplify aliasing metaclasses and metatraits. This is
26a wrapper around the old
27
28 package Moose::Meta::Class::Custom::Trait::FooTrait;
29 sub register_implementation { 'My::Meta::Trait' }
30
31way of doing this.
32
c8b8d92f 33The C<alias> and C<excludes> role parameters have been renamed to C<-alias>
34and C<-excludes>. The old names still work, but new code should use the new
35names, and eventually the old ones will be deprecated and removed.
36
4831e2de 37=head1 Version 0.84
38
9f52cce5 39When an attribute generates I<no> accessors, we now warn. This is to help
40users who forget the C<is> option. If you really do not want any accessors,
3de02fd8 41you can use C<< is => 'bare' >>. You can maintain back compat with older
42versions of Moose by using something like:
43
44 ($Moose::VERSION >= 0.84 ? is => 'bare' : ())
9f52cce5 45
46When an accessor overwrites an existing method, we now warn. To work around
47this warning (if you really must have this behavior), you can explicitly
48remove the method before creating it as an accessor:
49
50 sub foo {}
51
52 __PACKAGE__->meta->remove_method('foo');
53
54 has foo => (
55 is => 'ro',
56 );
57
58When an unknown option is passed to C<has>, we now warn. You can silence
59the warning by fixing your code. :)
60
4831e2de 61The C<Role> type has been deprecated. On its own, it was useless,
62since it just checked C<< $object->can('does') >>. If you were using
63it as a parent type, just call C<role_type('Role::Name')> to create an
64appropriate type instead.
65
7d6b451f 66=head1 Version 0.78
67
68C<use Moose::Exporter;> now imports C<strict> and C<warnings> into packages
69that use it.
70
c3fdacda 71=head1 Version 0.77
72
73C<DEMOLISHALL> and C<DEMOLISH> now receive an argument indicating whether or
74not we are in global destruction.
75
00c61603 76=head1 Version 0.76
77
9f0b3b64 78Type constraints no longer run coercions for a value that already matches the
79constraint. This may affect some (arguably buggy) edge case coercions that
80rely on side effects in the C<via> clause.
81
f869fc4a 82=head1 Version 0.75
83
84L<Moose::Exporter> now accepts the C<-metaclass> option for easily
85overriding the metaclass (without L<metaclass>). This works for classes
86and roles.
87
39ab7714 88=head1 Version 0.74
89
85cf0647 90Added a C<duck_type> sugar function to L<Moose::Util::TypeConstraints>
91to make integration with non-Moose classes easier. It simply checks if
92C<< $obj->can() >> a list of methods.
39ab7714 93
612fd754 94A number of methods (mostly inherited from L<Class::MOP>) have been
95renamed with a leading underscore to indicate their internal-ness. The
96old method names will still work for a while, but will warn that the
97method has been renamed. In a few cases, the method will be removed
98entirely in the future. This may affect MooseX authors who were using
99these methods.
100
600f7f85 101=head1 Version 0.73
102
0f13f53c 103Calling C<subtype> with a name as the only argument now throws an
600f7f85 104exception. If you want an anonymous subtype do:
105
106 my $subtype = subtype as 'Foo';
107
0f13f53c 108This is related to the changes in version 0.71_01.
600f7f85 109
501db4e6 110The C<is_needed> method in L<Moose::Meta::Method::Destructor> is now
111only usable as a class method. Previously, it worked as a class or
112object method, with a different internal implementation for each
113version.
114
115The internals of making a class immutable changed a lot in Class::MOP
1160.78_02, and Moose's internals have changed along with it. The
117external C<< $metaclass->make_immutable >> method still works the same
118way.
119
600f7f85 120=head1 Version 0.72
121
0f13f53c 122A mutable class accepted C<< Foo->new(undef) >> without complaint,
123while an immutable class would blow up with an unhelpful error. Now,
124in both cases we throw a helpful error instead.
600f7f85 125
0f13f53c 126This "feature" was originally added to allow for cases such as this:
600f7f85 127
128 my $args;
0f13f53c 129
130 if ( something() ) {
131 $args = {...};
600f7f85 132 }
0f13f53c 133
600f7f85 134 return My::Class->new($args);
135
0f13f53c 136But we decided this is a bad idea and a little too magical, because it
137can easily mask real errors.
600f7f85 138
139=head1 Version 0.71_01
140
0f13f53c 141Calling C<type> or C<subtype> without the sugar helpers (C<as>,
142C<where>, C<message>) is now deprecated.
143
144As a side effect, this meant we ended up using Perl prototypes on
145C<as>, and code like this will no longer work:
600f7f85 146
147 use Moose::Util::TypeConstraints;
148 use Declare::Constraints::Simple -All;
0f13f53c 149
150 subtype 'ArrayOfInts'
600f7f85 151 => as 'ArrayRef'
152 => IsArrayRef(IsInt);
153
154Instead it must be changed to this:
155
0f13f53c 156 subtype(
157 'ArrayOfInts' => {
158 as => 'ArrayRef',
159 where => IsArrayRef(IsInt)
160 }
600f7f85 161 );
162
0f13f53c 163If you want to maintain backwards compat with older versions of Moose,
164you must explicitly test Moose's C<VERSION>:
600f7f85 165
0f13f53c 166 if ( Moose->VERSION < 0.71_01 ) {
167 subtype 'ArrayOfInts'
600f7f85 168 => as 'ArrayRef'
169 => IsArrayRef(IsInt);
170 }
171 else {
0f13f53c 172 subtype(
173 'ArrayOfInts' => {
174 as => 'ArrayRef',
175 where => IsArrayRef(IsInt)
176 }
600f7f85 177 );
178 }
179
180=head1 Version 0.70
181
0f13f53c 182We no longer pass the meta-attribute object as a final argument to
183triggers. This actually changed for inlined code a while back, but the
184non-inlined version and the docs were still out of date.
185
186If by some chance you actually used this feature, the workaround is
187simple. You fetch the attribute object from out of the C<$self>
188that is passed as the first argument to trigger, like so:
189
190 has 'foo' => (
191 is => 'ro',
192 isa => 'Any',
193 trigger => sub {
194 my ( $self, $value ) = @_;
195 my $attr = $self->meta->find_attribute_by_name('foo');
196
197 # ...
198 }
199 );
600f7f85 200
201=head1 Version 0.66
202
0f13f53c 203If you created a subtype and passed a parent that Moose didn't know
204about, it simply ignored the parent. Now it automatically creates the
205parent as a class type. This may not be what you want, but is less
206broken than before.
600f7f85 207
0f13f53c 208You could declare a name with subtype such as "Foo!Bar". Moose would
209accept this allowed, but if you used it in a parameterized type such
210as "ArrayRef[Foo!Bar]" it wouldn't work. We now do some vetting on
211names created via the sugar functions, so that they can only contain
212alphanumerics, ":", and ".".
600f7f85 213
214=head1 Version 0.65
215
216Methods created via an attribute can now fulfill a C<requires>
0f13f53c 217declaration for a role. Honestly we don't know why Stevan didn't make
218this work originally, he was just insane or something.
600f7f85 219
0f13f53c 220Stack traces from inlined code will now report the line and file as
221being in your class, as opposed to in Moose guts.
600f7f85 222
223=head1 Version 0.62_02
224
0f13f53c 225When a class does not provide all of a role's required methods, the
226error thrown now mentions all of the missing methods, as opposed to
227just the first missing method.
600f7f85 228
0f13f53c 229Moose will no longer inline a constructor for your class unless it
5e26e3f2 230inherits its constructor from Moose::Object, and will warn when it
231doesn't inline. If you want to force inlining anyway, pass
b84f64da 232C<< replace_constructor => 1 >> to C<make_immutable>.
0f13f53c 233
234If you want to get rid of the warning, pass C<< inline_constructor =>
fbf7ba85 2350 >>.
600f7f85 236
237=head1 Version 0.62
238
0f13f53c 239Removed the (deprecated) C<make_immutable> keyword.
600f7f85 240
241Removing an attribute from a class now also removes delegation
0f13f53c 242(C<handles>) methods installed for that attribute. This is correct
600f7f85 243behavior, but if you were wrongly relying on it you might get bit.
244
245=head1 Version 0.58
246
0f13f53c 247Roles now add methods by calling C<add_method>, not
248C<alias_method>. They make sure to always provide a method object,
249which will be cloned internally. This means that it is now possible to
250track the source of a method provided by a role, and even follow its
251history through intermediate roles. This means that methods added by
252a role now show up when looking at a class's method list/map.
253
254Parameter and Union args are now sorted, this makes Int|Str the same
255constraint as Str|Int. Also, incoming type constraint strings are
256normalized to remove all whitespace differences. This is mostly for
257internals and should not affect outside code.
258
259L<Moose::Exporter> will no longer remove a subroutine that the
260exporting package re-exports. Moose re-exports the Carp::confess
261function, among others. The reasoning is that we cannot know whether
262you have also explicitly imported those functions for your own use, so
263we err on the safe side and always keep them.
600f7f85 264
265=head1 Version 0.56
266
0f13f53c 267C<Moose::init_meta> should now be called as a method.
600f7f85 268
0f13f53c 269New modules for extension writers, L<Moose::Exporter> and
270L<Moose::Util::MetaRole>.
600f7f85 271
272=head1 Version 0.55_01
273
274Implemented metaclass traits (and wrote a recipe for it):
275
276 use Moose -traits => 'Foo'
277
278This should make writing small Moose extensions a little
279easier.
280
281=head1 Version 0.55
282
283Fixed C<coerce> to accept anon types just like C<subtype> can.
284So that you can do:
285
286 coerce $some_anon_type => from 'Str' => via { ... };
287
288=head1 Version 0.51
289
52da380a 290Added C<BUILDARGS>, a new step in C<< Moose::Object->new() >>.
600f7f85 291
292=head1 Version 0.49
293
0f13f53c 294Fixed how the C<< is => (ro|rw) >> works with custom defined
295C<reader>, C<writer> and C<accessor> options. See the below table for
600f7f85 296details:
297
298 is => ro, writer => _foo # turns into (reader => foo, writer => _foo)
299 is => rw, writer => _foo # turns into (reader => foo, writer => _foo)
300 is => rw, accessor => _foo # turns into (accessor => _foo)
301 is => ro, accessor => _foo # error, accesor is rw
302
303=head1 Version 0.45
304
0f13f53c 305The C<before/around/after> method modifiers now support regexp
306matching of method names. NOTE: this only works for classes, it is
307currently not supported in roles, but, ... patches welcome.
600f7f85 308
0f13f53c 309The C<has> keyword for roles now accepts the same array ref form that
310L<Moose>.pm does for classes.
600f7f85 311
0f13f53c 312A trigger on a read-only attribute is no longer an error, as it's
313useful to trigger off of the constructor.
600f7f85 314
0f13f53c 315Subtypes of parameterizable types now are parameterizable types
316themselves.
600f7f85 317
318=head1 Version 0.44
319
0f13f53c 320Fixed issue where C<DEMOLISHALL> was eating the value in C<$@>, and so
321not working correctly. It still kind of eats them, but so does vanilla
322perl.
600f7f85 323
324=head1 Version 0.41
325
0f13f53c 326Inherited attributes may now be extended without restriction on the
600f7f85 327type ('isa', 'does').
328
0f13f53c 329The entire set of Moose::Meta::TypeConstraint::* classes were
330refactored in this release. If you were relying on their internals you
331should test your code carefully.
600f7f85 332
333=head1 Version 0.40
334
0f13f53c 335Documenting the use of '+name' with attributes that come from recently
336composed roles. It makes sense, people are using it, and so why not
337just officially support it.
600f7f85 338
0f13f53c 339The C<< Moose::Meta::Class->create >> method now supports roles.
600f7f85 340
86b96832 341It is now possible to make anonymous enum types by passing C<enum> an
342array reference instead of the C<< enum $name => @values >>.
600f7f85 343
344=head1 Version 0.37
345
0f13f53c 346Added the C<make_immutable> keyword as a shortcut to calling
347C<make_immutable> on the meta object. This eventually got removed!
600f7f85 348
0f13f53c 349Made C<< init_arg => undef >> work in Moose. This means "do not accept
600f7f85 350a constructor parameter for this attribute".
351
0f13f53c 352Type errors now use the provided message. Prior to this release they
353didn't.
600f7f85 354
355=head1 Version 0.34
356
357Moose is now a postmodern object system :)
358
0f13f53c 359The Role system was completely refactored. It is 100% backwards
360compat, but the internals were totally changed. If you relied on the
361internals then you are advised to test carefully.
600f7f85 362
363Added method exclusion and aliasing for Roles in this release.
364
0f13f53c 365Added the L<Moose::Util::TypeConstraints::OptimizedConstraints>
366module.
600f7f85 367
0f13f53c 368Passing a list of values to an accessor (which is only expecting one
369value) used to be silently ignored, now it throws an error.
600f7f85 370
371=head1 Version 0.26
372
0f13f53c 373Added parameterized types and did a pretty heavy refactoring of the
374type constraint system.
600f7f85 375
0f13f53c 376Better framework extendability and better support for "making your own
377Moose".
600f7f85 378
379=head1 Version 0.25 or before
380
0f13f53c 381Honestly, you shouldn't be using versions of Moose that are this old,
382so many bug fixes and speed improvements have been made you would be
383crazy to not upgrade.
600f7f85 384
0f13f53c 385Also, I am tired of going through the Changelog so I am stopping here,
386if anyone would like to continue this please feel free.
600f7f85 387
388=head1 AUTHOR
389
390Stevan Little E<lt>stevan@iinteractive.comE<gt>
391
392=head1 COPYRIGHT AND LICENSE
393
394Copyright 2009 by Infinity Interactive, Inc.
395
396L<http://www.iinteractive.com>
397
398This library is free software; you can redistribute it and/or modify
399it under the same terms as Perl itself.
400
0f13f53c 401=cut