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