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