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