docs, changelog for assert_valid
[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
4831e2de 19=head1 Version 0.84
20
9f52cce5 21When an attribute generates I<no> accessors, we now warn. This is to help
22users who forget the C<is> option. If you really do not want any accessors,
3de02fd8 23you can use C<< is => 'bare' >>. You can maintain back compat with older
24versions of Moose by using something like:
25
26 ($Moose::VERSION >= 0.84 ? is => 'bare' : ())
9f52cce5 27
28When an accessor overwrites an existing method, we now warn. To work around
29this warning (if you really must have this behavior), you can explicitly
30remove the method before creating it as an accessor:
31
32 sub foo {}
33
34 __PACKAGE__->meta->remove_method('foo');
35
36 has foo => (
37 is => 'ro',
38 );
39
40When an unknown option is passed to C<has>, we now warn. You can silence
41the warning by fixing your code. :)
42
4831e2de 43The C<Role> type has been deprecated. On its own, it was useless,
44since it just checked C<< $object->can('does') >>. If you were using
45it as a parent type, just call C<role_type('Role::Name')> to create an
46appropriate type instead.
47
7d6b451f 48=head1 Version 0.78
49
50C<use Moose::Exporter;> now imports C<strict> and C<warnings> into packages
51that use it.
52
c3fdacda 53=head1 Version 0.77
54
55C<DEMOLISHALL> and C<DEMOLISH> now receive an argument indicating whether or
56not we are in global destruction.
57
00c61603 58=head1 Version 0.76
59
9f0b3b64 60Type constraints no longer run coercions for a value that already matches the
61constraint. This may affect some (arguably buggy) edge case coercions that
62rely on side effects in the C<via> clause.
63
f869fc4a 64=head1 Version 0.75
65
66L<Moose::Exporter> now accepts the C<-metaclass> option for easily
67overriding the metaclass (without L<metaclass>). This works for classes
68and roles.
69
39ab7714 70=head1 Version 0.74
71
85cf0647 72Added a C<duck_type> sugar function to L<Moose::Util::TypeConstraints>
73to make integration with non-Moose classes easier. It simply checks if
74C<< $obj->can() >> a list of methods.
39ab7714 75
612fd754 76A number of methods (mostly inherited from L<Class::MOP>) have been
77renamed with a leading underscore to indicate their internal-ness. The
78old method names will still work for a while, but will warn that the
79method has been renamed. In a few cases, the method will be removed
80entirely in the future. This may affect MooseX authors who were using
81these methods.
82
600f7f85 83=head1 Version 0.73
84
0f13f53c 85Calling C<subtype> with a name as the only argument now throws an
600f7f85 86exception. If you want an anonymous subtype do:
87
88 my $subtype = subtype as 'Foo';
89
0f13f53c 90This is related to the changes in version 0.71_01.
600f7f85 91
501db4e6 92The C<is_needed> method in L<Moose::Meta::Method::Destructor> is now
93only usable as a class method. Previously, it worked as a class or
94object method, with a different internal implementation for each
95version.
96
97The internals of making a class immutable changed a lot in Class::MOP
980.78_02, and Moose's internals have changed along with it. The
99external C<< $metaclass->make_immutable >> method still works the same
100way.
101
600f7f85 102=head1 Version 0.72
103
0f13f53c 104A mutable class accepted C<< Foo->new(undef) >> without complaint,
105while an immutable class would blow up with an unhelpful error. Now,
106in both cases we throw a helpful error instead.
600f7f85 107
0f13f53c 108This "feature" was originally added to allow for cases such as this:
600f7f85 109
110 my $args;
0f13f53c 111
112 if ( something() ) {
113 $args = {...};
600f7f85 114 }
0f13f53c 115
600f7f85 116 return My::Class->new($args);
117
0f13f53c 118But we decided this is a bad idea and a little too magical, because it
119can easily mask real errors.
600f7f85 120
121=head1 Version 0.71_01
122
0f13f53c 123Calling C<type> or C<subtype> without the sugar helpers (C<as>,
124C<where>, C<message>) is now deprecated.
125
126As a side effect, this meant we ended up using Perl prototypes on
127C<as>, and code like this will no longer work:
600f7f85 128
129 use Moose::Util::TypeConstraints;
130 use Declare::Constraints::Simple -All;
0f13f53c 131
132 subtype 'ArrayOfInts'
600f7f85 133 => as 'ArrayRef'
134 => IsArrayRef(IsInt);
135
136Instead it must be changed to this:
137
0f13f53c 138 subtype(
139 'ArrayOfInts' => {
140 as => 'ArrayRef',
141 where => IsArrayRef(IsInt)
142 }
600f7f85 143 );
144
0f13f53c 145If you want to maintain backwards compat with older versions of Moose,
146you must explicitly test Moose's C<VERSION>:
600f7f85 147
0f13f53c 148 if ( Moose->VERSION < 0.71_01 ) {
149 subtype 'ArrayOfInts'
600f7f85 150 => as 'ArrayRef'
151 => IsArrayRef(IsInt);
152 }
153 else {
0f13f53c 154 subtype(
155 'ArrayOfInts' => {
156 as => 'ArrayRef',
157 where => IsArrayRef(IsInt)
158 }
600f7f85 159 );
160 }
161
162=head1 Version 0.70
163
0f13f53c 164We no longer pass the meta-attribute object as a final argument to
165triggers. This actually changed for inlined code a while back, but the
166non-inlined version and the docs were still out of date.
167
168If by some chance you actually used this feature, the workaround is
169simple. You fetch the attribute object from out of the C<$self>
170that is passed as the first argument to trigger, like so:
171
172 has 'foo' => (
173 is => 'ro',
174 isa => 'Any',
175 trigger => sub {
176 my ( $self, $value ) = @_;
177 my $attr = $self->meta->find_attribute_by_name('foo');
178
179 # ...
180 }
181 );
600f7f85 182
183=head1 Version 0.66
184
0f13f53c 185If you created a subtype and passed a parent that Moose didn't know
186about, it simply ignored the parent. Now it automatically creates the
187parent as a class type. This may not be what you want, but is less
188broken than before.
600f7f85 189
0f13f53c 190You could declare a name with subtype such as "Foo!Bar". Moose would
191accept this allowed, but if you used it in a parameterized type such
192as "ArrayRef[Foo!Bar]" it wouldn't work. We now do some vetting on
193names created via the sugar functions, so that they can only contain
194alphanumerics, ":", and ".".
600f7f85 195
196=head1 Version 0.65
197
198Methods created via an attribute can now fulfill a C<requires>
0f13f53c 199declaration for a role. Honestly we don't know why Stevan didn't make
200this work originally, he was just insane or something.
600f7f85 201
0f13f53c 202Stack traces from inlined code will now report the line and file as
203being in your class, as opposed to in Moose guts.
600f7f85 204
205=head1 Version 0.62_02
206
0f13f53c 207When a class does not provide all of a role's required methods, the
208error thrown now mentions all of the missing methods, as opposed to
209just the first missing method.
600f7f85 210
0f13f53c 211Moose will no longer inline a constructor for your class unless it
5e26e3f2 212inherits its constructor from Moose::Object, and will warn when it
213doesn't inline. If you want to force inlining anyway, pass
b84f64da 214C<< replace_constructor => 1 >> to C<make_immutable>.
0f13f53c 215
216If you want to get rid of the warning, pass C<< inline_constructor =>
fbf7ba85 2170 >>.
600f7f85 218
219=head1 Version 0.62
220
0f13f53c 221Removed the (deprecated) C<make_immutable> keyword.
600f7f85 222
223Removing an attribute from a class now also removes delegation
0f13f53c 224(C<handles>) methods installed for that attribute. This is correct
600f7f85 225behavior, but if you were wrongly relying on it you might get bit.
226
227=head1 Version 0.58
228
0f13f53c 229Roles now add methods by calling C<add_method>, not
230C<alias_method>. They make sure to always provide a method object,
231which will be cloned internally. This means that it is now possible to
232track the source of a method provided by a role, and even follow its
233history through intermediate roles. This means that methods added by
234a role now show up when looking at a class's method list/map.
235
236Parameter and Union args are now sorted, this makes Int|Str the same
237constraint as Str|Int. Also, incoming type constraint strings are
238normalized to remove all whitespace differences. This is mostly for
239internals and should not affect outside code.
240
241L<Moose::Exporter> will no longer remove a subroutine that the
242exporting package re-exports. Moose re-exports the Carp::confess
243function, among others. The reasoning is that we cannot know whether
244you have also explicitly imported those functions for your own use, so
245we err on the safe side and always keep them.
600f7f85 246
247=head1 Version 0.56
248
0f13f53c 249C<Moose::init_meta> should now be called as a method.
600f7f85 250
0f13f53c 251New modules for extension writers, L<Moose::Exporter> and
252L<Moose::Util::MetaRole>.
600f7f85 253
254=head1 Version 0.55_01
255
256Implemented metaclass traits (and wrote a recipe for it):
257
258 use Moose -traits => 'Foo'
259
260This should make writing small Moose extensions a little
261easier.
262
263=head1 Version 0.55
264
265Fixed C<coerce> to accept anon types just like C<subtype> can.
266So that you can do:
267
268 coerce $some_anon_type => from 'Str' => via { ... };
269
270=head1 Version 0.51
271
52da380a 272Added C<BUILDARGS>, a new step in C<< Moose::Object->new() >>.
600f7f85 273
274=head1 Version 0.49
275
0f13f53c 276Fixed how the C<< is => (ro|rw) >> works with custom defined
277C<reader>, C<writer> and C<accessor> options. See the below table for
600f7f85 278details:
279
280 is => ro, writer => _foo # turns into (reader => foo, writer => _foo)
281 is => rw, writer => _foo # turns into (reader => foo, writer => _foo)
282 is => rw, accessor => _foo # turns into (accessor => _foo)
283 is => ro, accessor => _foo # error, accesor is rw
284
285=head1 Version 0.45
286
0f13f53c 287The C<before/around/after> method modifiers now support regexp
288matching of method names. NOTE: this only works for classes, it is
289currently not supported in roles, but, ... patches welcome.
600f7f85 290
0f13f53c 291The C<has> keyword for roles now accepts the same array ref form that
292L<Moose>.pm does for classes.
600f7f85 293
0f13f53c 294A trigger on a read-only attribute is no longer an error, as it's
295useful to trigger off of the constructor.
600f7f85 296
0f13f53c 297Subtypes of parameterizable types now are parameterizable types
298themselves.
600f7f85 299
300=head1 Version 0.44
301
0f13f53c 302Fixed issue where C<DEMOLISHALL> was eating the value in C<$@>, and so
303not working correctly. It still kind of eats them, but so does vanilla
304perl.
600f7f85 305
306=head1 Version 0.41
307
0f13f53c 308Inherited attributes may now be extended without restriction on the
600f7f85 309type ('isa', 'does').
310
0f13f53c 311The entire set of Moose::Meta::TypeConstraint::* classes were
312refactored in this release. If you were relying on their internals you
313should test your code carefully.
600f7f85 314
315=head1 Version 0.40
316
0f13f53c 317Documenting the use of '+name' with attributes that come from recently
318composed roles. It makes sense, people are using it, and so why not
319just officially support it.
600f7f85 320
0f13f53c 321The C<< Moose::Meta::Class->create >> method now supports roles.
600f7f85 322
86b96832 323It is now possible to make anonymous enum types by passing C<enum> an
324array reference instead of the C<< enum $name => @values >>.
600f7f85 325
326=head1 Version 0.37
327
0f13f53c 328Added the C<make_immutable> keyword as a shortcut to calling
329C<make_immutable> on the meta object. This eventually got removed!
600f7f85 330
0f13f53c 331Made C<< init_arg => undef >> work in Moose. This means "do not accept
600f7f85 332a constructor parameter for this attribute".
333
0f13f53c 334Type errors now use the provided message. Prior to this release they
335didn't.
600f7f85 336
337=head1 Version 0.34
338
339Moose is now a postmodern object system :)
340
0f13f53c 341The Role system was completely refactored. It is 100% backwards
342compat, but the internals were totally changed. If you relied on the
343internals then you are advised to test carefully.
600f7f85 344
345Added method exclusion and aliasing for Roles in this release.
346
0f13f53c 347Added the L<Moose::Util::TypeConstraints::OptimizedConstraints>
348module.
600f7f85 349
0f13f53c 350Passing a list of values to an accessor (which is only expecting one
351value) used to be silently ignored, now it throws an error.
600f7f85 352
353=head1 Version 0.26
354
0f13f53c 355Added parameterized types and did a pretty heavy refactoring of the
356type constraint system.
600f7f85 357
0f13f53c 358Better framework extendability and better support for "making your own
359Moose".
600f7f85 360
361=head1 Version 0.25 or before
362
0f13f53c 363Honestly, you shouldn't be using versions of Moose that are this old,
364so many bug fixes and speed improvements have been made you would be
365crazy to not upgrade.
600f7f85 366
0f13f53c 367Also, I am tired of going through the Changelog so I am stopping here,
368if anyone would like to continue this please feel free.
600f7f85 369
370=head1 AUTHOR
371
372Stevan Little E<lt>stevan@iinteractive.comE<gt>
373
374=head1 COPYRIGHT AND LICENSE
375
376Copyright 2009 by Infinity Interactive, Inc.
377
378L<http://www.iinteractive.com>
379
380This library is free software; you can redistribute it and/or modify
381it under the same terms as Perl itself.
382
0f13f53c 383=cut