stick the call to BUILDALL in ->meta->new_object, rather than ->new
[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 =over 4
20
21 =item L<Moose::Object/BUILD> methods are now called when calling C<new_object>
22
23 Previously, C<BUILD> methods would only be called from C<Moose::Object::new>,
24 but now they are also called when constructing an object via
25 C<Moose::Meta::Class::new_object>. C<BUILD> methods are an inherent part of the
26 object construction process, and this should make C<< $meta->new_object >>
27 actually usable without forcing people to use C<< $meta->name->new >>.
28
29 =back
30
31 =head1 1.02
32
33 =over 4
34
35 =item Moose::Meta::TypeConstraint::Class is_subtype_of behavior
36
37 Earlier versions of L<is_subtype_of|Moose::Meta::TypeConstraint::Class/is_subtype_of>
38 would incorrectly return true when called with itself, its own TC name or
39 its class name as an argument. (i.e. $foo_tc->is_subtype_of('Foo') == 1) This
40 behavior was a caused by C<isa> being checked before the class name. The old
41 behavior can be accessed with L<is_type_of|Moose::Meta::TypeConstraint::Class/is_type_of>
42
43 =back
44
45 =head1 1.00
46
47 =over 4
48
49 =item Moose::Meta::Attribute::Native::Trait::Code no longer creates reader methods by default
50
51 Earlier versions of L<Moose::Meta::Attribute::Native::Trait::Code> created
52 read-only accessors for the attributes it's been applied to, even if you didn't
53 ask for it with C<< is => 'ro' >>. This incorrect behaviour has now been fixed.
54
55 =back
56
57 =head1 0.95
58
59 =over 4
60
61 =item Moose::Util add_method_modifier behavior
62
63 add_method_modifier (and subsequently the sugar functions Moose::before,
64 Moose::after, and Moose::around) can now accept arrayrefs, with the same
65 behavior as lists. Types other than arrayref and regexp result in an error.
66
67 =back
68
69 =head1 0.93_01 and 0.94
70
71 =over 4
72
73 =item Moose::Util::MetaRole API has changed
74
75 The C<apply_metaclass_roles> function is now called C<apply_metaroles>. The
76 way arguments are supplied has been changed to force you to distinguish
77 between metaroles applied to L<Moose::Meta::Class> (and helpers) versus
78 L<Moose::Meta::Role>.
79
80 The old API still works, but will warn in a future release, and eventually be
81 removed.
82
83 =item Moose::Meta::Role has real attributes
84
85 The attributes returned by L<Moose::Meta::Role> are now instances of the
86 L<Moose::Meta::Role::Attribute> class, instead of bare hash references.
87
88 =item "no Moose" now removes C<blessed> and C<confess>
89
90 Moose is now smart enough to know exactly what it exported, even when it
91 re-exports functions from other packages. When you unimport Moose, it will
92 remove these functions from your namespace unless you I<also> imported them
93 directly from their respective packages.
94
95 If you have a C<no Moose> in your code I<before> you call C<blessed> or
96 C<confess>, your code will break. You can either move the C<no Moose> call
97 later in your code, or explicitly import the relevant functions from the
98 packages that provide them.
99
100 =item L<Moose::Exporter> is smarter about unimporting re-exports
101
102 The change above comes from a general improvement to L<Moose::Exporter>. It
103 will now unimport any function it exports, even if that function is a
104 re-export from another package.
105
106 =item Attributes in roles can no longer override class attributes with "+foo"
107
108 Previously, this worked more or less accidentally, because role attributes
109 weren't objects. This was never documented, but a few MooseX modules took
110 advantage of this.
111
112 =item The composition_class_roles attribute in L<Moose::Meta::Role> is now a method
113
114 This was done to make it possible for roles to alter the the list of
115 composition class roles by applying a method modifiers. Previously, this was
116 an attribute and MooseX modules override it. Since that no longer works, this
117 was made a method.
118
119 This I<should> be an attribute, so this may switch back to being an attribute
120 in the future if we can figure out how to make this work.
121
122 =back
123
124 =head1 0.93
125
126 =over 4
127
128 =item Calling $object->new() is no longer deprecated
129
130 We decided to undeprecate this. Now it just works.
131
132 =item Both C<get_method_map> and C<get_attribute_map> is deprecated
133
134 These metaclass methods were never meant to be public, and they are both now
135 deprecated. The work around if you still need the functionality they provided
136 is to iterate over the list of names manually.
137
138     my %fields = map { $_ => $meta->get_attribute($_) } $meta->get_attribute_list;
139
140 This was actually a change in L<Class::MOP>, but this version of Moose
141 requires a version of L<Class::MOP> that includes said change.
142
143 =back
144
145 =head1 0.90
146
147 =over 4
148
149 =item Added Native delegation for Code refs
150
151 See L<Moose::Meta::Attribute::Native::Trait::Code> for details.
152
153 =item Calling $object->new() is deprecated
154
155 Moose has long supported this, but it's never really been documented, and we
156 don't think this is a good practice. If you want to construct an object from
157 an existing object, you should provide some sort of alternate constructor like
158 C<< $object->clone >>.
159
160 Calling C<< $object->new >> now issues a warning, and will be an error in a
161 future release.
162
163 =item Moose no longer warns if you call C<make_immutable> for a class with mutable ancestors
164
165 While in theory this is a good thing to warn about, we found so many
166 exceptions to this that doing this properly became quite problematic.
167
168 =back
169
170 =head1 Version 0.89_02
171
172 =over 4
173
174 =item New Native delegation methods from L<List::Util> and L<List::MoreUtils>
175
176 In particular, we now have C<reduce>, C<shuffle>, C<uniq>, and C<natatime>.
177
178 =item The Moose::Exporter with_caller feature is now deprecated
179
180 Use C<with_meta> instead. The C<with_caller> option will start warning in a
181 future release.
182
183 =item Moose now warns if you call C<make_immutable> for a class with mutable ancestors
184
185 This is dangerous because modifying a class after a subclass has been
186 immutabilized will lead to incorrect results in the subclass, due to inlining,
187 caching, etc. This occasionally happens accidentally, when a class loads one
188 of its subclasses in the middle of its class definition, so pointing out that
189 this may cause issues should be helpful. Metaclasses (classes that inherit
190 from L<Class::MOP::Object>) are currently exempt from this check, since at the
191 moment we aren't very consistent about which metaclasses we immutabilize.
192
193 =item C<enum> and C<duck_type> now take arrayrefs for all forms
194
195 Previously, calling these functions with a list would take the first element of
196 the list as the type constraint name, and use the remainder as the enum values
197 or method names. This makes the interface inconsistent with the anon-type forms
198 of these functions (which must take an arrayref), and a free-form list where
199 the first value is sometimes special is hard to validate (and harder to give
200 reasonable error messages for). These functions have been changed to take
201 arrayrefs in all their forms - so, C<< enum 'My::Type' => [qw(foo bar)] >> is
202 now the preferred way to create an enum type constraint. The old syntax still
203 works for now, but it will hopefully be deprecated and removed in a future
204 release.
205
206 =back
207
208 =head1 Version 0.89_01
209
210 L<Moose::Meta::Attribute::Native> has been moved into the Moose core from
211 L<MooseX::AttributeHelpers>.  Major changes include:
212
213 =over 4
214
215 =item C<traits>, not C<metaclass>
216
217 Method providers are only available via traits.
218
219 =item C<handles>, not C<provides> or C<curries>
220
221 The C<provides> syntax was like core Moose C<< handles => HASHREF >>
222 syntax, but with the keys and values reversed.  This was confusing,
223 and AttributeHelpers now uses C<< handles => HASHREF >> in a way that
224 should be intuitive to anyone already familiar with how it is used for
225 other attributes.
226
227 The C<curries> functionality provided by AttributeHelpers has been
228 generalized to apply to all cases of C<< handles => HASHREF >>, though
229 not every piece of functionality has been ported (currying with a
230 CODEREF is not supported).
231
232 =item C<empty> is now C<is_empty>, and means empty, not non-empty
233
234 Previously, the C<empty> method provided by Arrays and Hashes returned true if
235 the attribute was B<not> empty (no elements).  Now it returns true if the
236 attribute B<is> empty. It was also renamed to C<is_empty>, to reflect this.
237
238 =item C<find> was renamed to C<first>, and C<first> and C<last> were removed
239
240 L<List::Util> refers to the functionality that we used to provide under C<find>
241 as L<first|List::Util/first>, so that will likely be more familiar (and will
242 fit in better if we decide to add more List::Util functions). C<first> and
243 C<last> were removed, since their functionality is easily duplicated with
244 curries of C<get>.
245
246 =item Helpers that take a coderef of one argument now use C<$_>
247
248 Subroutines passed as the first argument to C<first>, C<map>, and C<grep> now
249 receive their argument in C<$_> rather than as a parameter to the subroutine.
250 Helpers that take a coderef of two or more arguments remain using the argument
251 list (there are technical limitations to using C<$a> and C<$b> like C<sort>
252 does).
253
254 See L<Moose::Meta::Attribute::Native> for the new documentation.
255
256 =back
257
258 The C<alias> and C<excludes> role parameters have been renamed to C<-alias>
259 and C<-excludes>. The old names still work, but new code should use the new
260 names, and eventually the old ones will be deprecated and removed.
261
262 =head1 Version 0.89
263
264 C<< use Moose -metaclass => 'Foo' >> now does alias resolution, just like
265 C<-traits> (and the C<metaclass> and C<traits> options to C<has>).
266
267 Added two functions C<meta_class_alias> and C<meta_attribute_alias> to
268 L<Moose::Util>, to simplify aliasing metaclasses and metatraits. This is
269 a wrapper around the old
270
271   package Moose::Meta::Class::Custom::Trait::FooTrait;
272   sub register_implementation { 'My::Meta::Trait' }
273
274 way of doing this.
275
276 =head1 Version 0.84
277
278 When an attribute generates I<no> accessors, we now warn. This is to help
279 users who forget the C<is> option. If you really do not want any accessors,
280 you can use C<< is => 'bare' >>. You can maintain back compat with older
281 versions of Moose by using something like:
282
283     ($Moose::VERSION >= 0.84 ? is => 'bare' : ())
284
285 When an accessor overwrites an existing method, we now warn. To work around
286 this warning (if you really must have this behavior), you can explicitly
287 remove the method before creating it as an accessor:
288
289     sub foo {}
290
291     __PACKAGE__->meta->remove_method('foo');
292
293     has foo => (
294         is => 'ro',
295     );
296
297 When an unknown option is passed to C<has>, we now warn. You can silence
298 the warning by fixing your code. :)
299
300 The C<Role> type has been deprecated. On its own, it was useless,
301 since it just checked C<< $object->can('does') >>. If you were using
302 it as a parent type, just call C<role_type('Role::Name')> to create an
303 appropriate type instead.
304
305 =head1 Version 0.78
306
307 C<use Moose::Exporter;> now imports C<strict> and C<warnings> into packages
308 that use it.
309
310 =head1 Version 0.77
311
312 C<DEMOLISHALL> and C<DEMOLISH> now receive an argument indicating whether or
313 not we are in global destruction.
314
315 =head1 Version 0.76
316
317 Type constraints no longer run coercions for a value that already matches the
318 constraint.  This may affect some (arguably buggy) edge case coercions that
319 rely on side effects in the C<via> clause.
320
321 =head1 Version 0.75
322
323 L<Moose::Exporter> now accepts the C<-metaclass> option for easily
324 overriding the metaclass (without L<metaclass>). This works for classes
325 and roles.
326
327 =head1 Version 0.74
328
329 Added a C<duck_type> sugar function to L<Moose::Util::TypeConstraints>
330 to make integration with non-Moose classes easier. It simply checks if
331 C<< $obj->can() >> a list of methods.
332
333 A number of methods (mostly inherited from L<Class::MOP>) have been
334 renamed with a leading underscore to indicate their internal-ness. The
335 old method names will still work for a while, but will warn that the
336 method has been renamed. In a few cases, the method will be removed
337 entirely in the future. This may affect MooseX authors who were using
338 these methods.
339
340 =head1 Version 0.73
341
342 Calling C<subtype> with a name as the only argument now throws an
343 exception. If you want an anonymous subtype do:
344
345     my $subtype = subtype as 'Foo';
346
347 This is related to the changes in version 0.71_01.
348
349 The C<is_needed> method in L<Moose::Meta::Method::Destructor> is now
350 only usable as a class method. Previously, it worked as a class or
351 object method, with a different internal implementation for each
352 version.
353
354 The internals of making a class immutable changed a lot in Class::MOP
355 0.78_02, and Moose's internals have changed along with it. The
356 external C<< $metaclass->make_immutable >> method still works the same
357 way.
358
359 =head1 Version 0.72
360
361 A mutable class accepted C<< Foo->new(undef) >> without complaint,
362 while an immutable class would blow up with an unhelpful error. Now,
363 in both cases we throw a helpful error instead.
364
365 This "feature" was originally added to allow for cases such as this:
366
367   my $args;
368
369   if ( something() ) {
370       $args = {...};
371   }
372
373   return My::Class->new($args);
374
375 But we decided this is a bad idea and a little too magical, because it
376 can easily mask real errors.
377
378 =head1 Version 0.71_01
379
380 Calling C<type> or C<subtype> without the sugar helpers (C<as>,
381 C<where>, C<message>) is now deprecated.
382
383 As a side effect, this meant we ended up using Perl prototypes on
384 C<as>, and code like this will no longer work:
385
386   use Moose::Util::TypeConstraints;
387   use Declare::Constraints::Simple -All;
388
389   subtype 'ArrayOfInts'
390       => as 'ArrayRef'
391       => IsArrayRef(IsInt);
392
393 Instead it must be changed to this:
394
395   subtype(
396       'ArrayOfInts' => {
397           as    => 'ArrayRef',
398           where => IsArrayRef(IsInt)
399       }
400   );
401
402 If you want to maintain backwards compat with older versions of Moose,
403 you must explicitly test Moose's C<VERSION>:
404
405   if ( Moose->VERSION < 0.71_01 ) {
406       subtype 'ArrayOfInts'
407           => as 'ArrayRef'
408           => IsArrayRef(IsInt);
409   }
410   else {
411       subtype(
412           'ArrayOfInts' => {
413               as    => 'ArrayRef',
414               where => IsArrayRef(IsInt)
415           }
416       );
417   }
418
419 =head1 Version 0.70
420
421 We no longer pass the meta-attribute object as a final argument to
422 triggers. This actually changed for inlined code a while back, but the
423 non-inlined version and the docs were still out of date.
424
425 If by some chance you actually used this feature, the workaround is
426 simple. You fetch the attribute object from out of the C<$self>
427 that is passed as the first argument to trigger, like so:
428
429   has 'foo' => (
430       is      => 'ro',
431       isa     => 'Any',
432       trigger => sub {
433           my ( $self, $value ) = @_;
434           my $attr = $self->meta->find_attribute_by_name('foo');
435
436           # ...
437       }
438   );
439
440 =head1 Version 0.66
441
442 If you created a subtype and passed a parent that Moose didn't know
443 about, it simply ignored the parent. Now it automatically creates the
444 parent as a class type. This may not be what you want, but is less
445 broken than before.
446
447 You could declare a name with subtype such as "Foo!Bar". Moose would
448 accept this allowed, but if you used it in a parameterized type such
449 as "ArrayRef[Foo!Bar]" it wouldn't work. We now do some vetting on
450 names created via the sugar functions, so that they can only contain
451 alphanumerics, ":", and ".".
452
453 =head1 Version 0.65
454
455 Methods created via an attribute can now fulfill a C<requires>
456 declaration for a role. Honestly we don't know why Stevan didn't make
457 this work originally, he was just insane or something.
458
459 Stack traces from inlined code will now report the line and file as
460 being in your class, as opposed to in Moose guts.
461
462 =head1 Version 0.62_02
463
464 When a class does not provide all of a role's required methods, the
465 error thrown now mentions all of the missing methods, as opposed to
466 just the first missing method.
467
468 Moose will no longer inline a constructor for your class unless it
469 inherits its constructor from Moose::Object, and will warn when it
470 doesn't inline. If you want to force inlining anyway, pass
471 C<< replace_constructor => 1 >> to C<make_immutable>.
472
473 If you want to get rid of the warning, pass C<< inline_constructor =>
474 0 >>.
475
476 =head1 Version 0.62
477
478 Removed the (deprecated) C<make_immutable> keyword.
479
480 Removing an attribute from a class now also removes delegation
481 (C<handles>) methods installed for that attribute. This is correct
482 behavior, but if you were wrongly relying on it you might get bit.
483
484 =head1 Version 0.58
485
486 Roles now add methods by calling C<add_method>, not
487 C<alias_method>. They make sure to always provide a method object,
488 which will be cloned internally. This means that it is now possible to
489 track the source of a method provided by a role, and even follow its
490 history through intermediate roles.  This means that methods added by
491 a role now show up when looking at a class's method list/map.
492
493 Parameter and Union args are now sorted, this makes Int|Str the same
494 constraint as Str|Int. Also, incoming type constraint strings are
495 normalized to remove all whitespace differences. This is mostly for
496 internals and should not affect outside code.
497
498 L<Moose::Exporter> will no longer remove a subroutine that the
499 exporting package re-exports. Moose re-exports the Carp::confess
500 function, among others. The reasoning is that we cannot know whether
501 you have also explicitly imported those functions for your own use, so
502 we err on the safe side and always keep them.
503
504 =head1 Version 0.56
505
506 C<Moose::init_meta> should now be called as a method.
507
508 New modules for extension writers, L<Moose::Exporter> and
509 L<Moose::Util::MetaRole>.
510
511 =head1 Version 0.55_01
512
513 Implemented metaclass traits (and wrote a recipe for it):
514
515   use Moose -traits => 'Foo'
516
517 This should make writing small Moose extensions a little
518 easier.
519
520 =head1 Version 0.55
521
522 Fixed C<coerce> to accept anon types just like C<subtype> can.
523 So that you can do:
524
525   coerce $some_anon_type => from 'Str' => via { ... };
526
527 =head1 Version 0.51
528
529 Added C<BUILDARGS>, a new step in C<< Moose::Object->new() >>.
530
531 =head1 Version 0.49
532
533 Fixed how the C<< is => (ro|rw) >> works with custom defined
534 C<reader>, C<writer> and C<accessor> options. See the below table for
535 details:
536
537   is => ro, writer => _foo    # turns into (reader => foo, writer => _foo)
538   is => rw, writer => _foo    # turns into (reader => foo, writer => _foo)
539   is => rw, accessor => _foo  # turns into (accessor => _foo)
540   is => ro, accessor => _foo  # error, accesor is rw
541
542 =head1 Version 0.45
543
544 The C<before/around/after> method modifiers now support regexp
545 matching of method names. NOTE: this only works for classes, it is
546 currently not supported in roles, but, ... patches welcome.
547
548 The C<has> keyword for roles now accepts the same array ref form that
549 L<Moose>.pm does for classes.
550
551 A trigger on a read-only attribute is no longer an error, as it's
552 useful to trigger off of the constructor.
553
554 Subtypes of parameterizable types now are parameterizable types
555 themselves.
556
557 =head1 Version 0.44
558
559 Fixed issue where C<DEMOLISHALL> was eating the value in C<$@>, and so
560 not working correctly. It still kind of eats them, but so does vanilla
561 perl.
562
563 =head1 Version 0.41
564
565 Inherited attributes may now be extended without restriction on the
566 type ('isa', 'does').
567
568 The entire set of Moose::Meta::TypeConstraint::* classes were
569 refactored in this release. If you were relying on their internals you
570 should test your code carefully.
571
572 =head1 Version 0.40
573
574 Documenting the use of '+name' with attributes that come from recently
575 composed roles. It makes sense, people are using it, and so why not
576 just officially support it.
577
578 The C<< Moose::Meta::Class->create >> method now supports roles.
579
580 It is now possible to make anonymous enum types by passing C<enum> an
581 array reference instead of the C<< enum $name => @values >>.
582
583 =head1 Version 0.37
584
585 Added the C<make_immutable> keyword as a shortcut to calling
586 C<make_immutable> on the meta object. This eventually got removed!
587
588 Made C<< init_arg => undef >> work in Moose. This means "do not accept
589 a constructor parameter for this attribute".
590
591 Type errors now use the provided message. Prior to this release they
592 didn't.
593
594 =head1 Version 0.34
595
596 Moose is now a postmodern object system :)
597
598 The Role system was completely refactored. It is 100% backwards
599 compat, but the internals were totally changed. If you relied on the
600 internals then you are advised to test carefully.
601
602 Added method exclusion and aliasing for Roles in this release.
603
604 Added the L<Moose::Util::TypeConstraints::OptimizedConstraints>
605 module.
606
607 Passing a list of values to an accessor (which is only expecting one
608 value) used to be silently ignored, now it throws an error.
609
610 =head1 Version 0.26
611
612 Added parameterized types and did a pretty heavy refactoring of the
613 type constraint system.
614
615 Better framework extendability and better support for "making your own
616 Moose".
617
618 =head1 Version 0.25 or before
619
620 Honestly, you shouldn't be using versions of Moose that are this old,
621 so many bug fixes and speed improvements have been made you would be
622 crazy to not upgrade.
623
624 Also, I am tired of going through the Changelog so I am stopping here,
625 if anyone would like to continue this please feel free.
626
627 =head1 AUTHOR
628
629 Stevan Little E<lt>stevan@iinteractive.comE<gt>
630
631 =head1 COPYRIGHT AND LICENSE
632
633 Copyright 2009 by Infinity Interactive, Inc.
634
635 L<http://www.iinteractive.com>
636
637 This library is free software; you can redistribute it and/or modify
638 it under the same terms as Perl itself.
639
640 =cut