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