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