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