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