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