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