redo these tests using is_deeply
[gitmo/Moose.git] / Changes
1 Revision history for Perl extension Moose
2
3 0.56
4     * Makefile.PL and Moose.pm
5       - explicitly require Perl 5.8.0+ (Dave Rolsky)
6
7     * Moose::Util::TypeConstraints
8       - Fix warnings from find_type_constraint if the type is not 
9         found (t0m).
10       
11     * Moose::Meta::TypeConstraint
12       - predicate methods (equals/is_a_type_of/is_subtype_of) now 
13         return false if the type you specify cannot be found in the
14         type registry, rather than throwing an unhelpful and coincidental
15         exception. The behavior is now in line with to 
16         $ob->isa('DoesNotExist') (t0m).
17         - added docs & test for this (t0m)
18     
19     * Moose::Meta::TypeConstraint::Registry
20       - add_type_constraint now throws an exception if a parameter is
21         not supplied (t0m).
22         - added docs & test for this (t0m)
23         
24 0.55_01 Wed August 20, 2008
25
26     !! Calling Moose::init_meta as a function is now         !!
27     !! deprecated. Please see the Moose.pm docs for details. !!
28
29     * Moose::Meta::Method::Constructor
30       - Fix inlined constructor so that values produced by default
31         or builder methods are coerced as required. (t0m)
32         - added test for this (t0m)
33
34     * Moose::Meta::Attribute
35       - A lazy attribute with a default or builder did not attempt to
36         coerce the default value. The immutable code _did_
37         coerce. (t0m)
38         - added test for this (t0m)
39
40     * Moose::Exporter
41       - This is a new helper module for writing "Moose-alike"
42         modules. This should make the lives of MooseX module authors
43         much easier. (Dave Rolsky)
44
45     * Moose
46     * Moose::Cookbook::Meta::Recipe5
47       - Implemented metaclass traits (and wrote a recipe for it):
48
49           use Moose -traits => 'Foo'
50
51         This should make writing small Moose extensions a little
52         easier (Dave Rolsky)
53
54     * Moose::Cookbook::Basics::Recipe1
55       - Removed any examples of direct hashref access, and applied an
56         editorial axe to reduce verbosity. (Dave Rolsky)
57
58     * Moose::Cookbook::Basics::Recipe1
59       - Also applied an editorial axe here. (Dave Rolsky)
60
61     * Moose
62     * Moose::Cookbook::Extending::Recipe1
63     * Moose::Cookbook::Extending::Recipe2
64       - Rewrote extending and embedding moose documentation and
65         recipes to use Moose::Exporter (Dave Rolsky)
66
67     * Moose
68     * Moose::Role
69       - These two modules now warn when you load them from the main
70         package "main" package, because we will not export sugar to
71         main. Previously it just did nothing. (Dave Rolsky)
72
73     * Moose::Role
74       - Now provide an init_meta method just like Moose.pm, and you
75         can call this to provide an alternate role metaclass. (Dave
76         Rolsky and nothingmuch)
77       - get_method_map now respects the package cache flag (nothingmuch)
78
79     * Moose::Meta::Role
80       - Two new methods - add_method and wrap_method_body
81         (nothingmuch)
82
83     * many modules
84       - Optimizations including allowing constructors to accept hash
85         refs, making many more classes immutable, and making
86         constructors immutable. (nothingmuch)
87
88 0.55 Sun August 3, 2008
89     * Moose::Meta::Attribute
90       - breaking down the way 'handles' methods are
91         created so that the process can be more easily
92         overridden by subclasses (stevan)
93
94     * Moose::Meta::TypeConstraint
95       - fixing what is passed into a ->message with
96         the type constraints (RT #37569)
97         - added tests for this (Charles Alderman)
98
99     * Moose::Util::TypeConstraints
100       - fix coerce to accept anon types like subtype can (mst)
101
102     * Moose::Cookbook
103       - reorganized the recipes into sections - Basics, Roles, Meta,
104         Extending - and wrote abstracts for each section (Dave Rolsky)
105
106     * Moose::Cookbook::Basics::Recipe10
107       - A new recipe that demonstrates operator overloading
108         in combination with Moose. (bluefeet)
109
110     * Moose::Cookbook::Meta::Recipe1
111       - an introduction to what meta is and why you'd want to make
112         your own metaclass extensions (Dave Rolsky)
113
114     * Moose::Cookbook::Meta::Recipe4
115       - a very simple metaclass example (Dave Rolsky)
116
117     * Moose::Cookbook::Extending::Recipe1
118       - how to write a Moose-alike module to use your own object base
119         class (Dave Rolsky)
120
121     * Moose::Cookbook::Extending::Recipe2
122       - how to write modules with an API just like C<Moose.pm> (Dave
123         Rolsky)
124
125     * all documentation
126       - Tons of fixes, both syntactical and grammatical (Dave
127         Rolsky, Paul Fenwick)
128
129 0.54 Thurs. July 3, 2008
130     ... this is not my day today ...
131     
132     * Moose::Meta::Attribute
133       - fixed legal_options_for_inheritance such that 
134         clone_and_inherit options still works for 
135         Class::MOP::Attribute objects and therefore 
136         does not break MooseX::AttributeHelpers
137         (stevan)
138
139 0.53 Thurs. July 3, 2008
140     * Whoops, I guess I should run 'make manifest' before 
141       actually releasing the module. No actual changes 
142       in this release, except the fact that it includes
143       the changes that I didn't include in the last 
144       release. (stevan--)
145
146 0.52 Thurs. July 3, 2008
147     * Moose
148       - added "FEATURE REQUESTS" section to the Moose docs
149         to properly direct people (stevan) (RT #34333)
150       - making 'extends' croak if it is passed a Role since 
151         this is not ever something you want to do 
152         (fixed by stevan, found by obra)
153         - added tests for this (stevan)
154
155     * Moose::Object
156       - adding support for DOES (as in UNIVERSAL::DOES) 
157         (nothingmuch)
158         - added test for this
159
160     * Moose::Meta::Attribute
161       - added legal_options_for_inheritance (wreis)
162         - added tests for this (wreis)
163
164     * Moose::Cookbook::Snacks::*
165       - removed some of the unfinished snacks that should 
166         not have been released yet. Added some more examples
167         to the 'Keywords' snack. (stevan)
168
169     * Moose::Cookbook::Style
170       - added general Moose "style guide" of sorts to the 
171         cookbook (nothingmuch) (RT #34335)
172
173     * t/
174       - added more BUILDARGS tests (stevan)
175
176 0.51 Thurs. Jun 26, 2008
177     * Moose::Role
178       - add unimport so "no Moose::Role" actually does
179         something (sartak)
180
181     * Moose::Meta::Role::Application::ToRole
182       - when RoleA did RoleB, and RoleA aliased a method from RoleB in
183         order to provide its own implementation, that method still got
184         added to the list of required methods for consumers of
185         RoleB. Now an aliased method is only added to the list of
186         required methods if the role doing the aliasing does not
187         provide its own implementation. See Recipe 11 for an example
188         of all this. (Dave Rolsky)
189         - added tests for this
190
191     * Moose::Meta::Method::Constructor
192       - when a single argument that wasn't a hashref was provided to
193         an immutabilized constructor, the error message was very
194         unhelpful, as opposed to the non-immutable error. Reported by
195         dew. (Dave Rolsky)
196         - added test for this (Dave Rolsky)
197
198     * Moose::Meta::Attribute
199       - added support for meta_attr->does("ShortAlias") (sartak)
200         - added tests for this (sartak)
201       - moved the bulk of the `handles` handling to the new
202         install_delegation method (Stevan)
203
204     * Moose::Object
205       - Added BUILDARGS, a new step in new()
206
207     * Moose::Meta::Role::Application::RoleSummation
208       - fix typos no one ever sees (sartak)
209
210     * Moose::Util::TypeConstraints
211     * Moose::Meta::TypeConstraint
212     * Moose::Meta::TypeCoercion
213       - Attempt to work around the ??{ } vs. threads issue
214         (not yet fixed)
215       - Some null_constraint optimizations
216
217 0.50 Thurs. Jun 11, 2008
218     - Fixed a version number issue by bumping all modules
219       to 0.50.
220
221 0.49 Thurs. Jun 11, 2008
222     !! This version now approx. 20-25% !!
223     !! faster with new Class::MOP 0.59 !!
224
225     * Moose::Meta::Attribute
226       - fixed how the is => (ro|rw) works with 
227         custom defined reader, writer and accessor
228         options. 
229         - added docs for this (TODO).
230         - added tests for this (Thanks to Penfold)
231       - added the custom attribute alias for regular
232         Moose attributes which is "Moose"
233       - fix builder and default both being used
234         (groditi)
235
236     * Moose
237       Moose::Meta::Class
238       Moose::Meta::Attribute
239       Moose::Meta::Role
240       Moose::Meta::Role::Composite
241       Moose::Util::TypeConstraints
242       - switched usage of reftype to ref because 
243         it is much faster
244         
245     * Moose::Meta::Role
246       - changing add_package_symbol to use the new
247         HASH ref form
248     
249     * Moose::Object
250       - fixed how DEMOLISHALL is called so that it 
251         can be overrided in subclasses (thanks to Sartak)
252         - added test for this (thanks to Sartak)
253
254     * Moose::Util::TypeConstraints
255       - move the ClassName type check code to
256         Class::MOP::is_class_loaded (thanks to Sartak)
257
258     * Moose::Cookbook::Recipe11
259       - add tests for this (thanks to tokuhirom)
260
261 0.48 Thurs. May 29, 2008
262     (early morning release engineering)--
263
264     - fixing the version in Moose::Meta::Method::Destructor
265       which was causing the indexer to choke
266
267 0.47 Thurs. May 29, 2008
268     (late night release engineering)--
269
270     - fixing the version is META.yml, no functional 
271       changes in this release
272
273 0.46 Wed. May 28, 2008
274     !! This version now approx. 20-25% !!
275     !! faster with new Class::MOP 0.57 !!
276
277     * Moose::Meta::Class
278       - some optimizations of the &initialize method
279         since it is called so often by &meta    
280         
281     * Moose::Meta::Class
282       Moose::Meta::Role
283       - now use the get_all_package_symbols from the 
284         updated Class::MOP, test suite is now 10 seconds 
285         faster
286     
287     * Moose::Meta::Method::Destructor
288       - is_needed can now also be called as a class 
289         method for immutablization to check if the 
290         destructor object even needs to be created 
291         at all
292     
293     * Moose::Meta::Method::Destructor
294       Moose::Meta::Method::Constructor
295       - added more descriptive error message to help 
296         keep people from wasting time tracking an error
297         that is easily fixed by upgrading.
298
299 0.45 Saturday, May 24, 2008
300     * Moose
301       - Because of work in Class::MOP 0.56, all 
302         XS based functionality is now optional
303         and a Pure Perl version is supplied
304         - the CLASS_MOP_NO_XS environment variable
305           can now be used to force non-XS versions 
306           to always be used   
307         - several of the packages have been tweaked
308           to take care of this, mostly we added
309           support for the package_name and name 
310           variables in all the Method metaclasses
311       - before/around/after method modifiers now 
312         support regexp matching of names
313         (thanks to Takatoshi Kitano)
314         - tests added for this
315         - NOTE: this only works for classes, it 
316           is currently not supported in roles, 
317           but, ... patches welcome
318       - All usage of Carp::confess have been replaced
319         by Carp::croak in the "keyword" functions since
320         the stack trace is usually not helpful
321       
322     * Moose::Role
323       - All usage of Carp::confess have been replaced
324         by Carp::croak in the "keyword" functions since
325         the stack trace is usually not helpful  
326       - The 'has' keyword for roles now accepts the 
327         same array ref form that Moose.pm does 
328         (has [qw/foo bar/] => (is => 'rw', ...))
329         - added test for this
330       
331     * Moose::Meta::Attribute
332       - trigger on a ro-attribute is no longer an
333         error, as it's useful to trigger off of the
334         constructor
335
336     * Moose::Meta::Class
337       - added same 'add_package_symbol' fix as in 
338         Class::MOP 0.56
339
340     * Moose::Util
341       - does_role now handles non-Moose classes 
342         more gracefully
343         - added tests for this
344       - added the 'add_method_modifier' function 
345         (thanks to Takatoshi Kitano)
346
347     * Moose::Util::TypeConstraints
348       - subtypes of parameterizable types now are 
349         themselves parameterizable types
350
351     * Moose::Meta::Method::Constructor
352       - fixed bug where trigger was not being 
353         called by the inlined immutable 
354         constructors 
355         - added test for this (thanks to Caelum)
356     
357     * Moose::Meta::Role::Application::ToInstance
358       - now uses the metaclass of the instance
359         (if possible) to create the anon-class
360         (thanks Jonathan Rockway)
361     
362     * Moose::Cookbook::Recipe22
363       - added the meta-attribute trait recipe
364         (thanks to Sartak)
365     
366     * t/
367       - fixed hash-ordering test bug that was 
368         causing occasional cpantester failures
369       - renamed the t/000_recipe/*.t tests to be 
370         more descriptive (thanks to Sartak) 
371
372 0.44 Sat. May 10, 2008
373     * Moose
374       - made make_immutable warning cluck to 
375         show where the error is (thanks mst)
376     
377     * Moose::Object
378       - BUILDALL and DEMOLISHALL now call 
379         ->body when looping through the 
380         methods, to avoid the overloaded
381         method call.
382       - fixed issue where DEMOLISHALL was
383         eating the $@ values, and so not 
384         working correctly, it still kind of
385         eats them, but so does vanilla perl 
386         - added tests for this
387       
388     * Moose::Cookbook::Recipe7
389       - added new recipe for immutable 
390         functionality (thanks Dave Rolsky)
391       
392     * Moose::Cookbook::Recipe9
393       - added new recipe for builder and 
394         lazy_build (thanks Dave Rolsky)
395       
396     * Moose::Cookbook::Recipe11
397       - added new recipe for method aliasing 
398         and exclusion with Roles (thanks Dave Rolsky)
399
400     * t/
401       - fixed Win32 test failure (thanks spicyjack)
402
403     ~ removed Build.PL and Module::Build compat 
404       since Module::Install has done that.
405
406 0.43 Wed. April, 30, 2008
407     * NOTE TO SELF:
408         drink more coffee before 
409         doing release engineering
410       
411     - whoops, forgot to do the smolder tests, 
412       and we broke some of the custom meta-attr
413       modules. This fixes that.
414
415 0.42 Mon. April 28, 2008
416     - some bad tests slipped by, nothing else 
417       changed in this release (cpantesters++)
418       
419     - upped the Class::MOP dependency to 0.55 
420       since we have tests which need the C3 
421       support
422
423 0.41 Mon. April 28, 2008
424     ~~ numerous documentation updates ~~
425     
426     - Changed all usage of die to Carp::croak for better
427       error reporting (initial patch by Tod Hagan)
428
429     ** IMPORTANT NOTE **
430     - the make_immutable keyword is now deprecated, don't
431       use it in any new code and please fix your old code
432       as well. There will be 2 releases, and then it will
433       be removed.
434
435     * Moose
436       Moose::Role
437       Moose::Meta::Class
438       - refactored the way inner and super work to avoid
439         any method/@ISA cache penalty (nothingmuch)
440
441     * Moose::Meta::Class
442       - fixing &new_object to make sure trigger gets the 
443         coerced value (spotted by Charles Alderman on the 
444         mailing list)
445         - added test for this
446
447     * Moose::Meta::Method::Constructor
448       - immutable classes which had non-lazy attributes were calling
449         the default generating sub twice in the constructor. (bug
450         found by Jesse Luehrs, fixed by Dave Rolsky)
451         - added tests for this (Dave Rolsky)
452       - fix typo in initialize_body method (nothingmuch)
453       
454     * Moose::Meta::Method::Destructor
455       - fix typo in initialize_body method (nothingmuch)
456
457     * Moose::Meta::Method::Overriden
458       Moose::Meta::Method::Augmented
459       - moved the logic for these into their own 
460         classes (nothingmuch)
461
462     * Moose::Meta::Attribute
463       - inherited attributes may now be extended without 
464         restriction on the type ('isa', 'does') (Sartak)
465         - added tests for this (Sartak)
466       - when an attribute property is malformed (such as lazy without 
467         a default), give the name of the attribute in the error 
468         message (Sartak)
469       - added the &applied_traits and &has_applied_traits methods 
470         to allow introspection of traits
471         - added tests for this
472       - moved 'trait' and 'metaclass' argument handling to here from
473         Moose::Meta::Class
474       - clone_and_inherit_options now handles 'trait' and 'metaclass' (has
475         '+foo' syntax) (nothingmuch)
476         - added tests for this (t0m)
477      
478     * Moose::Object 
479       - localize $@ inside DEMOLISHALL to avoid it 
480         eating $@ (found by Ernesto)
481         - added test for this (thanks to Ernesto)
482
483     * Moose::Util::TypeConstraints
484       - &find_type_constraint now DWIMs when given an 
485         type constraint object or name (nothingmuch)
486       - &find_or_create_type_constraint superseded with a number of more
487         specific functions:
488         - find_or_create_{isa,does}_type_constraint
489         - find_or_parse_type_constraint
490
491     * Moose::Meta::TypeConstraint
492       Moose::Meta::TypeConstraint::Class
493       Moose::Meta::TypeConstraint::Role
494       Moose::Meta::TypeConstraint::Enum
495       Moose::Meta::TypeConstraint::Union
496       Moose::Meta::TypeConstraint::Parameterized
497         - added the &equals method for comparing two type 
498           constraints (nothingmuch)
499           - added tests for this (nothingmuch)
500
501     * Moose::Meta::TypeConstraint
502       - add the &parents method, which is just an alias to &parent. 
503         Useful for polymorphism with TC::{Class,Role,Union} (nothingmuch)
504
505     * Moose::Meta::TypeConstraint::Class
506       - added the class attribute for introspection purposes
507         (nothingmuch)
508         - added tests for this
509         
510     * Moose::Meta::TypeConstraint::Enum
511       Moose::Meta::TypeConstraint::Role
512       - broke these out into their own classes (nothingmuch)
513
514     * Moose::Cookbook::Recipe*
515       - fixed references to test file locations in the POD
516         and updated up some text for new Moose features
517         (Sartak)
518
519     * Moose::Util
520       - Added &resolve_metaclass_alias, a helper function for finding an actual
521         class for a short name (e.g. in the traits list)
522
523 0.40 Fri. March 14, 2008
524     - I hate Pod::Coverage
525
526 0.39 Fri. March 14, 2008
527     * Moose
528       - documenting the use of '+name' with attributes 
529         that come from recently composed roles. It makes
530         sense, people are using it, and so why not just 
531         officially support it.
532       - fixing the 'extends' keyword so that it will not 
533         trigger Ovid's bug (http://use.perl.org/~Ovid/journal/35763)
534       
535     * oose
536       - added the perl -Moose=+Class::Name feature to allow 
537         monkeypatching of classes in one liners
538       
539     * Moose::Util
540       - fixing the 'apply_all_roles' keyword so that it will not 
541         trigger Ovid's bug (http://use.perl.org/~Ovid/journal/35763)    
542     
543     * Moose::Meta::Class
544       - added ->create method which now supports roles (thanks to jrockway)
545         - added tests for this
546       - added ->create_anon_class which now supports roles and caching of 
547         the results (thanks to jrockway)
548         - added tests for this
549       - made ->does_role a little more forgiving when it is
550         checking a Class::MOP era metaclasses.
551     
552     * Moose::Meta::Role::Application::ToInstance
553       - it is now possible to pass extra params to be used when 
554         a role is applied to an the instance (rebless_params)
555         - added tests for this
556     
557     * Moose::Util::TypeConstraints
558       - class_type now accepts an optional second argument for a
559         custom message. POD anotated accordingly (groditi)
560         - added tests for this 
561       - it is now possible to make anon-enums by passing 'enum' an 
562         ARRAY ref instead of the $name => @values. Everything else 
563         works as before.
564         - added tests for this
565     
566     * t/
567       - making test for using '+name' on attributes consumed 
568         from a role, it works and makes sense too.    
569
570     * Moose::Meta::Attribute 
571       - fix handles so that it doesn't return nothing 
572         when the method cannot be found, not sure why 
573         it ever did this originally, this means we now
574         have slightly better support for AUTOLOADed 
575         objects
576         - added more delegation tests
577       - adding ->does method to this so as to better 
578         support traits and their introspection.
579         - added tests for this
580     
581     * Moose::Object
582       - localizing the Data::Dumper configurations so 
583         that it does not pollute others (RT #33509)
584       - made ->does a little more forgiving when it is
585         passed Class::MOP era metaclasses.
586
587 0.38 Fri. Feb. 15, 2008
588     * Moose::Meta::Attribute 
589       - fixed initializer to correctly do 
590         type checking and coercion in the 
591         callback 
592         - added tests for this
593
594     * t/
595       - fixed some finicky tests (thanks to konobi)
596
597 0.37 Thurs. Feb. 14, 2008
598     * Moose
599       - fixed some details in Moose::init_meta 
600         and its superclass handling (thanks thepler)
601         - added tests for this (thanks thepler)
602       - 'has' now dies if you don't pass in name 
603         value pairs
604       - added the 'make_immutable' keyword as a shortcut
605         to make_immutable
606
607     * Moose::Meta::Class
608       Moose::Meta::Method::Constructor
609       Moose::Meta::Attribute        
610       - making (init_arg => undef) work here too
611         (thanks to nothingmuch)
612         
613     * Moose::Meta::Attribute        
614       Moose::Meta::Method::Constructor
615       Moose::Meta::Method::Accessor                
616       - make lazy attributes respect attr initializers (rjbs)
617         - added tests for this
618     
619     * Moose::Util::TypeConstraints
620       Moose::Util::TypeConstraints::OptimizedConstraints
621       Moose::Meta::TypeConstraints
622       Moose::Meta::Attribute
623       Moose::Meta::Method::Constructor
624       Moose::Meta::Method::Accessor            
625       - making type errors use the 
626         assigned message (thanks to Sartak)
627         - added tests for this
628
629     * Moose::Meta::Method::Destructor
630       - making sure DESTROY gets inlined properly 
631         with successive DEMOLISH calls (thanks to manito)
632
633     * Moose::Meta::Attribute  
634       Moose::Meta::Method::Accessor 
635       - fixed handling of undef with type constraints 
636         (thanks to Ernesto)               
637         - added tests for this
638     
639     * Moose::Util
640       - added &get_all_init_args and &get_all_attribute_values 
641         (thanks to Sartak and nothingmuch)
642
643 0.36 Sat. Jan. 26, 2008
644     * Moose::Role
645       Moose::Meta::Attribute
646       - role type tests now support when roles are 
647         applied to non-Moose classes (found by ash)
648         - added tests for this (thanks to ash)
649       - couple extra tests to boost code coverage
650
651     * Moose::Meta::Method::Constructor    
652       - improved fix for handling Class::MOP attributes
653         - added test for this        
654       
655     * Moose::Meta::Class
656       - handled the add_attribute($attribute_meta_object)
657         case correctly
658         - added test for this
659
660 0.35 Tues. Jan. 22, 2008
661     * Moose::Meta::Method::Constructor
662       - fix to make sure even Class::MOP attributes 
663         are handled correctly (Thanks to Dave Rolsky)
664         - added test for this (also Dave Rolsky)
665     
666     * Moose::Meta::Class
667       - improved error message on _apply_all_roles, 
668         you should now use Moose::Util::apply_all_roles
669         and you shouldnt have been using a _ prefixed
670         method in the first place ;)
671
672 0.34 Mon. Jan. 21, 2008
673     ~~~ more misc. doc. fixes ~~~
674     ~~ updated copyright dates ~~
675
676     Moose is now a postmodern object system :)
677       - (see the POD for details)
678       
679     * <<Role System Refactoring>>    
680     - this release contains a major reworking and 
681       cleanup of the role system     
682       - 100% backwards compat.
683       - Role application now restructured into seperate
684         classes based on type of applicants
685       - Role summation (combining of more than one role)
686         is much cleaner and anon-classes are no longer 
687         used in this process
688       - new Composite role metaclass    
689       - runtime application of roles to instances
690         is now more efficient and re-uses generated
691         classes when applicable
692         
693     * <<New Role composition features>>
694       - methods can now be excluded from a given role 
695         during composition
696       - methods can now be aliased to another name (and 
697         still retain the original as well)        
698     
699     * Moose::Util::TypeConstraints::OptimizedConstraints
700       - added this module (see above)
701
702     * Moose::Meta::Class
703       - fixed the &_process_attribute method to be called
704         by &add_attribute, so that the API is now correct
705
706     * Moose::Meta::Method::Accessor
707       - fixed bug when passing a list of values to
708         an accessor would get (incorrectly) ignored.
709         Thanks to Sartak for finding this ;)
710         - added tests for this (Sartak again)
711
712     * Moose::Meta::Method::Accessor
713       Moose::Meta::Method::Constructor
714       Moose::Meta::Attribute
715       Moose::Meta::TypeConstraint      
716       Moose::Meta::TypeCoercion      
717       - lots of cleanup of such things as: 
718         - generated methods
719         - type constraint handling
720         - error handling/messages 
721         (thanks to nothingmuch)   
722     
723     * Moose::Meta::TypeConstraint::Parameterizable
724       - added this module to support the refactor 
725         in Moose::Meta::TypeConstraint::Parameterized
726
727     * Moose::Meta::TypeConstraint::Parameterized
728       - refactored how these types are handled so they 
729         are more generic and not confined to ArrayRef
730         and HashRef only
731
732     * t/
733       - shortened some file names for better VMS support (RT #32381)
734
735 0.33 Fri. Dec. 14, 2007
736     !! Moose now loads 2 x faster !!
737     !!  with new Class::MOP 0.49  !!
738
739     ++ new oose.pm module to make command line
740        Moose-ness easier (see POD docs for more)
741
742     * Moose::Meta::Class
743     * Moose::Meta::Role
744       - several tweaks to take advantage of the
745         new method map caching in Class::MOP
746
747     * Moose::Meta::TypeConstraint::Parameterized
748       - allow subtypes of ArrayRef and HashRef to
749         be used as a container (sartak)
750         - added tests for this
751       - basic support for coercion to ArrayRef and
752         HashRef for containers (sartak)
753         - added tests for this
754
755     * Moose::Meta::TypeCoercion
756       - coercions will now create subtypes as needed
757         so you can now add coercions to parameterized
758         types without having to explictly define them
759         - added tests for this
760
761     * Moose::Meta::Method::Accessor
762       - allow subclasses to decide whether we need
763         to copy the value into a new variable (sartak)
764
765 0.32 Tues. Dec. 4, 2007
766     * Moose::Util::TypeConstraints
767       - fixing how subtype aliases of unions work
768         they should inherit the parent's coercion
769         - added tests for this
770       - you can now define multiple coercions on
771         a single type at different times instead of
772         having to do it all in one place
773         - added tests for this
774
775     * Moose::Meta::TypeConstraint
776       - there is now a default constraint of sub { 1 }
777         instead of Moose::Util::TypeConstraints setting
778         this for us
779
780     * Moose::Meta::TypeCoercion
781     * Moose::Meta::TypeCoercion::Union
782       - added the &has_coercion_for_type and
783         &add_type_coercions methods to support the
784         new features above (although you cannot add
785         more type coercions for Union types)
786
787 0.31 Mon. Nov. 26, 2007
788     * Moose::Meta::Attribute
789       - made the +attr syntax handle extending types with
790         parameters. So "has '+foo' => (isa => 'ArrayRef[Int]')"
791         now works if the original foo is an ArrayRef.
792         - added tests for this.
793       - delegation now works even if the attribute does not
794         have a reader method using the get_read_method_ref
795         method from Class::MOP::Attribute.
796         - added tests for this
797         - added docs for this
798
799     * Moose::Util::TypeConstraints
800       - passing no "additional attribute info" to
801         &find_or_create_type_constraint will no longer
802         attempt to create an __ANON__ type for you,
803         instead it will just return undef.
804         - added docs for this
805
806 0.30 Fri. Nov. 23, 2007
807     * Moose::Meta::Method::Constructor
808       -builder related bug in inlined constructor. (groditi)
809
810     * Moose::Meta::Method::Accessor
811       - genereate unnecessary calls to predicates and refactor
812         code generation for runtime speed (groditi)
813
814     * Moose::Util::TypeConstraints
815       - fix ClassName constraint to introspect symbol table (mst)
816         - added more tests for this (mst)
817       - fixed it so that subtype 'Foo' => as 'HashRef[Int]' ...
818         with work correctly.
819         - added tests for this
820
821     * Moose::Cookbook
822       - adding the link to Recipie 11 (written by Sartak)
823         - adding test for SYNOPSIS code
824
825     * t/
826       - New tests for builder bug. Upon instantiation, if an
827         attribute had a builder, no value and was not lazy the
828         builder default was not getting run, oops. (groditi)
829
830 0.29 Tues. Nov. 13, 2007
831     * Moose::Meta::Attribute
832       - Fix error message on missing builder method (groditi)
833
834     * Moose::Meta::Method::Accessor
835       - Fix error message on missing builder method (groditi)
836
837     * t/
838       - Add test to check for the correct error message when
839         builder method is missing (groditi)
840
841 0.28 Tues. Nov. 13, 2007
842     - 0.27 packaged incorrectly (groditi)
843
844 0.27 Tues. Nov. 13, 2007
845     * Moose::Meta::Attribute
846       - Added support for the new builder option (groditi)
847       - Added support for lazy_build option (groditi)
848       - Changed slot initialization for predicate changes (groditi)
849
850     * Moose::Meta::Method::Accessor
851       - Added support for lazy_build option (groditi)
852       - Fix inline methods to work with corrected predicate
853         behavior (groditi)
854
855     * Moose::Meta::Method::Constructor
856       - Added support for lazy_build option (groditi)
857
858     * t/
859       - tests for builder and lazy_build (groditi)
860
861     * fixing some misc. bits in the docs that
862       got mentioned on CPAN Forum & perlmonks
863
864     * Moose::Meta::Role
865       - fixed how required methods are handled
866         when they encounter overriden or modified
867         methods from a class (thanks to confound).
868         - added tests for this
869
870     * Moose::Util::TypeConstraint
871       - fixed the type notation parser so that
872         the | always creates a union and so is
873         no longer a valid type char (thanks to
874         konobi, mugwump and #moose for working
875         this one out.)
876         - added more tests for this
877
878 0.26 Thurs. Sept. 27, 2007
879     == New Features ==
880
881     * Parameterized Types
882       We now support parameterized collection types, such as:
883           ArrayRef[Int]    # array or integers
884           HashRef[Object]  # a hash with object values
885       They can also be nested:
886           ArrayRef[HashRef[RegExpr]] # an array of hashes with regexpr values
887       And work with the type unions as well:
888           ArrayRef[Int | Str]  # array of integers of strings
889
890     * Better Framework Extendability
891       Moose.pm is now "extendable" such that it is now much
892       easier to extend the framework and add your own keywords
893       and customizations. See the "EXTENDING AND EMBEDDING MOOSE"
894       section of the Moose.pm docs.
895
896     * Moose Snacks!
897       In an effort to begin documenting some of the various
898       details of Moose as well as some common idioms, we have
899       created Moose::Cookbook::Snacks as a place to find
900       small (easily digestable) nuggets of Moose code.
901
902     ====
903     ~ Several doc updates/cleanup thanks to castaway ~
904
905     - converted build system to use Module::Install instead of
906       Module::Build (thanks to jrockway)
907
908     * Moose
909       - added all the meta classes to the immutable list and
910         set it to inline the accessors
911       - fix import to allow Sub::Exporter like { into => }
912             and { into_level => } (perigrin)
913       - exposed and documented init_meta() to allow better
914             embedding and extending of Moose (perigrin)
915
916         * t/
917           - complete re-organization of the test suite
918           - added some new tests as well
919           - finally re-enabled the Moose::POOP test since
920             the new version of DBM::Deep now works again
921             (thanks rob)
922
923     * Moose::Meta::Class
924       - fixed very odd and very nasty recursion bug with
925         inner/augment (mst)
926         - added tests for this (eilara)
927
928     * Moose::Meta::Attribute
929       Moose::Meta::Method::Constructor
930       Moose::Meta::Method::Accessor
931       - fixed issue with overload::Overloaded getting called
932         on non-blessed items. (RT #29269)
933         - added tests for this
934
935     * Moose::Meta::Method::Accessor
936       - fixed issue with generated accessor code making
937         assumptions about hash based classes (thanks to dexter)
938
939     * Moose::Coookbook::Snacks
940       - these are bits of documentation, not quite as big as
941         Recipes but which have no clear place in the module docs.
942         So they are Snacks! (horray for castaway++)
943
944     * Moose::Cookbook::Recipe4
945       - updated it to use the new ArrayRef[MyType] construct
946         - updated the accompanying test as well
947
948     +++ Major Refactor of the Type Constraint system +++
949     +++       with new features added as well        +++
950
951     * Moose::Util::TypeConstraint
952       - no longer uses package variable to keep track of
953         the type constraints, now uses the an instance of
954         Moose::Meta::TypeConstraint::Registry to do it
955       - added more sophisticated type notation parsing
956         (thanks to mugwump)
957         - added tests for this
958
959     * Moose::Meta::TypeConstraint
960       - some minor adjustments to make subclassing easier
961       - added the package_defined_in attribute so that we
962         can track where the type constraints are created
963
964     * Moose::Meta::TypeConstraint::Union
965       - this is now been refactored to be a subclass of
966         Moose::Meta::TypeConstraint
967
968     * Moose::Meta::TypeCoercion::Union
969       - this has been added to service the newly refactored
970         Moose::Meta::TypeConstraint::Union and is itself
971         a subclass of Moose::Meta::TypeCoercion
972
973     * Moose::Meta::TypeConstraint::Parameterized
974       - added this module (taken from MooseX::AttributeHelpers)
975         to help construct nested collection types
976         - added tests for this
977
978     * Moose::Meta::TypeConstraint::Registry
979       - added this class to keep track of type constraints
980
981 0.25 Mon. Aug. 13, 2007
982     * Moose
983       - Documentation update to reference Moose::Util::TypeConstraints
984         under 'isa' in 'has' for how to define a new type
985         (thanks to shlomif).
986
987     * Moose::Meta::Attribute
988       - required attributes now will no longer accept undef
989         from the constructor, even if there is a default and lazy
990         - added tests for this
991       - default subroutines must return a value which passes the
992         type constraint
993         - added tests for this
994
995     * Moose::Meta::Attribute
996     * Moose::Meta::Method::Constructor
997     * Moose::Meta::Method::Accessor
998       - type-constraint tests now handle overloaded objects correctly
999         in the error message
1000         - added tests for this (thanks to EvanCarroll)
1001
1002     * Moose::Meta::TypeConstraint::Union
1003       - added (has_)hand_optimized_constraint to this class so that
1004         it behaves as the regular Moose::Meta::TypeConstraint does.
1005
1006     * Moose::Meta::Role
1007       - large refactoring of this code
1008       - added several more tests
1009         - tests for subtle conflict resolition issues
1010           added, but not currently running
1011           (thanks to kolibre)
1012
1013     * Moose::Cookbook::Recipe7
1014       - added new recipe for augment/inner functionality
1015         (still in progress)
1016         - added test for this
1017
1018     * Moose::Spec::Role
1019       - a formal definition of roles (still in progress)
1020
1021     * Moose::Util
1022       - utilities for easier working with Moose classes
1023         - added tests for these
1024
1025     * Test::Moose
1026       - This contains Moose specific test functions
1027         - added tests for these
1028
1029 0.24 Tues. July 3, 2007
1030     ~ Some doc updates/cleanup ~
1031
1032     * Moose::Meta::Attribute
1033       - added support for roles to be given as parameters
1034         to the 'handles' option.
1035         - added tests and docs for this
1036       - the has '+foo' attribute form now accepts changes to
1037         the lazy option, and the addition of a handles option
1038         (but not changing the handles option)
1039         - added tests and docs for this
1040
1041     * Moose::Meta::Role
1042       - required methods are now fetched using find_method_by_name
1043         so that required methods can come from superclasses
1044         - adjusted tests for this
1045
1046 0.23 Mon. June 18, 2007
1047     * Moose::Meta::Method::Constructor
1048       - fix inlined constructor for hierarchy with multiple BUILD methods (mst)
1049     * Moose::Meta::Class
1050       - Modify make_immutable to work with the new Class::MOP immutable
1051         mechanism + POD + very basic test (groditi)
1052     * Moose::Meta::Attribute
1053       - Fix handles to use goto() so that caller() comes out properly on
1054         the other side (perigrin)
1055
1056 0.22 Thurs. May 31, 2007
1057     * Moose::Util::TypeConstraints
1058       - fix for prototype undeclared issue when Moose::Util::TypeConstraints
1059         loaded before consumers (e.g. Moose::Meta::Attribute) by predeclaring
1060         prototypes for functions
1061       - added the ClassName type constraint, this checks for strings
1062         which will respond true to ->isa(UNIVERSAL).
1063         - added tests and docs for this
1064       - subtyping just in name now works correctly by making the
1065         default for where be { 1 }
1066         - added test for this
1067
1068     * Moose::Meta::Method::Accessor
1069       - coerce and lazy now work together correctly, thanks to
1070         merlyn for finding this bug
1071         - tests added for this
1072       - fix reader presedence bug in Moose::Meta::Attribute + tests
1073
1074     * Moose::Object
1075       - Foo->new(undef) now gets ignored, it is assumed you meant to pass
1076         a HASH-ref and missed. This produces better error messages then
1077         having it die cause undef is not a HASH.
1078         - added tests for this
1079
1080 0.21 Thursday, May 2nd, 2007
1081     * Moose
1082       - added SUPER_SLOT and INNER_SLOT class hashes to support unimport
1083       - modified unimport to remove super and inner along with the rest
1084         - altered unimport tests to handle this
1085
1086     * Moose::Role
1087       - altered super export to populate SUPER_SLOT
1088
1089     * Moose::Meta::Class
1090       - altered augment and override modifier application to use *_SLOT
1091         - modified tests for these to unimport one test class each to test
1092
1093     * Moose::Meta::Role
1094       - fixed issue where custom attribute metaclasses
1095         where not handled correctly in roles
1096         - added tests for this
1097
1098     * Moose::Meta::Class
1099       - fixed issue where extending metaclasses with
1100         roles would blow up. Thanks to Aankhen`` for
1101         finding this insidious error, and it's solution.
1102
1103     ~~ lots of spelling and grammer fixes in the docs,
1104        many many thanks to rlb3 and Aankhen for these :)
1105
1106 0.20 Friday, April 6th, 2007
1107     >> I messed up the SKIP logic in one test
1108        so this release is just to fix that.
1109
1110     * Moose
1111       - 'has' now also accepts an ARRAY ref
1112         to create multiple attrs (see docs)
1113         (thanks to konobi for this)
1114          - added tests and docs
1115
1116 0.19 Thurs. April 5th, 2007
1117     ~~ More documentation updates ~~
1118
1119     * Moose::Util::TypeConstraints
1120       - 'type' now supports messages as well
1121         thanks to phaylon for finding this
1122         - added tests for this
1123       - added &list_all_type_constraints and
1124         &list_all_builtin_type_constraints
1125         functions to facilitate introspection.
1126
1127     * Moose::Meta::Attribute
1128       - fixed regexp 'handles' declarations
1129         to build the list of delegated methods
1130         correctly (and not override important
1131         things like &new) thanks to ashleyb
1132         for finding this
1133         - added tests and docs for this
1134       - added the 'documentation' attributes
1135         so that you can actually document your
1136         attributes and inspect them through the
1137         meta-object.
1138         - added tests and docs for this
1139
1140     * Moose::Meta::Class
1141       - when loading custom attribute metaclasses
1142         it will first look in for the class in the
1143         Moose::Meta::Attribute::Custom::$name, and
1144         then default to just loading $name.
1145         - added tests and docs for this
1146
1147     * Moose::Meta::TypeConstraint
1148       - type constraints now stringify to their names.
1149         - added test for this
1150
1151     * misc.
1152       - added tests to assure we work with Module::Refresh
1153       - added stricter test skip logic in the Moose POOP
1154         test, ask Rob Kinyon why.
1155         - *cough* DBM::Deep 1.0 backwards compatability sucks *cough* ;)
1156
1157 0.18 Sat. March 10, 2007
1158     ~~ Many, many documentation updates ~~
1159
1160     * misc.
1161       - We now use Class::MOP::load_class to
1162         load all classes.
1163       - added tests to show types and subtypes
1164         working with Declare::Constraints::Simple
1165         and Test::Deep as constraint engines.
1166
1167 0.18_001
1168     !! You must have Class::MOP 0.37_001  !!
1169     !! for this developer release to work !!
1170
1171     This release was primarily adding the immutable
1172     feature to Moose. An immutable class is one which
1173     you promise not to alter. When you set the class
1174     as immutable it will perform various bits of
1175     memoization and inline certain part of the code
1176     (constructors, destructors and accessors). This
1177     minimizes (and in some cases totally eliminates)
1178     one of Moose's biggest performance hits. This
1179     feature is not on by default, and is 100% optional.
1180     It has several configurable bits as well, so you
1181     can pick and choose to your specific needs.
1182
1183     The changes involved in this were fairly wide and
1184     highly specific, but 100% backwards compatible, so
1185     I am not going to enumerate them here. If you are
1186     truely interested in what was changed, please do
1187     a diff :)
1188
1189 0.17 Tues. Nov. 14, 2006
1190     * Moose::Meta::Method::Accessor
1191       - bugfix for read-only accessors which
1192         are have a type constraint and lazy.
1193         Thanks to chansen for finding it.
1194
1195 0.16 Tues. Nov. 14, 2006
1196     ++ NOTE ++
1197     There are some speed improvements in this release,
1198     but they are only the begining, so stay tuned.
1199
1200     * Moose::Object
1201       - BUILDALL and DEMOLISHALL no longer get
1202         called unless they actually need to be.
1203         This gave us a signifigant speed boost
1204         for the cases when there is no BUILD or
1205         DEMOLISH method present.
1206
1207     * Moose::Util::TypeConstraints
1208     * Moose::Meta::TypeConstraint
1209       - added an 'optimize_as' option to the
1210         type constraint, which allows for a
1211         hand optimized version of the type
1212         constraint to be used when possible.
1213       - Any internally created type constraints
1214         now provide an optimized version as well.
1215
1216 0.15 Sun. Nov. 5, 2006
1217     ++ NOTE ++
1218     This version of Moose *must* have Class::MOP 0.36 in order
1219     to work correctly. A number of small internal tweaks have
1220     been made in order to be compatible with that release.
1221
1222     * Moose::Util::TypeConstraints
1223       - added &unimport so that you can clean out
1224         your class namespace of these exported
1225         keywords
1226
1227     * Moose::Meta::Class
1228       - fixed minor issue which occasionally
1229         comes up during global destruction
1230         (thanks omega)
1231       - moved Moose::Meta::Method::Overriden into
1232         its own file.
1233
1234     * Moose::Meta::Role
1235       - moved Moose::Meta::Role::Method into
1236         its own file.
1237
1238     * Moose::Meta::Attribute
1239       - changed how we do type checks so that
1240         we reduce the overall cost, but still
1241         retain correctness.
1242        *** API CHANGE ***
1243       - moved accessor generation methods to
1244         Moose::Meta::Method::Accessor to
1245         conform to the API changes from
1246         Class::MOP 0.36
1247
1248     * Moose::Meta::TypeConstraint
1249       - changed how constraints are compiled
1250         so that we do less recursion and more
1251         iteration. This makes the type check
1252         faster :)
1253       - moved Moose::Meta::TypeConstraint::Union
1254         into its own file
1255
1256     * Moose::Meta::Method::Accessor
1257       - created this from methods formerly found in
1258         Moose::Meta::Attribute
1259
1260     * Moose::Meta::Role::Method
1261       - moved this from Moose::Meta::Role
1262
1263     * Moose::Meta::Method::Overriden
1264       - moved this from Moose::Meta::Class
1265
1266     * Moose::Meta::TypeConstraint::Union
1267       - moved this from Moose::Meta::TypeConstraint
1268
1269 0.14 Mon. Oct. 9, 2006
1270
1271     * Moose::Meta::Attribute
1272       - fixed lazy attributes which were not getting
1273         checked with the type constraint (thanks ashley)
1274         - added tests for this
1275       - removed the over-enthusiastic DWIMery of the
1276         automatic ArrayRef and HashRef defaults, it
1277         broke predicates in an ugly way.
1278         - removed tests for this
1279
1280 0.13 Sat. Sept. 30, 2006
1281     ++ NOTE ++
1282     This version of Moose *must* have Class::MOP 0.35 in order
1283     to work correctly. A number of small internal tweaks have
1284     been made in order to be compatible with that release.
1285
1286     * Moose
1287       - Removed the use of UNIVERSAL::require to be a better
1288         symbol table citizen and remove a dependency
1289         (thanks Adam Kennedy)
1290
1291       **~~ removed experimental & undocumented feature ~~**
1292       - commented out the 'method' and 'self' keywords, see the
1293         comments for more info.
1294
1295     * Moose::Cookbook
1296       - added a FAQ and WTF files to document frequently
1297         asked questions and common problems
1298
1299     * Moose::Util::TypeConstraints
1300       - added GlobRef and FileHandle type constraint
1301         - added tests for this
1302
1303     * Moose::Meta::Attribute
1304       - if your attribute 'isa' ArrayRef of HashRef, and you have
1305         not explicitly set a default, then make the default DWIM.
1306         This will also work for subtypes of ArrayRef and HashRef
1307         as well.
1308       - you can now auto-deref subtypes of ArrayRef or HashRef too.
1309         - new test added for this (thanks to ashley)
1310
1311     * Moose::Meta::Role
1312       - added basic support for runtime role composition
1313         but this is still *highly experimental*, so feedback
1314         is much appreciated :)
1315         - added tests for this
1316
1317     * Moose::Meta::TypeConstraint
1318       - the type constraint now handles the coercion process
1319         through delegation, this is to support the coercion
1320         of unions
1321
1322     * Moose::Meta::TypeConstraint::Union
1323       - it is now possible for coercions to be performed
1324         on a type union
1325         - added tests for this (thanks to konobi)
1326
1327     * Moose::Meta::TypeCoercion
1328       - properly capturing error when type constraint
1329         is not found
1330
1331     * Build.PL
1332       - Scalar::Util 1.18 is bad on Win32, so temporarily
1333         only require version 1.17 for Win32 and cygwin.
1334         (thanks Adam Kennedy)
1335
1336 0.12 Sat. Sept. 1, 2006
1337     * Moose::Cookbook
1338       - Recipe5 (subtypes & coercion) has been written
1339
1340     * Moose
1341       - fixed "bad meta" error message to be more descriptive
1342       - fixed &unimport to not remove the &inner and &super
1343         keywords because we need to localize them.
1344       - fixed number of spelling/grammer issues, thanks Theory :)
1345
1346       **~~ experimental & undocumented feature ~~**
1347       - added the method and self keywords, they are basically
1348         just sugar, and they may not stay around.
1349
1350     * Moose::Object
1351       - added &dump method to easily Data::Dumper
1352         an object
1353
1354     * Moose::Meta::TypeConstraint
1355       - added the &is_a_type_of method to check both the current
1356         and the subtype of a method (similar to &isa with classes)
1357
1358     * Moose::Meta::Role
1359       - this is now a subclass of Class::MOP::Module, and no longer
1360         creates the _role_meta ugliness of before.
1361         - fixed tests to reflect this change
1362
1363 0.11 Wed. July 12, 2006
1364     * Moose
1365       - added an &unimport method to remove all the keywords
1366         that Moose will import, simply add 'no Moose' to the
1367         bottom of your class file.
1368
1369     * t/
1370       - fixed some test failures caused by a forgotten test
1371         dependency.
1372
1373 0.10 Thurs. July 6, 2006
1374     * Moose
1375       - improved error message when loading modules so
1376         it is less confusing when you load a role.
1377       - added &calculate_all_roles method to
1378         Moose::Meta::Class and Moose::Meta::Role
1379
1380     NOTE:
1381     This module has been tested against Class::MOP 0.30
1382     but it does not yet utilize the optimizations
1383     it makes available. Stay tuned for that ;)
1384
1385 0.09_03 Fri. June 23, 2006
1386     ++ DEVELOPER RELEASE ++
1387     * Moose
1388       - 'use strict' and 'use warnings' are no longer
1389          needed in Moose classes, Moose itself will
1390          turn them on for you.
1391          - added tests for this
1392       - moved code from exported subs to private methods
1393         in Moose::Meta::Class
1394
1395     * Moose::Role
1396       - as with Moose, strict and warnings are
1397         automatically turned on for you.
1398          - added tests for this
1399
1400     * Moose::Meta::Role
1401       - now handles an edge case for override errors
1402         - added tests for this
1403       - added some more edge case tests
1404
1405 0.09_02 Tues. May 16, 2006
1406     ++ DEVELOPER RELEASE ++
1407     * Moose
1408       - added prototypes to the exported subs
1409       - updated docs
1410
1411     * Moose::Role
1412       - added prototypes to the exported subs
1413       - updated docs
1414
1415     * Moose::Util::TypeConstraints
1416       - cleaned up prototypes for the subs
1417       - updated docs
1418
1419 0.09_01 Fri. May 12, 2006
1420     ++ DEVELOPER RELEASE ++
1421       - This release works in combination with
1422         Class::MOP 0.29_01, it is a developer
1423         release because it uses the a new
1424         instance sub-protocol and a fairly
1425         complete Role implementation. It has
1426         not yet been optimized, so it slower
1427         the the previous CPAN version. This
1428         release also lacks good updated docs,
1429         the official release will have updated docs.
1430
1431     * Moose
1432       - refactored the keyword exports
1433         - 'with' now checks Role validaity and
1434           accepts more than one Role at a time
1435         - 'extends' makes metaclass adjustments as
1436            needed to ensure metaclass compatability
1437
1438     * Moose::Role
1439       - refactored the keyword exports
1440         - 'with' now checks Role validaity and
1441           accepts more than one Role at a time
1442
1443     * Moose::Util::TypeConstraints
1444       - added the 'enum' keyword for simple
1445         string enumerations which can be used as
1446         type constraints
1447         - see example of usage in t/202_example.t
1448
1449     * Moose::Object
1450       - more careful checking of params to new()
1451
1452     * Moose::Meta::Role
1453       - much work done on the role composition
1454         - many new tests for conflict detection
1455           and composition edge cases
1456         - not enough documentation, I suggest
1457           looking at the tests
1458
1459     * Moose::Meta::Instance
1460       - added new Instance metaclass to support
1461         the new Class::MOP instance protocol
1462
1463     * Moose::Meta::Class
1464       - some small changes to support the new
1465         instance protocol
1466       - some small additions to support Roles
1467
1468     * Moose::Meta::Attribute
1469       - some improvements to the accessor generation code
1470         by nothingmuch
1471       - some small changes to support the new
1472         instance protocol
1473       - (still somewhat) experimental delegation support
1474         with the 'handles' option
1475         - added several tests for this
1476         - no docs for this yet
1477
1478 0.05 Thurs. April 27, 2006
1479     * Moose
1480       - keywords are now exported with Sub::Exporter
1481         thanks to chansen for this commit
1482       - has keyword now takes a 'metaclass' option
1483         to support custom attribute meta-classes
1484         on a per-attribute basis
1485         - added tests for this
1486       - the 'has' keyword not accepts inherited slot
1487         specifications (has '+foo'). This is still an
1488         experimental feature and probably not finished
1489         see t/038_attribute_inherited_slot_specs.t for
1490         more details, or ask about it on #moose
1491         - added tests for this
1492
1493     * Moose::Role
1494       - keywords are now exported with Sub::Exporter
1495
1496     * Moose::Utils::TypeConstraints
1497       - reorganized the type constraint hierarchy, thanks
1498         to nothingmuch and chansen for his help and advice
1499         on this
1500         - added some tests for this
1501       - keywords are now exported with Sub::Exporter
1502         thanks to chansen for this commit
1503
1504     * Moose::Meta::Class
1505       - due to changes in Class::MOP, we had to change
1506         construct_instance (for the better)
1507
1508     * Moose::Meta::Attribute
1509       - due to changes in Class::MOP, we had to add the
1510         initialize_instance_slot method (it's a good thing)
1511
1512     * Moose::Meta::TypeConstraint
1513       - added type constraint unions
1514         - added tests for this
1515       - added the is_subtype_of predicate method
1516         - added tests for this
1517
1518 0.04 Sun. April 16th, 2006
1519     * Moose::Role
1520       - Roles can now consume other roles
1521         - added tests for this
1522       - Roles can specify required methods now with
1523         the requires() keyword
1524         - added tests for this
1525
1526     * Moose::Meta::Role
1527       - ripped out much of it's guts ,.. much cleaner now
1528       - added required methods and correct handling of
1529         them in apply() for both classes and roles
1530         - added tests for this
1531       - no longer adds a does() method to consuming classes
1532         it relys on the one in Moose::Object
1533       - added roles attribute and some methods to support
1534         roles consuming roles
1535
1536     * Moose::Meta::Attribute
1537       - added support for triggers on attributes
1538         - added tests for this
1539       - added support for does option on an attribute
1540         - added tests for this
1541
1542     * Moose::Meta::Class
1543       - added support for attribute triggers in the
1544         object construction
1545         - added tests for this
1546
1547     * Moose
1548       - Moose no longer creates a subtype for your class
1549         if a subtype of the same name already exists, this
1550         should DWIM in 99.9999% of all cases
1551
1552     * Moose::Util::TypeConstraints
1553       - fixed bug where incorrect subtype conflicts were
1554         being reported
1555         - added test for this
1556
1557     * Moose::Object
1558       - this class can now be extended with 'use base' if
1559         you need it, it properly loads the metaclass class now
1560         - added test for this
1561
1562 0.03_02 Wed. April 12, 2006
1563     * Moose
1564       - you must now explictly use Moose::Util::TypeConstraints
1565         it no longer gets exported for you automatically
1566
1567     * Moose::Object
1568       - new() now accepts hash-refs as well as key/value lists
1569       - added does() method to check for Roles
1570         - added tests for this
1571
1572     * Moose::Meta::Class
1573       - added roles attribute along with the add_role() and
1574         does_role() methods
1575         - added tests for this
1576
1577     * Moose::Meta::Role
1578       - now adds a does() method to consuming classes
1579         which tests the class's hierarchy for roles
1580         - added tests for this
1581
1582 0.03_01 Mon. April 10, 2006
1583     * Moose::Cookbook
1584       - added new Role recipe (no content yet, only code)
1585
1586     * Moose
1587       - added 'with' keyword for Role support
1588         - added test and docs for this
1589       - fixed subtype quoting bug
1590         - added test for this
1591
1592     * Moose::Role
1593       - Roles for Moose
1594         - added test and docs
1595
1596     * Moose::Util::TypeConstraints
1597       - added the message keyword to add custom
1598         error messages to type constraints
1599
1600     * Moose::Meta::Role
1601       - the meta role to support Moose::Role
1602         - added tests and docs
1603
1604     * Moose::Meta::Class
1605       - moved a number of things from Moose.pm
1606         to here, they should have been here
1607         in the first place
1608
1609     * Moose::Meta::Attribute
1610       - moved the attribute option macros here
1611         instead of putting them in Moose.pm
1612
1613     * Moose::Meta::TypeConstraint
1614       - added the message attributes and the
1615         validate method
1616         - added tests and docs for this
1617
1618 0.03 Thurs. March 30, 2006
1619     * Moose::Cookbook
1620       - added the Moose::Cookbook with 5 recipes,
1621         describing all the stuff Moose can do.
1622
1623     * Moose
1624       - fixed an issue with &extends super class loading
1625         it now captures errors and deals with inline
1626         packages correctly (bug found by mst, solution
1627         stolen from alias)
1628       - added super/override & inner/augment features
1629         - added tests and docs for these
1630
1631     * Moose::Object
1632       - BUILDALL now takes a reference of the %params
1633         that are passed to &new, and passes that to
1634         each BUILD as well.
1635
1636     * Moose::Util::TypeConstraints
1637       - Type constraints now survive runtime reloading
1638         - added test for this
1639
1640         * Moose::Meta::Class
1641           - fixed the way attribute defaults are handled
1642             during instance construction (bug found by chansen)
1643
1644     * Moose::Meta::Attribute
1645       - read-only attributes now actually enforce their
1646         read-only-ness (this corrected in Class::MOP as
1647         well)
1648
1649 0.02 Tues. March 21, 2006
1650     * Moose
1651       - many more tests, fixing some bugs and
1652         edge cases
1653       - &extends now loads the base module with
1654         UNIVERSAL::require
1655         - added UNIVERSAL::require to the
1656           dependencies list
1657       ** API CHANGES **
1658       - each new Moose class will also create
1659         and register a subtype of Object which
1660         correspond to the new Moose class.
1661       - the 'isa' option in &has now only
1662         accepts strings, and will DWIM in
1663         almost all cases
1664
1665     * Moose::Util::TypeConstraints
1666       - added type coercion features
1667         - added tests for this
1668         - added support for this in attributes
1669           and instance construction
1670       ** API CHANGES **
1671       - type construction no longer creates a
1672         function, it registers the type instead.
1673         - added several functions to get the
1674           registered types
1675
1676     * Moose::Object
1677       - BUILDALL and DEMOLISHALL were broken
1678         because of a mis-named hash key, Whoops :)
1679
1680     * Moose::Meta::Attribute
1681       - adding support for coercion in the
1682         autogenerated accessors
1683
1684     * Moose::Meta::Class
1685       - adding support for coercion in the
1686         instance construction
1687
1688     * Moose::Meta::TypeConstraint
1689     * Moose::Meta::TypeCoercion
1690           - type constraints and coercions are now
1691             full fledges meta-objects
1692
1693 0.01 Wed. March 15, 2006
1694     - Moooooooooooooooooose!!!