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