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