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