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