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