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