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