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