Belatedly add change about Moose::Meta::Role->get_method_list including meta
[gitmo/Moose.git] / Changes
1 Also see Moose::Manual::Delta for more details of, and workarounds
2 for, noteworthy changes.
3
4     * Moose::Object
5       - Calling $object->new() is no longer deprecated, and no longer
6         warns. (doy)
7
8     * Moose::Meta::Role
9       - The get_attribute_map method is now deprecated. (Dave Rolsky)
10
11     * Moose::Meta::Method::Delegation
12       - Preserve variable aliasing in @_ for delegated methods, so that
13         altering @_ affects the passed value. (doy)
14
15     * Moose::Util::TypeConstraints
16       - Allow array refs for non-anonymous form of enum and duck_type, not
17         just anonymous. The non-arrayref forms may be removed in the
18         future. (doy)
19       - Changed Str constraint to not accept globs (*STDIN or *FOO). (chansen)
20
21     * Moose::Exporter
22       - Moose::Exporter using modules can now export their functions to the
23         main package. This applied to Moose and Moose::Role, among
24         others. (nothingmuch)
25
26     * Moose::Meta::Attribute
27       - Don't remove attribute accessors we never installed, during
28         remove_accessors. (doy)
29
30 0.92 Tue, Sep 22, 2009
31     * Moose::Util::TypeConstraints
32       - added the match_on_type operator (Stevan)
33         - added tests and docs for this (Stevan)
34
35     * Moose::Meta::Class
36       - Metaclass compat fixing should already happen recursively, there's no
37         need to explicitly walk up the inheritance tree. (doy)
38
39     * Moose::Meta::Attribute
40       - Add tests for set_raw_value and get_raw_value. (nothingmuch)
41
42 0.91 Thu, Sep 17, 2009
43     * Moose::Object
44       - Don't import any functions, in order to avoid polluting our namespace
45         with things that can look like methods (blessed, try, etc)
46         (nothingmuch)
47
48     * Moose::Meta::Method::Constructor
49       - The generated code needs to called Scalar::Util::blessed by its
50         fully-qualified name or else Perl can interpret the call to blessed as
51         an indirect method call. This broke Search::GIN, which in turn broke
52         KiokuDB. (nothingmuch)
53
54 0.90 Tue, Sep 15, 2009
55     * Moose::Meta::Attribute::Native::Trait::Counter
56     * Moose::Meta::Attribute::Native::Trait::String
57       - For these two traits, an attribute which did not explicitly provide
58         methods to handles magically ended up delegating *all* the helper
59         methods. This has been removed. You must be explicit in your handles
60         declaration for all Native Traits. (Dave Rolsky)
61
62     * Moose::Object
63       - DEMOLISHALL behavior has changed. If any DEMOLISH method dies, we make
64         sure to rethrow its error message. However, we also localize $@ before
65         this so that if all the DEMOLISH methods success, the value of $@ will
66         be preserved. (nothingmuch and Dave Rolsky)
67       - We now also localize $? during object destruction. (nothingmuch and
68         Dave Rolsky)
69       - The handling of DEMOLISH methods was broken for immutablized classes,
70         which were not receiving the value of
71         Devel::GlobalDestruction::in_global_destruction.
72       - These two fixes address some of RT #48271, reported by Zefram.
73       - This is all now documented in Moose::Manual::Construction.
74       - Calling $object->new() is now deprecated. A warning will be
75         issued. (perigrin)
76
77     * Moose::Meta::Role
78       - Added more hooks to customize how roles are applied. The role
79         summation class, used to create composite roles, can now be changed
80         and/or have meta-roles applied to it. (rafl)
81       - The get_method_list method no longer explicitly excludes the "meta"
82         method. This was a hack that has been replaced by better hacks. (Dave
83         Rolsky)
84
85     * Moose::Meta::Method::Delegation
86       - fixed delegated methods to make sure that any modifiers attached to
87         the accessor being delegated on will be called (Stevan)
88         - added tests for this (Stevan)
89
90     * Moose::Meta::Class
91       - Moose no longer warns when a class that is being made immutable has
92         mutable ancestors. While in theory this is a good thing to warn about,
93         we found so many exceptions to this that doing this properly became
94         quite problematic.
95
96 0.89_02 Thu, Sep 10, 2009
97     * Moose::Meta::Attribute::Native
98       - Fix Hash, which still had 'empty' instead of 'is_empty'. (hdp)
99
100     * Moose::Meta::Attribute::Native::Trait::Array
101       - Added a number of functions from List::Util and List::MoreUtils,
102         including reduce, shuffle, uniq, and natatime. (doy)
103
104     * Moose::Exporter
105       - This module will now generate an init_meta method for your exporting
106         class if you pass it options for
107         Moose::Util::MetaRole::apply_metaclass_roles or
108         apply_base_class_roles. This eliminates a lot of repetitive
109         boilerplate for typical MooseX modules. (doy).
110       - Documented the with_meta feature, which is a replacement for
111         with_caller. This feature was added by josh a while ago.
112       - The with_caller feature is now deprecated, but will not issue a
113         warning yet. (Dave Rolsky)
114       - If you try to wrap/export a subroutine which doesn't actually exist,
115         Moose::Exporter will warn you about this. (doy)
116
117     * Moose::Meta::Role::Application::ToRole
118       - When a role aliased a method from another role, it was only getting
119         the new (aliased) name, not the original name. This differed from what
120         happens when a class aliases a role's methods. If you _only_ want the
121         aliased name, make sure to also exclue the original name. (Dave
122         Rolsky)
123
124 0.89_01 Wed Sep 2, 2009
125     * Moose::Meta::Attribute
126       - Added the currying syntax for delegation from AttributeHelpers to the
127         existing delegation API. (hdp)
128
129     * Moose::Meta::Attribute::Native
130       - We have merged the functionality of MooseX::AttributeHelpers into the
131         Moose core with some API tweaks. You can continue to use
132         MooseX::AttributeHelpers, but it will not be maintained except
133         (perhaps) for critical bug fixes in the future. See
134         Moose::Manual::Delta for details. (hdp, jhannah, rbuels, Sartak,
135         perigrin, doy)
136
137     * Moose::Error::Croak
138     * Moose::Error::Confess
139       - Clarify documentation on how to use different error-throwing
140         modules. (Curtis Jewell)
141
142     * Moose
143       - Correct POD for builder to point to Recipe8, not 9. (gphat)
144
145     * Moose::Exporter
146       - When a nonexistent sub name is passed to as_is, with_caller, or
147         with_meta, throw a warning and skip the exporting, rather than
148         installing a broken sub. (doy)
149
150     * Moose::Meta::Class
151       - Moose now warns if you call C<make_immutable> for a class with mutable
152         ancestors. (doy)
153
154 0.89 Thu Aug 13, 2009
155     * Moose::Manual::Attributes
156       - Clarify "is", include discussion of "bare". (Sartak)
157
158     * Moose::Meta::Role::Method::Conflicting
159     * Moose::Meta::Role::Application::ToClass
160       - For the first set of roles involved in a conflict, report all
161         unresolved method conflicts, not just the first method. Fixes #47210
162         reported by Ovid. (Sartak)
163
164     * Moose::Meta::TypeConstraint
165       - Add assert_valid method to use a TypeConstraint for assertion (rjbs)
166
167     * Moose::Exporter
168       - Make "use Moose -metaclass => 'Foo'" do alias resolution, like -traits
169         does. (doy)
170       - Allow specifying role options (alias, excludes, MXRP stuff) in the
171         arrayref passed to "use Moose -traits" (doy)
172
173     * Moose::Util
174       - Add functions meta_class_alias and meta_attribute_alias for creating
175         aliases for class and attribute metaclasses and metatraits. (doy)
176
177     * Moose::Meta::Attribute
178     * Moose::Meta::Method::Accessor
179       - A trigger now receives the old value as a second argument, if the
180         attribute had one. (Dave Rolsky)
181
182     * Moose::Meta::Method::Constructor
183       - Fix a bug with $obj->new when $obj has stringify overloading.
184         Reported by Andrew Suffield [rt.cpan.org #47882] (Sartak)
185         - However, we will probably deprecate $obj->new, so please don't start
186           using it for new code!
187
188     * Moose::Meta::Role::Application
189     * Moose::Meta::Role::Application::RoleSummation
190       - Rename alias and excludes to -alias and -excludes (but keep the old
191         names for now, for backcompat) (doy)
192
193 0.88 Fri Jul 24, 2009
194     * Moose::Manual::Contributing
195       - Re-write the Moose::Manual::Contributing document to reflect
196         the new layout and methods of work for the Git repository. All
197         work now should be done in topic branches and reviewed by a
198         core committer before being applied to master. All releases
199         are done by a cabal member and merged from master to
200         stable. This plan was devised by Yuval, blame him. (perigrin)
201
202     * Moose::Meta::Role
203       - Create metaclass attributes for the different role application
204         classes.  (rafl)
205
206     * Moose::Util::MetaRole
207       - Allow applying roles to a meta role's role application
208         classes. (rafl)
209
210     * Moose::Meta::Attribute
211       - Add weak_ref to allowed options for "has '+foo'" (mst)
212
213     * Moose::Meta::Method::Accessor
214       - No longer uses inline_slot_access in accessors, to support
215         non-lvalue-based meta instances. (sorear)
216
217 0.87 Tue Jul 7, 2009
218     * Moose::Meta::Method::Delegation
219       - Once again allow class names as well as objects for
220         delegation. This was changed in 0.86.
221
222 0.86 Fri Jul 3, 2009
223     * Moose::Meta::Class::Immutable::Trait
224       - Fixes to work with the latest Class::MOP.
225
226     * Moose::Meta::Method::Delegation
227       - Delegation now dies with a more useful error message if the
228         attribute's accessor returns something defined but
229         unblessed. (hdp)
230
231 0.85 Fri, Jun 26, 2009
232     * Moose::Meta::Attribute
233       - The warning for 'no associated methods' is now split out into
234         the _check_associated_methods method, so that extensions can
235         safely call 'after install_accessors => ...'. This fixes a
236         warning from MooseX::AttributeHelpers. (hdp)
237
238 0.84 Fri, Jun 26, 2009
239     * Moose::Role
240       - has now sets definition_context for attributes defined in
241         roles. (doy)
242
243     * Moose::Meta::Attribute
244       - When adding an attribute to a metaclass, if the attribute has
245         no associated methods, it will give a deprecation
246         warning. (hdp)
247       - Methods generated by delegation were not being added to
248         associated_methods. (hdp)
249       - Attribute accessors (reader, writer, accessor, predicate,
250         clearer) now warn if they overwrite an existing method. (doy)
251       - Attribute constructors now warn very noisily about unknown (or
252         misspelled) arguments
253
254     * Moose::Util::TypeConstraints
255       - Deprecated the totally useless Role type name, which just
256         checked if $object->can('does'). Note that this is _not_ the
257         same as a type created by calling role_type('RoleName').
258
259     * Moose::Util::TypeConstraints
260     * Moose::Meta::TypeConstraint::DuckType
261       - Reify duck type from a regular subtype into an actual class
262         (Sartak)
263         - Document this because Sartak did all my work for me
264           (perigrin)
265
266     * Moose::Meta::Attribute
267       - Allow Moose::Meta::TypeConstraint::DuckType in handles, since
268         it is just a list of methods (Sartak)
269
270     * Moose::Meta::Role
271       - The get_*_method_modifiers methods would die if the role had
272         no modifiers of the given type (Robert Buels).
273
274 0.83 Tue, Jun 23, 2009
275     * Moose::Meta::Class
276       - Fix _construct_instance not setting the special __MOP__ object
277         key in instances of anon classes. (doy)
278
279 0.82 Sun, Jun 21, 2009
280     * Moose::Manual::Types
281       - Mention MooseX::Types early to avoid users falling down the
282         string parsing rathole (mst)
283
284     * Moose::Manual::MooseX
285       - Add warnings about class-level extensions and mention considering
286         using plain objects instead
287
288 0.81 Sun, Jun 7, 2009
289     * Bumped our Class::MOP prereq to the latest version (0.85), since
290       that's what we need.
291
292 0.80 Sat, Jun 6, 2009
293     * Moose::Manual::FAQ
294       - Add FAQ about the coercion change from 0.76 because it came up
295         three times today (perigrin)
296         - Win doy $10 dollars because Sartak didn't think anybody
297           would document this fast enough (perigrin)
298
299     * Moose::Meta::Method::Destructor
300       - Inline a DESTROY method even if there are no DEMOLISH methods
301         to prevent unnecessary introspection in
302         Moose::Object::DEMOLISHALL
303
304     * Moose::*
305       - A role's required methods are now represented by
306         Moose::Meta::Role::Method::Required objects. Conflicts are now
307         represented by Moose::Meta::Role::Method::Conflicting
308         objects. The benefit for end-users in that unresolved
309         conflicts generate different, more instructive, errors,
310         resolving Ovid's #44895. (Sartak)
311
312     * Moose::Role
313       - Improve the error message of "extends" as suggested by Adam
314         Kennedy and confound (Sartak)
315       - Link to Moose::Manual::Roles from Moose::Role as we now have
316         excellent documentation (Adam Kennedy)
317
318     * Tests
319       - Update test suite for subname change in Class::MOP
320         (nothingmuch)
321       - Add TODO test for infinite recursion in Moose::Meta::Class
322         (groditi)
323
324 0.79 Wed, May 13, 2009
325     * Tests
326       - More fixes for Win32 problems. Reported by Robert Krimen.
327
328     * Moose::Object
329       - The DEMOLISHALL method could still blow up in some cases
330         during global destruction. This method has been made more
331         resilient in the face of global destruction's random garbage
332         collection order.
333
334     * Moose::Exporter
335       - If you "also" a module that isn't loaded, the error message
336         now acknowledges that (Sartak)
337
338     * Moose
339       - When your ->meta method does not return a Moose::Meta::Class,
340         the error message gave the wrong output (Sartak)
341
342 0.78 Tue, May 12, 2009
343     * Moose::Cookbook::FAQ and Moose::Cookbook::WTF
344       - Merged these documents into what is now Moose::Manual::FAQ
345
346     * Moose::Unsweetened
347       - Moved to Moose::Manual::Unsweetened
348
349     * Moose::Cookbook::Basics::Recipes 9-12
350       - Renamed to be 8-11, since recipe 8 did not exist
351
352     * Moose::Exporter
353       - Make Moose::Exporter import strict and warnings into packages
354         that use it (doy)
355
356     * Moose::Object
357       - Fix DEMOLISHALL sometimes not being able to find DEMOLISH
358         methods during global destruction (doy)
359
360     * Moose::Meta::Class
361     * Moose::Meta::Role::Application::ToClass
362       - Track the Role::Application objects created during class-role
363         consumption (Sartak)
364
365     * Moose::Meta::Class
366       - Fix metaclass incompatibility errors when extending a vanilla perl
367         class which isa Moose class with a metaclass role applied (t0m)
368
369     * Moose::Meta::Role
370       - Add a role-combination hook, _role_for_combination, for the
371         benefit of MooseX::Role::Parameterized (Sartak)
372
373     * Tests
374       - Some tests were failing on Win32 because they explicit checked
375         warning output for newlines. Reported by Nickolay Platonov.
376
377 0.77 Sat, May 2, 2009
378     * Moose::Meta::Role
379       - Add explicit use of Devel::GlobalDestruction and Sub::Name
380         (perigrin)
381
382     * Moose::Object
383       - Pass a boolean to DEMOLISHALL and DEMOLISH indicating whether
384         or not we are currently in global destruction (doy)
385       - Add explicit use of Devel::GlobalDestruction and Sub::Name
386         (perigrin)
387
388     * Moose::Cookbook::FAQ
389       - Reworked much of the existing content to be more useful to
390         modern Moose hackers (Sartak)
391
392     * Makefile.PL
393       - Depend on Class::MOP 0.83 instead of 0.82_01.
394
395 0.76 Mon, April 27, 2009
396     * Moose::Meta::TypeConstraint
397       - Do not run coercions in coerce() if the value already passes the type
398         constraint (hdp)
399
400     * Moose::Meta::TypeConstraint::Class
401       - In validation error messages, specifically say that the value is not
402         an instance of the class. This should alleviate some frustrating
403         forgot-to-load-my-type bugs. rt.cpan.org #44639 (Sartak)
404
405     * Moose::Meta::Role::Application::ToClass
406       - Revert the class-overrides-role warning in favor of a solution outside
407         of the Moose core (Sartak)
408
409     * Tests
410       - Make Test::Output optional again, since it's only used in a few files
411         (Sartak)
412
413 0.75_01 Thu, April 23, 2009
414     * Moose::Meta::Role::Application::ToClass
415       - Moose now warns about each class overriding methods from roles it
416         consumes (Sartak)
417
418     * Tests
419       - Warnings tests have standardized on Test::Output which is now an
420         unconditionally dependency (Sartak)
421
422     * Moose::Meta::Class
423       - Changes to immutabilization to work with Class::MOP 0.82_01+.
424
425 0.75 Mon, April 20, 2009
426     * Moose
427     * Moose::Meta::Class
428       - Move validation of not inheriting from roles from Moose::extends to
429         Moose::Meta::Class::superclasses (doy)
430
431     * Moose::Util
432       - add ensure_all_roles() function to encapsulate the common "apply this
433         role unless the object already does it" pattern (hdp)
434
435     * Moose::Exporter
436       - Users can now select a different metaclass with the "-metaclass"
437         option to import, for classes and roles (Sartak)
438
439     * Moose::Meta::Role
440       - Make method_metaclass an attr so that it can accept a metarole
441         application.  (jdv)
442
443 0.74 Tue, April 7, 2009
444     * Moose::Meta::Role
445     * Moose::Meta::Method::Destructor
446       - Include stack traces in the deprecation warnings.
447         (Florian Ragwitz)
448
449     * Moose::Meta::Class
450       - Removed the long-deprecated _apply_all_roles method.
451
452     * Moose::Meta::TypeConstraint
453       - Removed the long-deprecated union method.
454
455
456 0.73_02 Mon, April 6, 2009
457     * More deprecations and renamings
458       - Moose::Meta::Method::Constructor
459         - initialize_body => _initialize_body (this is always called
460           when an object is constructed)
461
462     * Moose::Object
463       - The DEMOLISHALL method could throw an exception during global
464         destruction, meaning that your class's DEMOLISH methods would
465         not be properly called. Reported by t0m.
466
467     * Moose::Meta::Method::Destructor
468       - Destructor inlining was totally broken by the change to the
469         is_needed method in 0.72_01. Now there is a test for this
470         feature, and it works again.
471
472     * Moose::Util
473       - Bold the word 'not' in the POD for find_meta (t0m)
474
475 0.73_01 Sun, April 5, 2009
476     * Moose::*
477       - Call user_class->meta in fewer places, with the eventual goal
478         of allowing the user to rename or exclude ->meta
479         altogether. Instead uses Class::MOP::class_of. (Sartak)
480
481     * Moose::Meta::Method::Accessor
482       - If an attribute had a lazy default, and that value did not
483         pass the attribute's type constraint, it did not get the
484         message from the type constraint, instead using a generic
485         message. Test provided by perigrin.
486
487     * Moose::Util::TypeConstraints
488       - Add duck_type keyword. It's sugar over making sure an object
489         can() a list of methods. This is easier than jrockway's
490         suggestion to fork all of CPAN. (perigrin)
491         - add tests and documentation (perigrin)
492
493     * Moose
494       - Document the fact that init_meta() returns the target class's
495         metaclass object. (hdp)
496
497     * Moose::Cookbook::Extending::Recipe1
498     * Moose::Cookbook::Extending::Recipe2
499     * Moose::Cookbook::Extending::Recipe3
500     * Moose::Cookbook::Extending::Recipe4
501       - Make init_meta() examples explicitly return the metaclass and
502         point out this fact. (hdp)
503
504     * Moose::Cookbook::Basics::Recipe12
505       - A new recipe, creating a custom meta-method class.
506
507     * Moose::Cookbook::Meta::Recipe6
508       - A new recipe, creating a custom meta-method class.
509
510     * Moose::Meta::Class
511     * Moose::Meta::Method::Constructor
512       - Attribute triggers no longer receive the meta-attribute object
513         as an argument in any circumstance. Previously, triggers
514         called during instance construction were passed the
515         meta-attribute, but triggers called by normal accessors were
516         not. Fixes RT#44429, reported by Mark Swayne. (hdp)
517
518     * Moose::Manual::Attributes
519       - Remove references to triggers receving the meta-attribute object as an
520         argument. (hdp)
521
522     * Moose::Cookbook::FAQ
523       - Remove recommendation for deprecated Moose::Policy and
524         Moose::Policy::FollowPBP; recommend MooseX::FollowPBP
525         instead. (hdp)
526
527     * Many methods have been renamed with a leading underscore, and a
528       few have been deprecated entirely. The methods with a leading
529       underscore are consider "internals only". People writing
530       subclasses or extensions to Moose should feel free to override
531       them, but they are not for "public" use.
532
533       - Moose::Meta::Class
534         - check_metaclass_compatibility => _check_metaclass_compatibility
535
536       - Moose::Meta::Method::Accessor
537         - initialize_body => _initialize_body (this is always called
538           when an object is constructed)
539         - /(generate_.*_method(?:_inline)?)/ => '_' . $1
540
541       - Moose::Meta::Method::Constructor
542         - initialize_body => _initialize_body (this is always called
543           when an object is constructed)
544         - /(generate_constructor_method(?:_inline)?)/ => '_' . $1
545         - attributes => _attributes (now inherited from parent)
546         - meta_instance => _meta_instance (now inherited from parent)
547
548       - Moose::Meta::Role
549         - alias_method is deprecated. Use add_method
550
551 0.73 Fri, March 29, 2009
552     * No changes from 0.72_01.
553
554 0.72_01 Thu, March 26, 2009
555     * Everything
556       - Almost every module has complete API documentation. A few
557         methods (and even whole classes) have been intentionally
558         excluded pending some rethinking of their APIs.
559
560     * Moose::Util::TypeConstraints
561       - Calling subtype with a name as the only argument is now an
562         exception. If you want an anonymous subtype do:
563
564          my $subtype = subtype as 'Foo';
565
566     * Moose::Cookbook::Meta::Recipe7
567       - A new recipe, creating a custom meta-instance class.
568
569     * Moose::Cookbook::Basics::Recipe5
570       - Fix various typos and mistakes. Includes a patch from Radu
571         Greab.
572
573     * Moose::Cookbook::Basics::Recipe9
574       - Link to this recipe from Moose.pm's builder blurb
575
576     * Moose::Exporter
577       - When wrapping a function with a prototype, Moose::Exporter now
578         makes sure the wrapped function still has the same
579         prototype. (Daisuke Maki)
580
581     * Moose::Meta::Attribute
582       - Allow a subclass to set lazy_build for an inherited
583         attribute. (hdp)
584
585     * Makefile.PL
586       - Explicitly depend on Data::OptList. We already had this dependency
587         via Sub::Exporter, but since we're using it directly we're
588         better off with it listed. (Sartak)
589
590     * Moose::Meta::Method::Constructor
591       - Make it easier to subclass the inlining behaviour. (Ash
592         Berlin)
593
594     * Moose::Manual::Delta
595       - Details significant changes in the history of Moose, along
596         with recommended workarounds.
597
598     * Moose::Manual::Contributing
599       - Contributor's guide to Moose.
600
601     * Moose::Meta::Method::Constructor
602       - The long-deprecated intialize_body method has been removed
603         (yes, spelled like that).
604
605     * Moose::Meta::Method::Destructor
606       - This is_needed method is now always a class method.
607
608     * Moose::Meta::Class
609       - Changes to the internals of how make_immutable works to match
610         changes in latest Class::MOP.
611
612 0.72 Mon, February 23, 2009
613     * Moose::Object
614     * Moose::Meta::Method::Constructor
615       - A mutable class accepted Foo->new(undef) without complaint,
616         while an immutable class would blow up with an unhelpful
617         error. Now, in both cases we throw a helpful error
618         instead. Reported by doy.
619
620 0.71_01 Sun, February 22, 2009
621     * Moose::Cookbook
622       - Hopefully fixed some POD errors in a few recipes that caused
623         them to display weird on search.cpan.org.
624
625     * Moose::Util::TypeConstraints
626       - Calling type or subtype without the sugar helpers (as, where,
627         message) is now deprecated.
628       - The subtype function tried hard to guess what you meant, but
629         often got it wrong. For example:
630
631          my $subtype = subtype as 'ArrayRef[Object]';
632
633         This caused an error in the past, but now works as you'd
634         expect.
635
636     * Everywhere
637       - Make sure Moose.pm is loaded before calling
638         Moose->throw_error. This wasn't normally an issue, but could
639         bite you in weird cases.
640
641 0.71 Thu, February 19, 2009
642     * Moose::Cookbook::Basics::Recipe11
643       - A new recipe which demonstrates the use of BUILDARGS and
644         BUILD. (Dave Rolsky)
645
646     * Moose::Cookbook::Roles::Recipe3
647       - A new recipe, applying a role to an object instance. (Dave
648         Rolsky)
649
650     * Moose::Exporter
651       - Allow overriding specific keywords from "also" packages. (doy)
652
653     * Tests
654       - Replace hardcoded cookbook tests with Test::Inline to ensure
655         the tests match the actual code in the recipes. (Dave Rolsky)
656
657     * Moose::Cookbook
658       - Working on the above turned up a number of little bugs in the
659         recipe code. (Dave Rolsky)
660
661     * Moose::Util::TypeConstraints::Optimized
662       - Just use Class::MOP for the optimized ClassName check. (Dave
663         Rolsky)
664
665 0.70 Sat, February 14, 2009
666     * Moose::Util::TypeConstraints
667       - Added the RoleName type (stevan)
668         - added tests for this (stevan)
669
670     * Moose::Cookbook::Basics::Recipe3
671       - Updated the before qw[left right] sub to be a little more
672         defensive about what it accepts (stevan)
673         - added more tests to t/000_recipies/basics/003_binary_tree.t
674           (stevan)
675
676     * Moose::Object
677       - We now always call DEMOLISHALL, even if a class does not
678         define DEMOLISH. This makes sure that method modifiers on
679         DEMOLISHALL work as expected. (doy)
680         - added tests for this (EvanCarroll)
681
682     * Moose::Util::MetaRole
683       - Accept roles for the wrapped_method_metaclass (rafl)
684         - added tests for this (rafl)
685
686     * Moose::Meta::Attribute
687       - We no longer pass the meta-attribute object as a final
688         argument to triggers. This actually changed for inlined code a
689         while back, but the non-inlined version and the docs were
690         still out of date.
691
692     * Tests
693       - Some tests tried to use Test::Warn 0.10, which had bugs. Now
694         they require 0.11. (Dave Rolsky)
695
696     * Documentation
697       - Lots of small changes to the manual, cookbook, and
698         elsewhere. These were based on feedback from various
699         users, too many to list here. (Dave Rolsky)
700
701 0.69 Thu, February 12, 2009
702     * Moose
703       - Make some keyword errors use throw_error instead of croak
704         since Moose::Exporter wraps keywords now (Sartak)
705
706     * Moose::Cookbook::*
707       - Revised every recipe for style and clarity. Also moved some
708         documentation out of cookbook recipes and into Moose::Manual
709         pages. This work was funded as part of the Moose docs grant
710         from TPF. (Dave Rolsky)
711
712     * Moose::Meta::Method::Delegation
713       - If the attribute doing the delegation was not populated, the
714         error message did not specify the attribute name
715         properly. (doy)
716
717 0.68 Wed, February 4, 2009
718     * POD
719       - Many spelling, typo, and formatting fixes by daxim.
720
721     * Moose::Manual::Attributes
722       - The NAME section in the POD used "Attribute" so search.cpan
723         didn't resolve links from other documents properly.
724
725     * Moose::Meta::Method::Overriden
726       - Now properly spelled as Overridden. Thanks to daxim for
727         noticing this.
728
729 0.67 Tue, February 3, 2009
730     * Moose::Manual::*
731       - Lots of little typo fixes and a few clarifications. Several
732         pages didn't have proper titles, and so weren't actually
733         visible on search.cpan.org. Thanks to hanekomu for a variety
734         of fixes and formatting improvements.
735
736 0.66 Tue, February 3, 2009
737     * Moose::Manual
738       - This is a brand new, extensive manual for Moose. This aims to
739         provide a complete introduction to all of Moose's
740         features. This work was funded as part of the Moose docs grant
741         from TPF. (Dave Rolsky)
742
743     * Moose::Meta::Attribute
744       - Added a delegation_metaclass method to replace a hard-coded
745         use of Moose::Meta::Method::Delegation. (Dave Rolsky)
746
747     * Moose::Util::TypeConstraints
748       - If you created a subtype and passed a parent that Moose didn't
749         know about, it simply ignored the parent. Now it automatically
750         creates the parent as a class type. This may not be what you
751         want, but is less broken than before. (Dave Rolsky)
752
753     * Moose::Util::TypeConstraints
754       - This module tried throw errors by calling Moose->throw_error,
755         but it did not ensure that Moose was loaded first. This could
756         cause very unhelpful errors when it tried to throw an error
757         before Moose was loaded. (Dave Rolsky)
758
759     * Moose::Util::TypeConstraints
760       - You could declare a name with subtype such as "Foo!Bar" that
761         would be allowed, but if you used it in a parameterized type
762         such as "ArrayRef[Foo!Bar]" it wouldn't work. We now do some
763         vetting on names created via the sugar functions, so that they
764         can only contain alphanumerics, ":", and ".". (Dave Rolsky)
765
766 0.65 Thu, January 22, 2008
767     * Moose and Moose::Meta::Method::Overridden
768       - If an overridden method called super(), and then the
769         superclass's method (not overridden) _also_ called super(),
770         Moose went into an endless recursion loop. Test provided by
771         Chris Prather. (Dave Rolsky)
772
773     * Moose::Meta::TypeConstraint
774       - All methods are now documented. (gphat)
775
776     * t/100_bugs/011_DEMOLISH_eats_exceptions.t
777       - Fixed some bogus failures that occurred because we tried to
778         validate filesystem paths in a very ad-hoc and
779         not-quite-correct way. (Dave Rolsky)
780
781     * Moose::Util::TypeConstraints
782       - Added maybe_type to exports. See docs for details. (rjbs)
783
784     * Moose
785       - Added Moose::Util::TypeConstraints to the SEE ALSO
786         section. (pjf)
787
788     * Moose::Role
789       - Methods created via an attribute can now fulfill a "requires"
790         declaration for a role. (nothingmuch)
791
792     * Moose::Meta::Method::*
793       - Stack traces from inlined code will now report its line and
794         file as being in your class, as opposed to in Moose
795         guts. (nothingmuch).
796
797 0.64 Wed, December 31, 2008
798     * Moose::Meta::Method::Accessor
799       - Always inline predicate and clearer methods (Sartak)
800
801     * Moose::Meta::Attribute
802       - Support for parameterized traits (Sartak)
803       - verify_against_type_constraint method to avoid duplication
804         and enhance extensibility (Sartak)
805
806     * Moose::Meta::Class
807       - Tests (but no support yet) for parameterized traits (Sartak)
808
809     * Moose
810       - Require Class::MOP 0.75+, which has the side effect of making
811         sure we work on Win32. (Dave Rolsky)
812
813 0.63 Mon, December 8, 2008
814     * Moose::Unsweetened
815       - Some small grammar tweaks and bug fixes in non-Moose example
816         code. (Dave Rolsky)
817
818 0.62_02 Fri, December 5, 2008
819     * Moose::Meta::Role::Application::ToClass
820       - When a class does not provide all of a role's required
821         methods, the error thrown now mentions all of the missing
822         methods, as opposed to just the first one found. Requested by
823         Curtis Poe (RT #41119). (Dave Rolsky)
824
825     * Moose::Meta::Method::Constructor
826       - Moose will no longer inline a constructor for your class
827         unless it inherits its constructor from Moose::Object, and
828         will warn when it doesn't inline. If you want to force
829         inlining anyway, pass "replace_constructor => 1" to
830         make_immutable. Addresses RT #40968, reported by Jon
831         Swartz. (Dave Rolsky)
832       - The quoting of default values could be broken if the default
833         contained a single quote ('). Now we use quotemeta to escape
834         anything potentially dangerous in the defaults. (Dave Rolsky)
835
836 0.62_01 Wed, December 3, 2008
837     * Moose::Object
838       - use the method->execute API for BUILDALL
839         and DEMOLISHALL (Sartak)
840
841     * Moose::Util::TypeConstraints
842       - We now make all the type constraint meta classes immutable
843         before creating the default types provided by Moose. This
844         should make loading Moose a little faster. (Dave Rolsky)
845
846 0.62 Wed November 26, 2008
847     * Moose::Meta::Role::Application::ToClass
848       Moose::Meta::Role::Application::ToRole
849       - fixed issues where excluding and aliasing the
850         same methods for a single role did not work
851         right (worked just fine with multiple
852         roles) (stevan)
853         - added test for this (stevan)
854
855     * Moose::Meta::Role::Application::RoleSummation
856       - fixed the error message when trying to compose
857         a role with a role it excludes (Sartak)
858
859     * Moose::Exporter
860       - Catch another case where recursion caused the value
861         of $CALLER to be stamped on (t0m)
862         - added test for this (t0m)
863
864     * Moose
865       - Remove the make_immutable keyword, which has been
866         deprecated since April. It breaks metaclasses that
867         use Moose without no Moose (Sartak)
868
869     * Moose::Meta::Attribute
870       - Removing an attribute from a class now also removes delegation
871         (handles) methods installed for that attribute (t0m)
872         - added test for this (t0m)
873
874     * Moose::Meta::Method::Constructor
875       - An attribute with a default that looked like a number (but was
876         really a string) would accidentally be treated as a number
877         when the constructor was made immutable (perigrin)
878         - added test for this (perigrin)
879
880     * Moose::Meta::Role
881       - create method for constructing a role
882         dynamically (Sartak)
883         - added test for this (Sartak)
884       - anonymous roles! (Sartak)
885         - added test for this (Sartak)
886
887     * Moose::Role
888       - more consistent error messages (Sartak)
889
890     * Moose::Cookbook::Roles::Recipe1
891       - attempt to explain why a role that just requires
892         methods is useful (Sartak)
893
894 0.61 Fri November 7, 2008
895     * Moose::Meta::Attribute
896       - When passing a role to handles, it will be loaded if necessary
897         (perigrin)
898
899     * Moose::Meta::Class
900       - Method objects returned by get_method (and other methods)
901         Could end up being returned without an associated_metaclass
902         attribute. Removing get_method_map, which is provided by
903         Class::MOP::Class, fixed this. The Moose version did nothing
904         different from its parent except introduce a bug. (Dave Rolsky)
905         - added tests for this (jdv79)
906
907     * Various
908       - Added a $VERSION to all .pm files which didn't have one. Fixes
909         RT #40049, reported by Adam Kennedy. (Dave Rolsky)
910
911     * Moose::Cookbook::Basics::Recipe4
912     * Moose::Cookbook::Basics::Recipe6
913       - These files had spaces on the first line of the SYNOPSIS, as
914         opposed to a totally empty line. According to RT #40432, this
915         confuses POD parsers. (Dave Rolsky)
916
917 0.60 Fri October 24, 2008
918     * Moose::Exporter
919       - Passing "-traits" when loading Moose caused the Moose.pm
920         exports to be broken. Reported by t0m. (Dave Rolsky)
921         - Tests for this bug. (t0m)
922
923     * Moose::Util
924       - Change resolve_metaclass alias to use the new
925         load_first_existing_class function. This makes it a lot
926         simpler, and also around 5 times faster. (t0m)
927       - Add caching to resolve_metaclass_alias, which gives an order
928         of magnitude speedup to things which repeatedly call the
929         Moose::Meta::Attribute->does method, notably MooseX::Storage
930         (t0m)
931
932     * Moose::Util::TypeConstraint
933       - Put back the changes for parameterized constraints that
934         shouldn't have been removed in 0.59. We still cannot parse
935         them, but MooseX modules can create them in some other
936         way. See the 0.58 changes for more details. (jnapiorkowski)
937       - Changed the way subtypes are created so that the job is
938         delegated to a type constraint parent. This clears up some
939         hardcoded checking and should allow correct subtypes of
940         Moose::Meta::Type::Constraint. Don't rely on this new API too
941         much (create_child_type) because it may go away in the
942         future. (jnapiorkowski)
943
944     * Moose::Meta::TypeConstraint::Union
945       - Type constraint names are sorted as strings, not numbers.
946         (jnapiorkowski)
947
948     * Moose::Meta::TypeConstraint::Parameterizable
949       - New parameterize method. This can be used as a factory method
950         to make a new type constraint with a given parameterized
951         type. (jnapiorkowski)
952         - added tests (jnapiorkowski)
953
954 0.59 Tue October 14, 2008
955     * Moose
956       - Add abridged documentation for builder/default/initializer/
957         predicate, and link to more details sections in
958         Class::MOP::Attribute. (t0m)
959
960     * Moose::Util::TypeConstraints
961       - removed prototypes from all but the &-based stuff (mst)
962
963     * Moose::Util::TypeConstraints
964       - Creating a anonymous subtype with both a constraint and a
965         message failed with a very unhelpful error, but should just
966         work. Reported by t0m. (Dave Rolsky)
967
968     * Tests
969       - Some tests that used Test::Warn if it was available failed
970         with older versions of Test::Warn. Reported by Fayland. (Dave
971         Rolsky)
972       - Test firing behavior of triggers in relation to builder/default/
973         lazy_build. (t0m)
974       - Test behavior of equals/is_a_type_of/is_a_subtype_of for all
975         kinds of supported type. (t0m)
976
977     * Moose::Meta::Class
978       - In create(), do not pass "roles" option to the superclass
979         - added related test that creates an anon metaclass with
980           a required attribute
981
982     * Moose::Meta::TypeConstraint::Class
983     * Moose::Meta::TypeConstraint::Role
984       - Unify behavior of equals/is_a_type_of/is_a_subtype_of with
985         other types (as per change in 0.55_02). (t0m)
986
987     * Moose::Meta::TypeConstraint::Registry
988       - Fix warning when dealing with unknown type names (t0m)
989
990     * Moose::Util::TypeConstraints
991       - Reverted changes from 0.58 related to handle parameterized
992         types. This caused random failures on BSD and Win32 systems,
993         apparently related to the regex engine. This means that Moose
994         can no longer parse structured type constraints like
995         ArrayRef[Int,Int] or HashRef[name=>Str]. This will be
996         supported in a slightly different way via MooseX::Types some
997         time in the future. (Dave Rolsky)
998
999 0.58 Sat September 20, 2008
1000     !! This release has an incompatible change regarding !!
1001     !! how roles add methods to a class !!
1002
1003     * Roles and role application
1004       ! Roles now add methods by calling add_method, not
1005         alias_method. They make sure to always provide a method
1006         object, which will be cloned internally. This means that it is
1007         now possible to track the source of a method provided by a
1008         role, and even follow its history through intermediate roles.
1009
1010         This means that methods added by a role now show up when
1011         looking at a class's method list/map. (Dave Rolsky)
1012
1013     * Makefile.PL
1014       - From this release on, we'll try to maintain a list of
1015         conflicting modules, and warn you if you have one
1016         installed. For example, this release conflicts with ...
1017         - MooseX::Singleton        <= 0.11
1018         - MooseX::Params::Validate <= 0.05
1019         - Fey::ORM                 <= 0.10
1020
1021         In general, we try to not break backwards compatibility for
1022         most Moose users, but MooseX modules and other code which
1023         extends Moose's metaclasses is often affected by very small
1024         changes in the Moose internals.
1025
1026     * Moose::Meta::Method::Delegation
1027     * Moose::Meta::Attribute
1028       - Delegation methods now have their own method class. (Dave
1029         Rolsky)
1030
1031     * Moose::Meta::TypeConstraint::Parameterizable
1032       - Added a new method 'parameterize' which is basically a factory
1033         for the containing constraint. This makes it easier to create
1034         new types of parameterized constraints. (jnapiorkowski)
1035
1036     * Moose::Meta::TypeConstraint::Union
1037       - Changed the way Union types canonicalize their names to follow
1038         the normalized TC naming rules, which means we strip all
1039         whitespace. (jnapiorkowski)
1040
1041     * Moose::Util::TypeConstraints
1042       - Parameter and Union args are now sorted, this makes Int|Str
1043         the same constraint as Str|Int. (jnapiorkowski)
1044       - Changes to the way Union types are parsed to more correctly
1045         stringify their names. (jnapiorkowski)
1046       - When creating a parameterized type, we now use the new
1047         parameterize method. (jnapiorkowski)
1048       - Incoming type constraint strings are now normalized to remove
1049         all whitespace differences. (jnapiorkowski)
1050       - Changed the way we parse type constraint strings so that we now
1051         match TC[Int,Int,...] and TC[name=>Str] as parameterized type
1052         constraints. This lays the foundation for more flexible type
1053         constraint implementations.
1054
1055     * Tests and docs for all the above. (jnapiorkowski)
1056
1057     * Moose::Exporter
1058     * Moose
1059       - Moose::Exporter will no longer remove a subroutine that the
1060         exporting package re-exports. Moose re-exports the
1061         Carp::confess function, among others. The reasoning is that we
1062         cannot know whether you have also explicitly imported those
1063         functions for your own use, so we err on the safe side and
1064         always keep them. (Dave Rolsky)
1065         - added tests for this (rafl)
1066
1067     * Moose::Meta::Class
1068       - Changes to how we fix metaclass compatibility that are much
1069         too complicated to go into. The summary is that Moose is much
1070         less likely to complain about metaclass incompatibility
1071         now. In particular, if two metaclasses differ because
1072         Moose::Util::MetaRole was used on the two corresponding
1073         classes, then the difference in roles is reconciled for the
1074         subclass's metaclass. (Dave Rolsky)
1075       - Squashed an warning in _process_attribute (thepler)
1076
1077     * Moose::Meta::Role
1078       - throw exceptions (sooner) for invalid attribute names (thepler)
1079         - added tests for this (thepler)
1080
1081     * Moose::Util::MetaRole
1082       - If you explicitly set a constructor or destructor class for a
1083         metaclass object, and then applied roles to the metaclass,
1084         that explicitly set class would be lost and replaced with the
1085         default.
1086
1087     * Moose::Meta::Class
1088     * Moose::Meta::Attribute
1089     * Moose::Meta::Method
1090     * Moose
1091     * Moose::Object
1092     * Moose::Error::Default
1093     * Moose::Error::Croak
1094     * Moose::Error::Confess
1095       - All instances of confess() changed to use overridable
1096         C<throw_error> method. This method ultimately calls a class
1097         constructor, and you can change the class being called. In
1098         addition, errors now pass more information than just a string.
1099         The default C<error_class> behaves like C<Carp::confess>, so
1100         the behavior is not visibly different for end users.
1101
1102 0.57 Wed September 3, 2008
1103     * Moose::Intro
1104       - A new bit of doc intended to introduce folks familiar with
1105         "standard" Perl 5 OO to Moose concepts. (Dave Rolsky)
1106
1107     * Moose::Unsweetened
1108       - Shows examples of two classes, each done first with and then
1109         without Moose. This makes a nice parallel to
1110         Moose::Intro. (Dave Rolsky)
1111
1112     * Moose::Util::TypeConstraints
1113       - Fixed a bug in find_or_parse_type_constraint so that it
1114         accepts a Moose::Meta::TypeConstraint object as the parent
1115         type, not just a name (jnapiorkowski)
1116         - added tests (jnapiorkowski)
1117
1118     * Moose::Exporter
1119       - If Sub::Name was not present, unimporting failed to actually
1120         remove some sugar subs, causing test failures (Dave Rolsky)
1121
1122 0.56 Mon September 1, 2008
1123     For those not following the series of dev releases, there are
1124     several major changes in this release of Moose.
1125       ! Moose::init_meta should now be called as a method. See the
1126         docs for details.
1127
1128       - Major performance improvements by nothingmuch.
1129
1130       - New modules for extension writers, Moose::Exporter and
1131         Moose::Util::MetaRole by Dave Rolsky.
1132
1133       - Lots of doc improvements and additions, especially in the
1134         cookbook sections.
1135
1136       - Various bug fixes.
1137
1138     * Removed all references to the experimental-but-no-longer-needed
1139       Moose::Meta::Role::Application::ToMetaclassInstance.
1140
1141     * Require Class::MOP 0.65.
1142
1143 0.55_04 Sat August 30, 2008
1144     * Moose::Util::MetaRole
1145     * Moose::Cookbook::Extending::Recipe2
1146       - This simplifies the application of roles to any meta class, as
1147         well as the base object class. Reimplemented metaclass traits
1148         using this module. (Dave Rolsky)
1149
1150     * Moose::Cookbook::Extending::Recipe1
1151       - This a new recipe, an overview of various ways to write Moose
1152         extensions (Dave Rolsky)
1153
1154     * Moose::Cookbook::Extending::Recipe3
1155     * Moose::Cookbook::Extending::Recipe4
1156       - These used to be Extending::Recipe1 and Extending::Recipe2,
1157         respectively.
1158
1159 0.55_03 Fri August 29, 2008
1160     * No changes from 0.55_02 except increasing the Class::MOP
1161       dependency to 0.64_07.
1162
1163 0.55_02 Fri August 29, 2008
1164     * Makefile.PL and Moose.pm
1165       - explicitly require Perl 5.8.0+ (Dave Rolsky)
1166
1167     * Moose::Util::TypeConstraints
1168       - Fix warnings from find_type_constraint if the type is not
1169         found (t0m).
1170
1171     * Moose::Meta::TypeConstraint
1172       - Predicate methods (equals/is_a_type_of/is_subtype_of) now
1173         return false if the type you specify cannot be found in the
1174         type registry, rather than throwing an unhelpful and
1175         coincidental exception. (t0m).
1176         - added docs & test for this (t0m)
1177
1178     * Moose::Meta::TypeConstraint::Registry
1179       - add_type_constraint now throws an exception if a parameter is
1180         not supplied (t0m).
1181         - added docs & test for this (t0m)
1182
1183     * Moose::Cookbook::FAQ
1184       - Added a faq entry on the difference between "role" and "trait"
1185         (t0m)
1186
1187     * Moose::Meta::Role
1188       - Fixed a bug that caused role composition to not see a required
1189         method when that method was provided by another role being
1190         composed at the same time. (Dave Rolsky)
1191         - test and bug finding (tokuhirom)
1192
1193 0.55_01 Wed August 20, 2008
1194
1195     !! Calling Moose::init_meta as a function is now         !!
1196     !! deprecated. Please see the Moose.pm docs for details. !!
1197
1198     * Moose::Meta::Method::Constructor
1199       - Fix inlined constructor so that values produced by default
1200         or builder methods are coerced as required. (t0m)
1201         - added test for this (t0m)
1202
1203     * Moose::Meta::Attribute
1204       - A lazy attribute with a default or builder did not attempt to
1205         coerce the default value. The immutable code _did_
1206         coerce. (t0m)
1207         - added test for this (t0m)
1208
1209     * Moose::Exporter
1210       - This is a new helper module for writing "Moose-alike"
1211         modules. This should make the lives of MooseX module authors
1212         much easier. (Dave Rolsky)
1213
1214     * Moose
1215     * Moose::Cookbook::Meta::Recipe5
1216       - Implemented metaclass traits (and wrote a recipe for it):
1217
1218           use Moose -traits => 'Foo'
1219
1220         This should make writing small Moose extensions a little
1221         easier (Dave Rolsky)
1222
1223     * Moose::Cookbook::Basics::Recipe1
1224       - Removed any examples of direct hashref access, and applied an
1225         editorial axe to reduce verbosity. (Dave Rolsky)
1226
1227     * Moose::Cookbook::Basics::Recipe1
1228       - Also applied an editorial axe here. (Dave Rolsky)
1229
1230     * Moose
1231     * Moose::Cookbook::Extending::Recipe1
1232     * Moose::Cookbook::Extending::Recipe2
1233       - Rewrote extending and embedding moose documentation and
1234         recipes to use Moose::Exporter (Dave Rolsky)
1235
1236     * Moose
1237     * Moose::Role
1238       - These two modules now warn when you load them from the main
1239         package "main" package, because we will not export sugar to
1240         main. Previously it just did nothing. (Dave Rolsky)
1241
1242     * Moose::Role
1243       - Now provide an init_meta method just like Moose.pm, and you
1244         can call this to provide an alternate role metaclass. (Dave
1245         Rolsky and nothingmuch)
1246       - get_method_map now respects the package cache flag (nothingmuch)
1247
1248     * Moose::Meta::Role
1249       - Two new methods - add_method and wrap_method_body
1250         (nothingmuch)
1251
1252     * many modules
1253       - Optimizations including allowing constructors to accept hash
1254         refs, making many more classes immutable, and making
1255         constructors immutable. (nothingmuch)
1256
1257 0.55 Sun August 3, 2008
1258     * Moose::Meta::Attribute
1259       - breaking down the way 'handles' methods are
1260         created so that the process can be more easily
1261         overridden by subclasses (stevan)
1262
1263     * Moose::Meta::TypeConstraint
1264       - fixing what is passed into a ->message with
1265         the type constraints (RT #37569)
1266         - added tests for this (Charles Alderman)
1267
1268     * Moose::Util::TypeConstraints
1269       - fix coerce to accept anon types like subtype can (mst)
1270
1271     * Moose::Cookbook
1272       - reorganized the recipes into sections - Basics, Roles, Meta,
1273         Extending - and wrote abstracts for each section (Dave Rolsky)
1274
1275     * Moose::Cookbook::Basics::Recipe10
1276       - A new recipe that demonstrates operator overloading
1277         in combination with Moose. (bluefeet)
1278
1279     * Moose::Cookbook::Meta::Recipe1
1280       - an introduction to what meta is and why you'd want to make
1281         your own metaclass extensions (Dave Rolsky)
1282
1283     * Moose::Cookbook::Meta::Recipe4
1284       - a very simple metaclass example (Dave Rolsky)
1285
1286     * Moose::Cookbook::Extending::Recipe1
1287       - how to write a Moose-alike module to use your own object base
1288         class (Dave Rolsky)
1289
1290     * Moose::Cookbook::Extending::Recipe2
1291       - how to write modules with an API just like C<Moose.pm> (Dave
1292         Rolsky)
1293
1294     * all documentation
1295       - Tons of fixes, both syntactical and grammatical (Dave
1296         Rolsky, Paul Fenwick)
1297
1298 0.54 Thurs. July 3, 2008
1299     ... this is not my day today ...
1300
1301     * Moose::Meta::Attribute
1302       - fixed legal_options_for_inheritance such that
1303         clone_and_inherit options still works for
1304         Class::MOP::Attribute objects and therefore
1305         does not break MooseX::AttributeHelpers
1306         (stevan)
1307
1308 0.53 Thurs. July 3, 2008
1309     * Whoops, I guess I should run 'make manifest' before
1310       actually releasing the module. No actual changes
1311       in this release, except the fact that it includes
1312       the changes that I didn't include in the last
1313       release. (stevan--)
1314
1315 0.52 Thurs. July 3, 2008
1316     * Moose
1317       - added "FEATURE REQUESTS" section to the Moose docs
1318         to properly direct people (stevan) (RT #34333)
1319       - making 'extends' croak if it is passed a Role since
1320         this is not ever something you want to do
1321         (fixed by stevan, found by obra)
1322         - added tests for this (stevan)
1323
1324     * Moose::Object
1325       - adding support for DOES (as in UNIVERSAL::DOES)
1326         (nothingmuch)
1327         - added test for this
1328
1329     * Moose::Meta::Attribute
1330       - added legal_options_for_inheritance (wreis)
1331         - added tests for this (wreis)
1332
1333     * Moose::Cookbook::Snacks::*
1334       - removed some of the unfinished snacks that should
1335         not have been released yet. Added some more examples
1336         to the 'Keywords' snack. (stevan)
1337
1338     * Moose::Cookbook::Style
1339       - added general Moose "style guide" of sorts to the
1340         cookbook (nothingmuch) (RT #34335)
1341
1342     * t/
1343       - added more BUILDARGS tests (stevan)
1344
1345 0.51 Thurs. Jun 26, 2008
1346     * Moose::Role
1347       - add unimport so "no Moose::Role" actually does
1348         something (sartak)
1349
1350     * Moose::Meta::Role::Application::ToRole
1351       - when RoleA did RoleB, and RoleA aliased a method from RoleB in
1352         order to provide its own implementation, that method still got
1353         added to the list of required methods for consumers of
1354         RoleB. Now an aliased method is only added to the list of
1355         required methods if the role doing the aliasing does not
1356         provide its own implementation. See Recipe 11 for an example
1357         of all this. (Dave Rolsky)
1358         - added tests for this
1359
1360     * Moose::Meta::Method::Constructor
1361       - when a single argument that wasn't a hashref was provided to
1362         an immutabilized constructor, the error message was very
1363         unhelpful, as opposed to the non-immutable error. Reported by
1364         dew. (Dave Rolsky)
1365         - added test for this (Dave Rolsky)
1366
1367     * Moose::Meta::Attribute
1368       - added support for meta_attr->does("ShortAlias") (sartak)
1369         - added tests for this (sartak)
1370       - moved the bulk of the `handles` handling to the new
1371         install_delegation method (Stevan)
1372
1373     * Moose::Object
1374       - Added BUILDARGS, a new step in new()
1375
1376     * Moose::Meta::Role::Application::RoleSummation
1377       - fix typos no one ever sees (sartak)
1378
1379     * Moose::Util::TypeConstraints
1380     * Moose::Meta::TypeConstraint
1381     * Moose::Meta::TypeCoercion
1382       - Attempt to work around the ??{ } vs. threads issue
1383         (not yet fixed)
1384       - Some null_constraint optimizations
1385
1386 0.50 Thurs. Jun 11, 2008
1387     - Fixed a version number issue by bumping all modules
1388       to 0.50.
1389
1390 0.49 Thurs. Jun 11, 2008
1391     !! This version now approx. 20-25% !!
1392     !! faster with new Class::MOP 0.59 !!
1393
1394     * Moose::Meta::Attribute
1395       - fixed how the is => (ro|rw) works with
1396         custom defined reader, writer and accessor
1397         options.
1398         - added docs for this (TODO).
1399         - added tests for this (Thanks to Penfold)
1400       - added the custom attribute alias for regular
1401         Moose attributes which is "Moose"
1402       - fix builder and default both being used
1403         (groditi)
1404
1405     * Moose
1406       Moose::Meta::Class
1407       Moose::Meta::Attribute
1408       Moose::Meta::Role
1409       Moose::Meta::Role::Composite
1410       Moose::Util::TypeConstraints
1411       - switched usage of reftype to ref because
1412         it is much faster
1413
1414     * Moose::Meta::Role
1415       - changing add_package_symbol to use the new
1416         HASH ref form
1417
1418     * Moose::Object
1419       - fixed how DEMOLISHALL is called so that it
1420         can be overrided in subclasses (thanks to Sartak)
1421         - added test for this (thanks to Sartak)
1422
1423     * Moose::Util::TypeConstraints
1424       - move the ClassName type check code to
1425         Class::MOP::is_class_loaded (thanks to Sartak)
1426
1427     * Moose::Cookbook::Recipe11
1428       - add tests for this (thanks to tokuhirom)
1429
1430 0.48 Thurs. May 29, 2008
1431     (early morning release engineering)--
1432
1433     - fixing the version in Moose::Meta::Method::Destructor
1434       which was causing the indexer to choke
1435
1436 0.47 Thurs. May 29, 2008
1437     (late night release engineering)--
1438
1439     - fixing the version is META.yml, no functional
1440       changes in this release
1441
1442 0.46 Wed. May 28, 2008
1443     !! This version now approx. 20-25% !!
1444     !! faster with new Class::MOP 0.57 !!
1445
1446     * Moose::Meta::Class
1447       - some optimizations of the &initialize method
1448         since it is called so often by &meta
1449
1450     * Moose::Meta::Class
1451       Moose::Meta::Role
1452       - now use the get_all_package_symbols from the
1453         updated Class::MOP, test suite is now 10 seconds
1454         faster
1455
1456     * Moose::Meta::Method::Destructor
1457       - is_needed can now also be called as a class
1458         method for immutablization to check if the
1459         destructor object even needs to be created
1460         at all
1461
1462     * Moose::Meta::Method::Destructor
1463       Moose::Meta::Method::Constructor
1464       - added more descriptive error message to help
1465         keep people from wasting time tracking an error
1466         that is easily fixed by upgrading.
1467
1468 0.45 Saturday, May 24, 2008
1469     * Moose
1470       - Because of work in Class::MOP 0.57, all
1471         XS based functionality is now optional
1472         and a Pure Perl version is supplied
1473         - the CLASS_MOP_NO_XS environment variable
1474           can now be used to force non-XS versions
1475           to always be used
1476         - several of the packages have been tweaked
1477           to take care of this, mostly we added
1478           support for the package_name and name
1479           variables in all the Method metaclasses
1480       - before/around/after method modifiers now
1481         support regexp matching of names
1482         (thanks to Takatoshi Kitano)
1483         - tests added for this
1484         - NOTE: this only works for classes, it
1485           is currently not supported in roles,
1486           but, ... patches welcome
1487       - All usage of Carp::confess have been replaced
1488         by Carp::croak in the "keyword" functions since
1489         the stack trace is usually not helpful
1490
1491     * Moose::Role
1492       - All usage of Carp::confess have been replaced
1493         by Carp::croak in the "keyword" functions since
1494         the stack trace is usually not helpful
1495       - The 'has' keyword for roles now accepts the
1496         same array ref form that Moose.pm does
1497         (has [qw/foo bar/] => (is => 'rw', ...))
1498         - added test for this
1499
1500     * Moose::Meta::Attribute
1501       - trigger on a ro-attribute is no longer an
1502         error, as it's useful to trigger off of the
1503         constructor
1504
1505     * Moose::Meta::Class
1506       - added same 'add_package_symbol' fix as in
1507         Class::MOP 0.57
1508
1509     * Moose::Util
1510       - does_role now handles non-Moose classes
1511         more gracefully
1512         - added tests for this
1513       - added the 'add_method_modifier' function
1514         (thanks to Takatoshi Kitano)
1515
1516     * Moose::Util::TypeConstraints
1517       - subtypes of parameterizable types now are
1518         themselves parameterizable types
1519
1520     * Moose::Meta::Method::Constructor
1521       - fixed bug where trigger was not being
1522         called by the inlined immutable
1523         constructors
1524         - added test for this (thanks to Caelum)
1525
1526     * Moose::Meta::Role::Application::ToInstance
1527       - now uses the metaclass of the instance
1528         (if possible) to create the anon-class
1529         (thanks Jonathan Rockway)
1530
1531     * Moose::Cookbook::Recipe22
1532       - added the meta-attribute trait recipe
1533         (thanks to Sartak)
1534
1535     * t/
1536       - fixed hash-ordering test bug that was
1537         causing occasional cpantester failures
1538       - renamed the t/000_recipe/*.t tests to be
1539         more descriptive (thanks to Sartak)
1540
1541 0.44 Sat. May 10, 2008
1542     * Moose
1543       - made make_immutable warning cluck to
1544         show where the error is (thanks mst)
1545
1546     * Moose::Object
1547       - BUILDALL and DEMOLISHALL now call
1548         ->body when looping through the
1549         methods, to avoid the overloaded
1550         method call.
1551       - fixed issue where DEMOLISHALL was
1552         eating the $@ values, and so not
1553         working correctly, it still kind of
1554         eats them, but so does vanilla perl
1555         - added tests for this
1556
1557     * Moose::Cookbook::Recipe7
1558       - added new recipe for immutable
1559         functionality (thanks Dave Rolsky)
1560
1561     * Moose::Cookbook::Recipe9
1562       - added new recipe for builder and
1563         lazy_build (thanks Dave Rolsky)
1564
1565     * Moose::Cookbook::Recipe11
1566       - added new recipe for method aliasing
1567         and exclusion with Roles (thanks Dave Rolsky)
1568
1569     * t/
1570       - fixed Win32 test failure (thanks spicyjack)
1571
1572     ~ removed Build.PL and Module::Build compat
1573       since Module::Install has done that.
1574
1575 0.43 Wed. April, 30, 2008
1576     * NOTE TO SELF:
1577         drink more coffee before
1578         doing release engineering
1579
1580     - whoops, forgot to do the smolder tests,
1581       and we broke some of the custom meta-attr
1582       modules. This fixes that.
1583
1584 0.42 Mon. April 28, 2008
1585     - some bad tests slipped by, nothing else
1586       changed in this release (cpantesters++)
1587
1588     - upped the Class::MOP dependency to 0.55
1589       since we have tests which need the C3
1590       support
1591
1592 0.41 Mon. April 28, 2008
1593     ~~ numerous documentation updates ~~
1594
1595     - Changed all usage of die to Carp::croak for better
1596       error reporting (initial patch by Tod Hagan)
1597
1598     ** IMPORTANT NOTE **
1599     - the make_immutable keyword is now deprecated, don't
1600       use it in any new code and please fix your old code
1601       as well. There will be 2 releases, and then it will
1602       be removed.
1603
1604     * Moose
1605       Moose::Role
1606       Moose::Meta::Class
1607       - refactored the way inner and super work to avoid
1608         any method/@ISA cache penalty (nothingmuch)
1609
1610     * Moose::Meta::Class
1611       - fixing &new_object to make sure trigger gets the
1612         coerced value (spotted by Charles Alderman on the
1613         mailing list)
1614         - added test for this
1615
1616     * Moose::Meta::Method::Constructor
1617       - immutable classes which had non-lazy attributes were calling
1618         the default generating sub twice in the constructor. (bug
1619         found by Jesse Luehrs, fixed by Dave Rolsky)
1620         - added tests for this (Dave Rolsky)
1621       - fix typo in initialize_body method (nothingmuch)
1622
1623     * Moose::Meta::Method::Destructor
1624       - fix typo in initialize_body method (nothingmuch)
1625
1626     * Moose::Meta::Method::Overriden
1627       Moose::Meta::Method::Augmented
1628       - moved the logic for these into their own
1629         classes (nothingmuch)
1630
1631     * Moose::Meta::Attribute
1632       - inherited attributes may now be extended without
1633         restriction on the type ('isa', 'does') (Sartak)
1634         - added tests for this (Sartak)
1635       - when an attribute property is malformed (such as lazy without
1636         a default), give the name of the attribute in the error
1637         message (Sartak)
1638       - added the &applied_traits and &has_applied_traits methods
1639         to allow introspection of traits
1640         - added tests for this
1641       - moved 'trait' and 'metaclass' argument handling to here from
1642         Moose::Meta::Class
1643       - clone_and_inherit_options now handles 'trait' and 'metaclass' (has
1644         '+foo' syntax) (nothingmuch)
1645         - added tests for this (t0m)
1646
1647     * Moose::Object
1648       - localize $@ inside DEMOLISHALL to avoid it
1649         eating $@ (found by Ernesto)
1650         - added test for this (thanks to Ernesto)
1651
1652     * Moose::Util::TypeConstraints
1653       - &find_type_constraint now DWIMs when given an
1654         type constraint object or name (nothingmuch)
1655       - &find_or_create_type_constraint superseded with a number of more
1656         specific functions:
1657         - find_or_create_{isa,does}_type_constraint
1658         - find_or_parse_type_constraint
1659
1660     * Moose::Meta::TypeConstraint
1661       Moose::Meta::TypeConstraint::Class
1662       Moose::Meta::TypeConstraint::Role
1663       Moose::Meta::TypeConstraint::Enum
1664       Moose::Meta::TypeConstraint::Union
1665       Moose::Meta::TypeConstraint::Parameterized
1666         - added the &equals method for comparing two type
1667           constraints (nothingmuch)
1668           - added tests for this (nothingmuch)
1669
1670     * Moose::Meta::TypeConstraint
1671       - add the &parents method, which is just an alias to &parent.
1672         Useful for polymorphism with TC::{Class,Role,Union} (nothingmuch)
1673
1674     * Moose::Meta::TypeConstraint::Class
1675       - added the class attribute for introspection purposes
1676         (nothingmuch)
1677         - added tests for this
1678
1679     * Moose::Meta::TypeConstraint::Enum
1680       Moose::Meta::TypeConstraint::Role
1681       - broke these out into their own classes (nothingmuch)
1682
1683     * Moose::Cookbook::Recipe*
1684       - fixed references to test file locations in the POD
1685         and updated up some text for new Moose features
1686         (Sartak)
1687
1688     * Moose::Util
1689       - Added &resolve_metaclass_alias, a helper function for finding an actual
1690         class for a short name (e.g. in the traits list)
1691
1692 0.40 Fri. March 14, 2008
1693     - I hate Pod::Coverage
1694
1695 0.39 Fri. March 14, 2008
1696     * Moose
1697       - documenting the use of '+name' with attributes
1698         that come from recently composed roles. It makes
1699         sense, people are using it, and so why not just
1700         officially support it.
1701       - fixing the 'extends' keyword so that it will not
1702         trigger Ovid's bug (http://use.perl.org/~Ovid/journal/35763)
1703
1704     * oose
1705       - added the perl -Moose=+Class::Name feature to allow
1706         monkeypatching of classes in one liners
1707
1708     * Moose::Util
1709       - fixing the 'apply_all_roles' keyword so that it will not
1710         trigger Ovid's bug (http://use.perl.org/~Ovid/journal/35763)
1711
1712     * Moose::Meta::Class
1713       - added ->create method which now supports roles (thanks to jrockway)
1714         - added tests for this
1715       - added ->create_anon_class which now supports roles and caching of
1716         the results (thanks to jrockway)
1717         - added tests for this
1718       - made ->does_role a little more forgiving when it is
1719         checking a Class::MOP era metaclasses.
1720
1721     * Moose::Meta::Role::Application::ToInstance
1722       - it is now possible to pass extra params to be used when
1723         a role is applied to an the instance (rebless_params)
1724         - added tests for this
1725
1726     * Moose::Util::TypeConstraints
1727       - class_type now accepts an optional second argument for a
1728         custom message. POD anotated accordingly (groditi)
1729         - added tests for this
1730       - it is now possible to make anon-enums by passing 'enum' an
1731         ARRAY ref instead of the $name => @values. Everything else
1732         works as before.
1733         - added tests for this
1734
1735     * t/
1736       - making test for using '+name' on attributes consumed
1737         from a role, it works and makes sense too.
1738
1739     * Moose::Meta::Attribute
1740       - fix handles so that it doesn't return nothing
1741         when the method cannot be found, not sure why
1742         it ever did this originally, this means we now
1743         have slightly better support for AUTOLOADed
1744         objects
1745         - added more delegation tests
1746       - adding ->does method to this so as to better
1747         support traits and their introspection.
1748         - added tests for this
1749
1750     * Moose::Object
1751       - localizing the Data::Dumper configurations so
1752         that it does not pollute others (RT #33509)
1753       - made ->does a little more forgiving when it is
1754         passed Class::MOP era metaclasses.
1755
1756 0.38 Fri. Feb. 15, 2008
1757     * Moose::Meta::Attribute
1758       - fixed initializer to correctly do
1759         type checking and coercion in the
1760         callback
1761         - added tests for this
1762
1763     * t/
1764       - fixed some finicky tests (thanks to konobi)
1765
1766 0.37 Thurs. Feb. 14, 2008
1767     * Moose
1768       - fixed some details in Moose::init_meta
1769         and its superclass handling (thanks thepler)
1770         - added tests for this (thanks thepler)
1771       - 'has' now dies if you don't pass in name
1772         value pairs
1773       - added the 'make_immutable' keyword as a shortcut
1774         to make_immutable
1775
1776     * Moose::Meta::Class
1777       Moose::Meta::Method::Constructor
1778       Moose::Meta::Attribute
1779       - making (init_arg => undef) work here too
1780         (thanks to nothingmuch)
1781
1782     * Moose::Meta::Attribute
1783       Moose::Meta::Method::Constructor
1784       Moose::Meta::Method::Accessor
1785       - make lazy attributes respect attr initializers (rjbs)
1786         - added tests for this
1787
1788     * Moose::Util::TypeConstraints
1789       Moose::Util::TypeConstraints::OptimizedConstraints
1790       Moose::Meta::TypeConstraints
1791       Moose::Meta::Attribute
1792       Moose::Meta::Method::Constructor
1793       Moose::Meta::Method::Accessor
1794       - making type errors use the
1795         assigned message (thanks to Sartak)
1796         - added tests for this
1797
1798     * Moose::Meta::Method::Destructor
1799       - making sure DESTROY gets inlined properly
1800         with successive DEMOLISH calls (thanks to manito)
1801
1802     * Moose::Meta::Attribute
1803       Moose::Meta::Method::Accessor
1804       - fixed handling of undef with type constraints
1805         (thanks to Ernesto)
1806         - added tests for this
1807
1808     * Moose::Util
1809       - added &get_all_init_args and &get_all_attribute_values
1810         (thanks to Sartak and nothingmuch)
1811
1812 0.36 Sat. Jan. 26, 2008
1813     * Moose::Role
1814       Moose::Meta::Attribute
1815       - role type tests now support when roles are
1816         applied to non-Moose classes (found by ash)
1817         - added tests for this (thanks to ash)
1818       - couple extra tests to boost code coverage
1819
1820     * Moose::Meta::Method::Constructor
1821       - improved fix for handling Class::MOP attributes
1822         - added test for this
1823
1824     * Moose::Meta::Class
1825       - handled the add_attribute($attribute_meta_object)
1826         case correctly
1827         - added test for this
1828
1829 0.35 Tues. Jan. 22, 2008
1830     * Moose::Meta::Method::Constructor
1831       - fix to make sure even Class::MOP attributes
1832         are handled correctly (Thanks to Dave Rolsky)
1833         - added test for this (also Dave Rolsky)
1834
1835     * Moose::Meta::Class
1836       - improved error message on _apply_all_roles,
1837         you should now use Moose::Util::apply_all_roles
1838         and you shouldnt have been using a _ prefixed
1839         method in the first place ;)
1840
1841 0.34 Mon. Jan. 21, 2008
1842     ~~~ more misc. doc. fixes ~~~
1843     ~~ updated copyright dates ~~
1844
1845     Moose is now a postmodern object system :)
1846       - (see the POD for details)
1847
1848     * <<Role System Refactoring>>
1849     - this release contains a major reworking and
1850       cleanup of the role system
1851       - 100% backwards compat.
1852       - Role application now restructured into seperate
1853         classes based on type of applicants
1854       - Role summation (combining of more than one role)
1855         is much cleaner and anon-classes are no longer
1856         used in this process
1857       - new Composite role metaclass
1858       - runtime application of roles to instances
1859         is now more efficient and re-uses generated
1860         classes when applicable
1861
1862     * <<New Role composition features>>
1863       - methods can now be excluded from a given role
1864         during composition
1865       - methods can now be aliased to another name (and
1866         still retain the original as well)
1867
1868     * Moose::Util::TypeConstraints::OptimizedConstraints
1869       - added this module (see above)
1870
1871     * Moose::Meta::Class
1872       - fixed the &_process_attribute method to be called
1873         by &add_attribute, so that the API is now correct
1874
1875     * Moose::Meta::Method::Accessor
1876       - fixed bug when passing a list of values to
1877         an accessor would get (incorrectly) ignored.
1878         Thanks to Sartak for finding this ;)
1879         - added tests for this (Sartak again)
1880
1881     * Moose::Meta::Method::Accessor
1882       Moose::Meta::Method::Constructor
1883       Moose::Meta::Attribute
1884       Moose::Meta::TypeConstraint
1885       Moose::Meta::TypeCoercion
1886       - lots of cleanup of such things as:
1887         - generated methods
1888         - type constraint handling
1889         - error handling/messages
1890         (thanks to nothingmuch)
1891
1892     * Moose::Meta::TypeConstraint::Parameterizable
1893       - added this module to support the refactor
1894         in Moose::Meta::TypeConstraint::Parameterized
1895
1896     * Moose::Meta::TypeConstraint::Parameterized
1897       - refactored how these types are handled so they
1898         are more generic and not confined to ArrayRef
1899         and HashRef only
1900
1901     * t/
1902       - shortened some file names for better VMS support (RT #32381)
1903
1904 0.33 Fri. Dec. 14, 2007
1905     !! Moose now loads 2 x faster !!
1906     !!  with new Class::MOP 0.49  !!
1907
1908     ++ new oose.pm module to make command line
1909        Moose-ness easier (see POD docs for more)
1910
1911     * Moose::Meta::Class
1912     * Moose::Meta::Role
1913       - several tweaks to take advantage of the
1914         new method map caching in Class::MOP
1915
1916     * Moose::Meta::TypeConstraint::Parameterized
1917       - allow subtypes of ArrayRef and HashRef to
1918         be used as a container (sartak)
1919         - added tests for this
1920       - basic support for coercion to ArrayRef and
1921         HashRef for containers (sartak)
1922         - added tests for this
1923
1924     * Moose::Meta::TypeCoercion
1925       - coercions will now create subtypes as needed
1926         so you can now add coercions to parameterized
1927         types without having to explictly define them
1928         - added tests for this
1929
1930     * Moose::Meta::Method::Accessor
1931       - allow subclasses to decide whether we need
1932         to copy the value into a new variable (sartak)
1933
1934 0.32 Tues. Dec. 4, 2007
1935     * Moose::Util::TypeConstraints
1936       - fixing how subtype aliases of unions work
1937         they should inherit the parent's coercion
1938         - added tests for this
1939       - you can now define multiple coercions on
1940         a single type at different times instead of
1941         having to do it all in one place
1942         - added tests for this
1943
1944     * Moose::Meta::TypeConstraint
1945       - there is now a default constraint of sub { 1 }
1946         instead of Moose::Util::TypeConstraints setting
1947         this for us
1948
1949     * Moose::Meta::TypeCoercion
1950     * Moose::Meta::TypeCoercion::Union
1951       - added the &has_coercion_for_type and
1952         &add_type_coercions methods to support the
1953         new features above (although you cannot add
1954         more type coercions for Union types)
1955
1956 0.31 Mon. Nov. 26, 2007
1957     * Moose::Meta::Attribute
1958       - made the +attr syntax handle extending types with
1959         parameters. So "has '+foo' => (isa => 'ArrayRef[Int]')"
1960         now works if the original foo is an ArrayRef.
1961         - added tests for this.
1962       - delegation now works even if the attribute does not
1963         have a reader method using the get_read_method_ref
1964         method from Class::MOP::Attribute.
1965         - added tests for this
1966         - added docs for this
1967
1968     * Moose::Util::TypeConstraints
1969       - passing no "additional attribute info" to
1970         &find_or_create_type_constraint will no longer
1971         attempt to create an __ANON__ type for you,
1972         instead it will just return undef.
1973         - added docs for this
1974
1975 0.30 Fri. Nov. 23, 2007
1976     * Moose::Meta::Method::Constructor
1977       -builder related bug in inlined constructor. (groditi)
1978
1979     * Moose::Meta::Method::Accessor
1980       - genereate unnecessary calls to predicates and refactor
1981         code generation for runtime speed (groditi)
1982
1983     * Moose::Util::TypeConstraints
1984       - fix ClassName constraint to introspect symbol table (mst)
1985         - added more tests for this (mst)
1986       - fixed it so that subtype 'Foo' => as 'HashRef[Int]' ...
1987         with work correctly.
1988         - added tests for this
1989
1990     * Moose::Cookbook
1991       - adding the link to Recipie 11 (written by Sartak)
1992         - adding test for SYNOPSIS code
1993
1994     * t/
1995       - New tests for builder bug. Upon instantiation, if an
1996         attribute had a builder, no value and was not lazy the
1997         builder default was not getting run, oops. (groditi)
1998
1999 0.29 Tues. Nov. 13, 2007
2000     * Moose::Meta::Attribute
2001       - Fix error message on missing builder method (groditi)
2002
2003     * Moose::Meta::Method::Accessor
2004       - Fix error message on missing builder method (groditi)
2005
2006     * t/
2007       - Add test to check for the correct error message when
2008         builder method is missing (groditi)
2009
2010 0.28 Tues. Nov. 13, 2007
2011     - 0.27 packaged incorrectly (groditi)
2012
2013 0.27 Tues. Nov. 13, 2007
2014     * Moose::Meta::Attribute
2015       - Added support for the new builder option (groditi)
2016       - Added support for lazy_build option (groditi)
2017       - Changed slot initialization for predicate changes (groditi)
2018
2019     * Moose::Meta::Method::Accessor
2020       - Added support for lazy_build option (groditi)
2021       - Fix inline methods to work with corrected predicate
2022         behavior (groditi)
2023
2024     * Moose::Meta::Method::Constructor
2025       - Added support for lazy_build option (groditi)
2026
2027     * t/
2028       - tests for builder and lazy_build (groditi)
2029
2030     * fixing some misc. bits in the docs that
2031       got mentioned on CPAN Forum & perlmonks
2032
2033     * Moose::Meta::Role
2034       - fixed how required methods are handled
2035         when they encounter overriden or modified
2036         methods from a class (thanks to confound).
2037         - added tests for this
2038
2039     * Moose::Util::TypeConstraint
2040       - fixed the type notation parser so that
2041         the | always creates a union and so is
2042         no longer a valid type char (thanks to
2043         konobi, mugwump and #moose for working
2044         this one out.)
2045         - added more tests for this
2046
2047 0.26 Thurs. Sept. 27, 2007
2048     == New Features ==
2049
2050     * Parameterized Types
2051       We now support parameterized collection types, such as:
2052           ArrayRef[Int]    # array or integers
2053           HashRef[Object]  # a hash with object values
2054       They can also be nested:
2055           ArrayRef[HashRef[RegexpRef]] # an array of hashes with regex values
2056       And work with the type unions as well:
2057           ArrayRef[Int | Str]  # array of integers of strings
2058
2059     * Better Framework Extendability
2060       Moose.pm is now "extendable" such that it is now much
2061       easier to extend the framework and add your own keywords
2062       and customizations. See the "EXTENDING AND EMBEDDING MOOSE"
2063       section of the Moose.pm docs.
2064
2065     * Moose Snacks!
2066       In an effort to begin documenting some of the various
2067       details of Moose as well as some common idioms, we have
2068       created Moose::Cookbook::Snacks as a place to find
2069       small (easily digestable) nuggets of Moose code.
2070
2071     ====
2072     ~ Several doc updates/cleanup thanks to castaway ~
2073
2074     - converted build system to use Module::Install instead of
2075       Module::Build (thanks to jrockway)
2076
2077     * Moose
2078       - added all the meta classes to the immutable list and
2079         set it to inline the accessors
2080       - fix import to allow Sub::Exporter like { into => }
2081             and { into_level => } (perigrin)
2082       - exposed and documented init_meta() to allow better
2083             embedding and extending of Moose (perigrin)
2084
2085         * t/
2086           - complete re-organization of the test suite
2087           - added some new tests as well
2088           - finally re-enabled the Moose::POOP test since
2089             the new version of DBM::Deep now works again
2090             (thanks rob)
2091
2092     * Moose::Meta::Class
2093       - fixed very odd and very nasty recursion bug with
2094         inner/augment (mst)
2095         - added tests for this (eilara)
2096
2097     * Moose::Meta::Attribute
2098       Moose::Meta::Method::Constructor
2099       Moose::Meta::Method::Accessor
2100       - fixed issue with overload::Overloaded getting called
2101         on non-blessed items. (RT #29269)
2102         - added tests for this
2103
2104     * Moose::Meta::Method::Accessor
2105       - fixed issue with generated accessor code making
2106         assumptions about hash based classes (thanks to dexter)
2107
2108     * Moose::Coookbook::Snacks
2109       - these are bits of documentation, not quite as big as
2110         Recipes but which have no clear place in the module docs.
2111         So they are Snacks! (horray for castaway++)
2112
2113     * Moose::Cookbook::Recipe4
2114       - updated it to use the new ArrayRef[MyType] construct
2115         - updated the accompanying test as well
2116
2117     +++ Major Refactor of the Type Constraint system +++
2118     +++       with new features added as well        +++
2119
2120     * Moose::Util::TypeConstraint
2121       - no longer uses package variable to keep track of
2122         the type constraints, now uses the an instance of
2123         Moose::Meta::TypeConstraint::Registry to do it
2124       - added more sophisticated type notation parsing
2125         (thanks to mugwump)
2126         - added tests for this
2127
2128     * Moose::Meta::TypeConstraint
2129       - some minor adjustments to make subclassing easier
2130       - added the package_defined_in attribute so that we
2131         can track where the type constraints are created
2132
2133     * Moose::Meta::TypeConstraint::Union
2134       - this is now been refactored to be a subclass of
2135         Moose::Meta::TypeConstraint
2136
2137     * Moose::Meta::TypeCoercion::Union
2138       - this has been added to service the newly refactored
2139         Moose::Meta::TypeConstraint::Union and is itself
2140         a subclass of Moose::Meta::TypeCoercion
2141
2142     * Moose::Meta::TypeConstraint::Parameterized
2143       - added this module (taken from MooseX::AttributeHelpers)
2144         to help construct nested collection types
2145         - added tests for this
2146
2147     * Moose::Meta::TypeConstraint::Registry
2148       - added this class to keep track of type constraints
2149
2150 0.25 Mon. Aug. 13, 2007
2151     * Moose
2152       - Documentation update to reference Moose::Util::TypeConstraints
2153         under 'isa' in 'has' for how to define a new type
2154         (thanks to shlomif).
2155
2156     * Moose::Meta::Attribute
2157       - required attributes now will no longer accept undef
2158         from the constructor, even if there is a default and lazy
2159         - added tests for this
2160       - default subroutines must return a value which passes the
2161         type constraint
2162         - added tests for this
2163
2164     * Moose::Meta::Attribute
2165     * Moose::Meta::Method::Constructor
2166     * Moose::Meta::Method::Accessor
2167       - type-constraint tests now handle overloaded objects correctly
2168         in the error message
2169         - added tests for this (thanks to EvanCarroll)
2170
2171     * Moose::Meta::TypeConstraint::Union
2172       - added (has_)hand_optimized_constraint to this class so that
2173         it behaves as the regular Moose::Meta::TypeConstraint does.
2174
2175     * Moose::Meta::Role
2176       - large refactoring of this code
2177       - added several more tests
2178         - tests for subtle conflict resolition issues
2179           added, but not currently running
2180           (thanks to kolibre)
2181
2182     * Moose::Cookbook::Recipe7
2183       - added new recipe for augment/inner functionality
2184         (still in progress)
2185         - added test for this
2186
2187     * Moose::Spec::Role
2188       - a formal definition of roles (still in progress)
2189
2190     * Moose::Util
2191       - utilities for easier working with Moose classes
2192         - added tests for these
2193
2194     * Test::Moose
2195       - This contains Moose specific test functions
2196         - added tests for these
2197
2198 0.24 Tues. July 3, 2007
2199     ~ Some doc updates/cleanup ~
2200
2201     * Moose::Meta::Attribute
2202       - added support for roles to be given as parameters
2203         to the 'handles' option.
2204         - added tests and docs for this
2205       - the has '+foo' attribute form now accepts changes to
2206         the lazy option, and the addition of a handles option
2207         (but not changing the handles option)
2208         - added tests and docs for this
2209
2210     * Moose::Meta::Role
2211       - required methods are now fetched using find_method_by_name
2212         so that required methods can come from superclasses
2213         - adjusted tests for this
2214
2215 0.23 Mon. June 18, 2007
2216     * Moose::Meta::Method::Constructor
2217       - fix inlined constructor for hierarchy with multiple BUILD methods (mst)
2218     * Moose::Meta::Class
2219       - Modify make_immutable to work with the new Class::MOP immutable
2220         mechanism + POD + very basic test (groditi)
2221     * Moose::Meta::Attribute
2222       - Fix handles to use goto() so that caller() comes out properly on
2223         the other side (perigrin)
2224
2225 0.22 Thurs. May 31, 2007
2226     * Moose::Util::TypeConstraints
2227       - fix for prototype undeclared issue when Moose::Util::TypeConstraints
2228         loaded before consumers (e.g. Moose::Meta::Attribute) by predeclaring
2229         prototypes for functions
2230       - added the ClassName type constraint, this checks for strings
2231         which will respond true to ->isa(UNIVERSAL).
2232         - added tests and docs for this
2233       - subtyping just in name now works correctly by making the
2234         default for where be { 1 }
2235         - added test for this
2236
2237     * Moose::Meta::Method::Accessor
2238       - coerce and lazy now work together correctly, thanks to
2239         merlyn for finding this bug
2240         - tests added for this
2241       - fix reader presedence bug in Moose::Meta::Attribute + tests
2242
2243     * Moose::Object
2244       - Foo->new(undef) now gets ignored, it is assumed you meant to pass
2245         a HASH-ref and missed. This produces better error messages then
2246         having it die cause undef is not a HASH.
2247         - added tests for this
2248
2249 0.21 Thursday, May 2nd, 2007
2250     * Moose
2251       - added SUPER_SLOT and INNER_SLOT class hashes to support unimport
2252       - modified unimport to remove super and inner along with the rest
2253         - altered unimport tests to handle this
2254
2255     * Moose::Role
2256       - altered super export to populate SUPER_SLOT
2257
2258     * Moose::Meta::Class
2259       - altered augment and override modifier application to use *_SLOT
2260         - modified tests for these to unimport one test class each to test
2261
2262     * Moose::Meta::Role
2263       - fixed issue where custom attribute metaclasses
2264         where not handled correctly in roles
2265         - added tests for this
2266
2267     * Moose::Meta::Class
2268       - fixed issue where extending metaclasses with
2269         roles would blow up. Thanks to Aankhen`` for
2270         finding this insidious error, and it's solution.
2271
2272     ~~ lots of spelling and grammer fixes in the docs,
2273        many many thanks to rlb3 and Aankhen for these :)
2274
2275 0.20 Friday, April 6th, 2007
2276     >> I messed up the SKIP logic in one test
2277        so this release is just to fix that.
2278
2279     * Moose
2280       - 'has' now also accepts an ARRAY ref
2281         to create multiple attrs (see docs)
2282         (thanks to konobi for this)
2283          - added tests and docs
2284
2285 0.19 Thurs. April 5th, 2007
2286     ~~ More documentation updates ~~
2287
2288     * Moose::Util::TypeConstraints
2289       - 'type' now supports messages as well
2290         thanks to phaylon for finding this
2291         - added tests for this
2292       - added &list_all_type_constraints and
2293         &list_all_builtin_type_constraints
2294         functions to facilitate introspection.
2295
2296     * Moose::Meta::Attribute
2297       - fixed regexp 'handles' declarations
2298         to build the list of delegated methods
2299         correctly (and not override important
2300         things like &new) thanks to ashleyb
2301         for finding this
2302         - added tests and docs for this
2303       - added the 'documentation' attributes
2304         so that you can actually document your
2305         attributes and inspect them through the
2306         meta-object.
2307         - added tests and docs for this
2308
2309     * Moose::Meta::Class
2310       - when loading custom attribute metaclasses
2311         it will first look in for the class in the
2312         Moose::Meta::Attribute::Custom::$name, and
2313         then default to just loading $name.
2314         - added tests and docs for this
2315
2316     * Moose::Meta::TypeConstraint
2317       - type constraints now stringify to their names.
2318         - added test for this
2319
2320     * misc.
2321       - added tests to assure we work with Module::Refresh
2322       - added stricter test skip logic in the Moose POOP
2323         test, ask Rob Kinyon why.
2324         - *cough* DBM::Deep 1.0 backwards compatibility sucks *cough* ;)
2325
2326 0.18 Sat. March 10, 2007
2327     ~~ Many, many documentation updates ~~
2328
2329     * misc.
2330       - We now use Class::MOP::load_class to
2331         load all classes.
2332       - added tests to show types and subtypes
2333         working with Declare::Constraints::Simple
2334         and Test::Deep as constraint engines.
2335
2336 0.18_001
2337     !! You must have Class::MOP 0.37_001  !!
2338     !! for this developer release to work !!
2339
2340     This release was primarily adding the immutable
2341     feature to Moose. An immutable class is one which
2342     you promise not to alter. When you set the class
2343     as immutable it will perform various bits of
2344     memoization and inline certain part of the code
2345     (constructors, destructors and accessors). This
2346     minimizes (and in some cases totally eliminates)
2347     one of Moose's biggest performance hits. This
2348     feature is not on by default, and is 100% optional.
2349     It has several configurable bits as well, so you
2350     can pick and choose to your specific needs.
2351
2352     The changes involved in this were fairly wide and
2353     highly specific, but 100% backwards compatible, so
2354     I am not going to enumerate them here. If you are
2355     truely interested in what was changed, please do
2356     a diff :)
2357
2358 0.17 Tues. Nov. 14, 2006
2359     * Moose::Meta::Method::Accessor
2360       - bugfix for read-only accessors which
2361         are have a type constraint and lazy.
2362         Thanks to chansen for finding it.
2363
2364 0.16 Tues. Nov. 14, 2006
2365     ++ NOTE ++
2366     There are some speed improvements in this release,
2367     but they are only the begining, so stay tuned.
2368
2369     * Moose::Object
2370       - BUILDALL and DEMOLISHALL no longer get
2371         called unless they actually need to be.
2372         This gave us a signifigant speed boost
2373         for the cases when there is no BUILD or
2374         DEMOLISH method present.
2375
2376     * Moose::Util::TypeConstraints
2377     * Moose::Meta::TypeConstraint
2378       - added an 'optimize_as' option to the
2379         type constraint, which allows for a
2380         hand optimized version of the type
2381         constraint to be used when possible.
2382       - Any internally created type constraints
2383         now provide an optimized version as well.
2384
2385 0.15 Sun. Nov. 5, 2006
2386     ++ NOTE ++
2387     This version of Moose *must* have Class::MOP 0.36 in order
2388     to work correctly. A number of small internal tweaks have
2389     been made in order to be compatible with that release.
2390
2391     * Moose::Util::TypeConstraints
2392       - added &unimport so that you can clean out
2393         your class namespace of these exported
2394         keywords
2395
2396     * Moose::Meta::Class
2397       - fixed minor issue which occasionally
2398         comes up during global destruction
2399         (thanks omega)
2400       - moved Moose::Meta::Method::Overriden into
2401         its own file.
2402
2403     * Moose::Meta::Role
2404       - moved Moose::Meta::Role::Method into
2405         its own file.
2406
2407     * Moose::Meta::Attribute
2408       - changed how we do type checks so that
2409         we reduce the overall cost, but still
2410         retain correctness.
2411        *** API CHANGE ***
2412       - moved accessor generation methods to
2413         Moose::Meta::Method::Accessor to
2414         conform to the API changes from
2415         Class::MOP 0.36
2416
2417     * Moose::Meta::TypeConstraint
2418       - changed how constraints are compiled
2419         so that we do less recursion and more
2420         iteration. This makes the type check
2421         faster :)
2422       - moved Moose::Meta::TypeConstraint::Union
2423         into its own file
2424
2425     * Moose::Meta::Method::Accessor
2426       - created this from methods formerly found in
2427         Moose::Meta::Attribute
2428
2429     * Moose::Meta::Role::Method
2430       - moved this from Moose::Meta::Role
2431
2432     * Moose::Meta::Method::Overriden
2433       - moved this from Moose::Meta::Class
2434
2435     * Moose::Meta::TypeConstraint::Union
2436       - moved this from Moose::Meta::TypeConstraint
2437
2438 0.14 Mon. Oct. 9, 2006
2439
2440     * Moose::Meta::Attribute
2441       - fixed lazy attributes which were not getting
2442         checked with the type constraint (thanks ashley)
2443         - added tests for this
2444       - removed the over-enthusiastic DWIMery of the
2445         automatic ArrayRef and HashRef defaults, it
2446         broke predicates in an ugly way.
2447         - removed tests for this
2448
2449 0.13 Sat. Sept. 30, 2006
2450     ++ NOTE ++
2451     This version of Moose *must* have Class::MOP 0.35 in order
2452     to work correctly. A number of small internal tweaks have
2453     been made in order to be compatible with that release.
2454
2455     * Moose
2456       - Removed the use of UNIVERSAL::require to be a better
2457         symbol table citizen and remove a dependency
2458         (thanks Adam Kennedy)
2459
2460       **~~ removed experimental & undocumented feature ~~**
2461       - commented out the 'method' and 'self' keywords, see the
2462         comments for more info.
2463
2464     * Moose::Cookbook
2465       - added a FAQ and WTF files to document frequently
2466         asked questions and common problems
2467
2468     * Moose::Util::TypeConstraints
2469       - added GlobRef and FileHandle type constraint
2470         - added tests for this
2471
2472     * Moose::Meta::Attribute
2473       - if your attribute 'isa' ArrayRef of HashRef, and you have
2474         not explicitly set a default, then make the default DWIM.
2475         This will also work for subtypes of ArrayRef and HashRef
2476         as well.
2477       - you can now auto-deref subtypes of ArrayRef or HashRef too.
2478         - new test added for this (thanks to ashley)
2479
2480     * Moose::Meta::Role
2481       - added basic support for runtime role composition
2482         but this is still *highly experimental*, so feedback
2483         is much appreciated :)
2484         - added tests for this
2485
2486     * Moose::Meta::TypeConstraint
2487       - the type constraint now handles the coercion process
2488         through delegation, this is to support the coercion
2489         of unions
2490
2491     * Moose::Meta::TypeConstraint::Union
2492       - it is now possible for coercions to be performed
2493         on a type union
2494         - added tests for this (thanks to konobi)
2495
2496     * Moose::Meta::TypeCoercion
2497       - properly capturing error when type constraint
2498         is not found
2499
2500     * Build.PL
2501       - Scalar::Util 1.18 is bad on Win32, so temporarily
2502         only require version 1.17 for Win32 and cygwin.
2503         (thanks Adam Kennedy)
2504
2505 0.12 Sat. Sept. 1, 2006
2506     * Moose::Cookbook
2507       - Recipe5 (subtypes & coercion) has been written
2508
2509     * Moose
2510       - fixed "bad meta" error message to be more descriptive
2511       - fixed &unimport to not remove the &inner and &super
2512         keywords because we need to localize them.
2513       - fixed number of spelling/grammer issues, thanks Theory :)
2514
2515       **~~ experimental & undocumented feature ~~**
2516       - added the method and self keywords, they are basically
2517         just sugar, and they may not stay around.
2518
2519     * Moose::Object
2520       - added &dump method to easily Data::Dumper
2521         an object
2522
2523     * Moose::Meta::TypeConstraint
2524       - added the &is_a_type_of method to check both the current
2525         and the subtype of a method (similar to &isa with classes)
2526
2527     * Moose::Meta::Role
2528       - this is now a subclass of Class::MOP::Module, and no longer
2529         creates the _role_meta ugliness of before.
2530         - fixed tests to reflect this change
2531
2532 0.11 Wed. July 12, 2006
2533     * Moose
2534       - added an &unimport method to remove all the keywords
2535         that Moose will import, simply add 'no Moose' to the
2536         bottom of your class file.
2537
2538     * t/
2539       - fixed some test failures caused by a forgotten test
2540         dependency.
2541
2542 0.10 Thurs. July 6, 2006
2543     * Moose
2544       - improved error message when loading modules so
2545         it is less confusing when you load a role.
2546       - added &calculate_all_roles method to
2547         Moose::Meta::Class and Moose::Meta::Role
2548
2549     NOTE:
2550     This module has been tested against Class::MOP 0.30
2551     but it does not yet utilize the optimizations
2552     it makes available. Stay tuned for that ;)
2553
2554 0.09_03 Fri. June 23, 2006
2555     ++ DEVELOPER RELEASE ++
2556     * Moose
2557       - 'use strict' and 'use warnings' are no longer
2558          needed in Moose classes, Moose itself will
2559          turn them on for you.
2560          - added tests for this
2561       - moved code from exported subs to private methods
2562         in Moose::Meta::Class
2563
2564     * Moose::Role
2565       - as with Moose, strict and warnings are
2566         automatically turned on for you.
2567          - added tests for this
2568
2569     * Moose::Meta::Role
2570       - now handles an edge case for override errors
2571         - added tests for this
2572       - added some more edge case tests
2573
2574 0.09_02 Tues. May 16, 2006
2575     ++ DEVELOPER RELEASE ++
2576     * Moose
2577       - added prototypes to the exported subs
2578       - updated docs
2579
2580     * Moose::Role
2581       - added prototypes to the exported subs
2582       - updated docs
2583
2584     * Moose::Util::TypeConstraints
2585       - cleaned up prototypes for the subs
2586       - updated docs
2587
2588 0.09_01 Fri. May 12, 2006
2589     ++ DEVELOPER RELEASE ++
2590       - This release works in combination with
2591         Class::MOP 0.29_01, it is a developer
2592         release because it uses the a new
2593         instance sub-protocol and a fairly
2594         complete Role implementation. It has
2595         not yet been optimized, so it slower
2596         the the previous CPAN version. This
2597         release also lacks good updated docs,
2598         the official release will have updated docs.
2599
2600     * Moose
2601       - refactored the keyword exports
2602         - 'with' now checks Role validaity and
2603           accepts more than one Role at a time
2604         - 'extends' makes metaclass adjustments as
2605            needed to ensure metaclass compatibility
2606
2607     * Moose::Role
2608       - refactored the keyword exports
2609         - 'with' now checks Role validaity and
2610           accepts more than one Role at a time
2611
2612     * Moose::Util::TypeConstraints
2613       - added the 'enum' keyword for simple
2614         string enumerations which can be used as
2615         type constraints
2616         - see example of usage in t/202_example.t
2617
2618     * Moose::Object
2619       - more careful checking of params to new()
2620
2621     * Moose::Meta::Role
2622       - much work done on the role composition
2623         - many new tests for conflict detection
2624           and composition edge cases
2625         - not enough documentation, I suggest
2626           looking at the tests
2627
2628     * Moose::Meta::Instance
2629       - added new Instance metaclass to support
2630         the new Class::MOP instance protocol
2631
2632     * Moose::Meta::Class
2633       - some small changes to support the new
2634         instance protocol
2635       - some small additions to support Roles
2636
2637     * Moose::Meta::Attribute
2638       - some improvements to the accessor generation code
2639         by nothingmuch
2640       - some small changes to support the new
2641         instance protocol
2642       - (still somewhat) experimental delegation support
2643         with the 'handles' option
2644         - added several tests for this
2645         - no docs for this yet
2646
2647 0.05 Thurs. April 27, 2006
2648     * Moose
2649       - keywords are now exported with Sub::Exporter
2650         thanks to chansen for this commit
2651       - has keyword now takes a 'metaclass' option
2652         to support custom attribute meta-classes
2653         on a per-attribute basis
2654         - added tests for this
2655       - the 'has' keyword not accepts inherited slot
2656         specifications (has '+foo'). This is still an
2657         experimental feature and probably not finished
2658         see t/038_attribute_inherited_slot_specs.t for
2659         more details, or ask about it on #moose
2660         - added tests for this
2661
2662     * Moose::Role
2663       - keywords are now exported with Sub::Exporter
2664
2665     * Moose::Utils::TypeConstraints
2666       - reorganized the type constraint hierarchy, thanks
2667         to nothingmuch and chansen for his help and advice
2668         on this
2669         - added some tests for this
2670       - keywords are now exported with Sub::Exporter
2671         thanks to chansen for this commit
2672
2673     * Moose::Meta::Class
2674       - due to changes in Class::MOP, we had to change
2675         construct_instance (for the better)
2676
2677     * Moose::Meta::Attribute
2678       - due to changes in Class::MOP, we had to add the
2679         initialize_instance_slot method (it's a good thing)
2680
2681     * Moose::Meta::TypeConstraint
2682       - added type constraint unions
2683         - added tests for this
2684       - added the is_subtype_of predicate method
2685         - added tests for this
2686
2687 0.04 Sun. April 16th, 2006
2688     * Moose::Role
2689       - Roles can now consume other roles
2690         - added tests for this
2691       - Roles can specify required methods now with
2692         the requires() keyword
2693         - added tests for this
2694
2695     * Moose::Meta::Role
2696       - ripped out much of it's guts ,.. much cleaner now
2697       - added required methods and correct handling of
2698         them in apply() for both classes and roles
2699         - added tests for this
2700       - no longer adds a does() method to consuming classes
2701         it relys on the one in Moose::Object
2702       - added roles attribute and some methods to support
2703         roles consuming roles
2704
2705     * Moose::Meta::Attribute
2706       - added support for triggers on attributes
2707         - added tests for this
2708       - added support for does option on an attribute
2709         - added tests for this
2710
2711     * Moose::Meta::Class
2712       - added support for attribute triggers in the
2713         object construction
2714         - added tests for this
2715
2716     * Moose
2717       - Moose no longer creates a subtype for your class
2718         if a subtype of the same name already exists, this
2719         should DWIM in 99.9999% of all cases
2720
2721     * Moose::Util::TypeConstraints
2722       - fixed bug where incorrect subtype conflicts were
2723         being reported
2724         - added test for this
2725
2726     * Moose::Object
2727       - this class can now be extended with 'use base' if
2728         you need it, it properly loads the metaclass class now
2729         - added test for this
2730
2731 0.03_02 Wed. April 12, 2006
2732     * Moose
2733       - you must now explictly use Moose::Util::TypeConstraints
2734         it no longer gets exported for you automatically
2735
2736     * Moose::Object
2737       - new() now accepts hash-refs as well as key/value lists
2738       - added does() method to check for Roles
2739         - added tests for this
2740
2741     * Moose::Meta::Class
2742       - added roles attribute along with the add_role() and
2743         does_role() methods
2744         - added tests for this
2745
2746     * Moose::Meta::Role
2747       - now adds a does() method to consuming classes
2748         which tests the class's hierarchy for roles
2749         - added tests for this
2750
2751 0.03_01 Mon. April 10, 2006
2752     * Moose::Cookbook
2753       - added new Role recipe (no content yet, only code)
2754
2755     * Moose
2756       - added 'with' keyword for Role support
2757         - added test and docs for this
2758       - fixed subtype quoting bug
2759         - added test for this
2760
2761     * Moose::Role
2762       - Roles for Moose
2763         - added test and docs
2764
2765     * Moose::Util::TypeConstraints
2766       - added the message keyword to add custom
2767         error messages to type constraints
2768
2769     * Moose::Meta::Role
2770       - the meta role to support Moose::Role
2771         - added tests and docs
2772
2773     * Moose::Meta::Class
2774       - moved a number of things from Moose.pm
2775         to here, they should have been here
2776         in the first place
2777
2778     * Moose::Meta::Attribute
2779       - moved the attribute option macros here
2780         instead of putting them in Moose.pm
2781
2782     * Moose::Meta::TypeConstraint
2783       - added the message attributes and the
2784         validate method
2785         - added tests and docs for this
2786
2787 0.03 Thurs. March 30, 2006
2788     * Moose::Cookbook
2789       - added the Moose::Cookbook with 5 recipes,
2790         describing all the stuff Moose can do.
2791
2792     * Moose
2793       - fixed an issue with &extends super class loading
2794         it now captures errors and deals with inline
2795         packages correctly (bug found by mst, solution
2796         stolen from alias)
2797       - added super/override & inner/augment features
2798         - added tests and docs for these
2799
2800     * Moose::Object
2801       - BUILDALL now takes a reference of the %params
2802         that are passed to &new, and passes that to
2803         each BUILD as well.
2804
2805     * Moose::Util::TypeConstraints
2806       - Type constraints now survive runtime reloading
2807         - added test for this
2808
2809         * Moose::Meta::Class
2810           - fixed the way attribute defaults are handled
2811             during instance construction (bug found by chansen)
2812
2813     * Moose::Meta::Attribute
2814       - read-only attributes now actually enforce their
2815         read-only-ness (this corrected in Class::MOP as
2816         well)
2817
2818 0.02 Tues. March 21, 2006
2819     * Moose
2820       - many more tests, fixing some bugs and
2821         edge cases
2822       - &extends now loads the base module with
2823         UNIVERSAL::require
2824         - added UNIVERSAL::require to the
2825           dependencies list
2826       ** API CHANGES **
2827       - each new Moose class will also create
2828         and register a subtype of Object which
2829         correspond to the new Moose class.
2830       - the 'isa' option in &has now only
2831         accepts strings, and will DWIM in
2832         almost all cases
2833
2834     * Moose::Util::TypeConstraints
2835       - added type coercion features
2836         - added tests for this
2837         - added support for this in attributes
2838           and instance construction
2839       ** API CHANGES **
2840       - type construction no longer creates a
2841         function, it registers the type instead.
2842         - added several functions to get the
2843           registered types
2844
2845     * Moose::Object
2846       - BUILDALL and DEMOLISHALL were broken
2847         because of a mis-named hash key, Whoops :)
2848
2849     * Moose::Meta::Attribute
2850       - adding support for coercion in the
2851         autogenerated accessors
2852
2853     * Moose::Meta::Class
2854       - adding support for coercion in the
2855         instance construction
2856
2857     * Moose::Meta::TypeConstraint
2858     * Moose::Meta::TypeCoercion
2859           - type constraints and coercions are now
2860             full fledges meta-objects
2861
2862 0.01 Wed. March 15, 2006
2863     - Moooooooooooooooooose!!!