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