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