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