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