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