1 Revision history for Perl extension Moose
4 * Moose::Meta::TypeConstraint::Parameterized
5 - allow subtypes of ArrayRef and HashRef to
6 be used as a container (sartak)
7 - basic support for coercion to ArrayRef and
8 HashRef for containers (sartak)
9 * Moose::Meta::Method::Accessor
10 - allow subclasses to decide whether we need
11 to copy the value into a new variable (sartak)
13 0.32 Tues. Dec. 4, 2007
14 * Moose::Util::TypeConstraints
15 - fixing how subtype aliases of unions work
16 they should inherit the parent's coercion
17 - added tests for this
18 - you can now define multiple coercions on
19 a single type at different times instead of
20 having to do it all in one place
21 - added tests for this
23 * Moose::Meta::TypeConstraint
24 - there is now a default constraint of sub { 1 }
25 instead of Moose::Util::TypeConstraints setting
28 * Moose::Meta::TypeCoercion
29 * Moose::Meta::TypeCoercion::Union
30 - added the &has_coercion_for_type and
31 &add_type_coercions methods to support the
32 new features above (although you cannot add
33 more type coercions for Union types)
35 0.31 Mon. Nov. 26, 2007
36 * Moose::Meta::Attribute
37 - made the +attr syntax handle extending types with
38 parameters. So "has '+foo' => (isa => 'ArrayRef[Int]')"
39 now works if the original foo is an ArrayRef.
40 - added tests for this.
41 - delegation now works even if the attribute does not
42 have a reader method using the get_read_method_ref
43 method from Class::MOP::Attribute.
44 - added tests for this
47 * Moose::Util::TypeConstraints
48 - passing no "additional attribute info" to
49 &find_or_create_type_constraint will no longer
50 attempt to create an __ANON__ type for you,
51 instead it will just return undef.
54 0.30 Fri. Nov. 23, 2007
55 * Moose::Meta::Method::Constructor
56 -builder related bug in inlined constructor. (groditi)
58 * Moose::Meta::Method::Accessor
59 - genereate unnecessary calls to predicates and refactor
60 code generation for runtime speed (groditi)
62 * Moose::Util::TypeConstraints
63 - fix ClassName constraint to introspect symbol table (mst)
64 - added more tests for this (mst)
65 - fixed it so that subtype 'Foo' => as 'HashRef[Int]' ...
67 - added tests for this
70 - adding the link to Recipie 11 (written by Sartak)
71 - adding test for SYNOPSIS code
74 - New tests for builder bug. Upon instantiation, if an
75 attribute had a builder, no value and was not lazy the
76 builder default was not getting run, oops. (groditi)
78 0.29 Tues. Nov. 13, 2007
79 * Moose::Meta::Attribute
80 - Fix error message on missing builder method (groditi)
82 * Moose::Meta::Method::Accessor
83 - Fix error message on missing builder method (groditi)
86 - Add test to check for the correct error message when
87 builder method is missing (groditi)
89 0.28 Tues. Nov. 13, 2007
90 - 0.27 packaged incorrectly (groditi)
92 0.27 Tues. Nov. 13, 2007
93 * Moose::Meta::Attribute
94 - Added support for the new builder option (groditi)
95 - Added support for lazy_build option (groditi)
96 - Changed slot initialization for predicate changes (groditi)
98 * Moose::Meta::Method::Accessor
99 - Added support for lazy_build option (groditi)
100 - Fix inline methods to work with corrected predicate
103 * Moose::Meta::Method::Constructor
104 - Added support for lazy_build option (groditi)
107 - tests for builder and lazy_build (groditi)
109 * fixing some misc. bits in the docs that
110 got mentioned on CPAN Forum & perlmonks
113 - fixed how required methods are handled
114 when they encounter overriden or modified
115 methods from a class (thanks to confound).
116 - added tests for this
118 * Moose::Util::TypeConstraint
119 - fixed the type notation parser so that
120 the | always creates a union and so is
121 no longer a valid type char (thanks to
122 konobi, mugwump and #moose for working
124 - added more tests for this
126 0.26 Thurs. Sept. 27, 2007
129 * Parameterized Types
130 We now support parameterized collection types, such as:
131 ArrayRef[Int] # array or integers
132 HashRef[Object] # a hash with object values
133 They can also be nested:
134 ArrayRef[HashRef[RegExpr]] # an array of hashes with regexpr values
135 And work with the type unions as well:
136 ArrayRef[Int | Str] # array of integers of strings
138 * Better Framework Extendability
139 Moose.pm is now "extendable" such that it is now much
140 easier to extend the framework and add your own keywords
141 and customizations. See the "EXTENDING AND EMBEDDING MOOSE"
142 section of the Moose.pm docs.
145 In an effort to begin documenting some of the various
146 details of Moose as well as some common idioms, we have
147 created Moose::Cookbook::Snacks as a place to find
148 small (easily digestable) nuggets of Moose code.
151 ~ Several doc updates/cleanup thanks to castaway ~
153 - converted build system to use Module::Install instead of
154 Module::Build (thanks to jrockway)
157 - added all the meta classes to the immutable list and
158 set it to inline the accessors
159 - fix import to allow Sub::Exporter like { into => }
160 and { into_level => } (perigrin)
161 - exposed and documented init_meta() to allow better
162 embedding and extending of Moose (perigrin)
165 - complete re-organization of the test suite
166 - added some new tests as well
167 - finally re-enabled the Moose::POOP test since
168 the new version of DBM::Deep now works again
172 - fixed very odd and very nasty recursion bug with
174 - added tests for this (eilara)
176 * Moose::Meta::Attribute
177 Moose::Meta::Method::Constructor
178 Moose::Meta::Method::Accessor
179 - fixed issue with overload::Overloaded getting called
180 on non-blessed items. (RT #29269)
181 - added tests for this
183 * Moose::Meta::Method::Accessor
184 - fixed issue with generated accessor code making
185 assumptions about hash based classes (thanks to dexter)
187 * Moose::Coookbook::Snacks
188 - these are bits of documentation, not quite as big as
189 Recipes but which have no clear place in the module docs.
190 So they are Snacks! (horray for castaway++)
192 * Moose::Cookbook::Recipe4
193 - updated it to use the new ArrayRef[MyType] construct
194 - updated the accompanying test as well
196 +++ Major Refactor of the Type Constraint system +++
197 +++ with new features added as well +++
199 * Moose::Util::TypeConstraint
200 - no longer uses package variable to keep track of
201 the type constraints, now uses the an instance of
202 Moose::Meta::TypeConstraint::Registry to do it
203 - added more sophisticated type notation parsing
205 - added tests for this
207 * Moose::Meta::TypeConstraint
208 - some minor adjustments to make subclassing easier
209 - added the package_defined_in attribute so that we
210 can track where the type constraints are created
212 * Moose::Meta::TypeConstraint::Union
213 - this is now been refactored to be a subclass of
214 Moose::Meta::TypeConstraint
216 * Moose::Meta::TypeCoercion::Union
217 - this has been added to service the newly refactored
218 Moose::Meta::TypeConstraint::Union and is itself
219 a subclass of Moose::Meta::TypeCoercion
221 * Moose::Meta::TypeConstraint::Parameterized
222 - added this module (taken from MooseX::AttributeHelpers)
223 to help construct nested collection types
224 - added tests for this
226 * Moose::Meta::TypeConstraint::Registry
227 - added this class to keep track of type constraints
229 0.25 Mon. Aug. 13, 2007
231 - Documentation update to reference Moose::Util::TypeConstraints
232 under 'isa' in 'has' for how to define a new type
235 * Moose::Meta::Attribute
236 - required attributes now will no longer accept undef
237 from the constructor, even if there is a default and lazy
238 - added tests for this
239 - default subroutines must return a value which passes the
241 - added tests for this
243 * Moose::Meta::Attribute
244 * Moose::Meta::Method::Constructor
245 * Moose::Meta::Method::Accessor
246 - type-constraint tests now handle overloaded objects correctly
248 - added tests for this (thanks to EvanCarroll)
250 * Moose::Meta::TypeConstraint::Union
251 - added (has_)hand_optimized_constraint to this class so that
252 it behaves as the regular Moose::Meta::TypeConstraint does.
255 - large refactoring of this code
256 - added several more tests
257 - tests for subtle conflict resolition issues
258 added, but not currently running
261 * Moose::Cookbook::Recipe7
262 - added new recipe for augment/inner functionality
264 - added test for this
267 - a formal definition of roles (still in progress)
270 - utilities for easier working with Moose classes
271 - added tests for these
274 - This contains Moose specific test functions
275 - added tests for these
277 0.24 Tues. July 3, 2007
278 ~ Some doc updates/cleanup ~
280 * Moose::Meta::Attribute
281 - added support for roles to be given as parameters
282 to the 'handles' option.
283 - added tests and docs for this
284 - the has '+foo' attribute form now accepts changes to
285 the lazy option, and the addition of a handles option
286 (but not changing the handles option)
287 - added tests and docs for this
290 - required methods are now fetched using find_method_by_name
291 so that required methods can come from superclasses
292 - adjusted tests for this
294 0.23 Mon. June 18, 2007
295 * Moose::Meta::Method::Constructor
296 - fix inlined constructor for hierarchy with multiple BUILD methods (mst)
298 - Modify make_immutable to work with the new Class::MOP immutable
299 mechanism + POD + very basic test (groditi)
300 * Moose::Meta::Attribute
301 - Fix handles to use goto() so that caller() comes out properly on
302 the other side (perigrin)
304 0.22 Thurs. May 31, 2007
305 * Moose::Util::TypeConstraints
306 - fix for prototype undeclared issue when Moose::Util::TypeConstraints
307 loaded before consumers (e.g. Moose::Meta::Attribute) by predeclaring
308 prototypes for functions
309 - added the ClassName type constraint, this checks for strings
310 which will respond true to ->isa(UNIVERSAL).
311 - added tests and docs for this
312 - subtyping just in name now works correctly by making the
313 default for where be { 1 }
314 - added test for this
316 * Moose::Meta::Method::Accessor
317 - coerce and lazy now work together correctly, thanks to
318 merlyn for finding this bug
319 - tests added for this
320 - fix reader presedence bug in Moose::Meta::Attribute + tests
323 - Foo->new(undef) now gets ignored, it is assumed you meant to pass
324 a HASH-ref and missed. This produces better error messages then
325 having it die cause undef is not a HASH.
326 - added tests for this
328 0.21 Thursday, May 2nd, 2007
330 - added SUPER_SLOT and INNER_SLOT class hashes to support unimport
331 - modified unimport to remove super and inner along with the rest
332 - altered unimport tests to handle this
335 - altered super export to populate SUPER_SLOT
338 - altered augment and override modifier application to use *_SLOT
339 - modified tests for these to unimport one test class each to test
342 - fixed issue where custom attribute metaclasses
343 where not handled correctly in roles
344 - added tests for this
347 - fixed issue where extending metaclasses with
348 roles would blow up. Thanks to Aankhen`` for
349 finding this insidious error, and it's solution.
351 ~~ lots of spelling and grammer fixes in the docs,
352 many many thanks to rlb3 and Aankhen for these :)
354 0.20 Friday, April 6th, 2007
355 >> I messed up the SKIP logic in one test
356 so this release is just to fix that.
359 - 'has' now also accepts an ARRAY ref
360 to create multiple attrs (see docs)
361 (thanks to konobi for this)
362 - added tests and docs
364 0.19 Thurs. April 5th, 2007
365 ~~ More documentation updates ~~
367 * Moose::Util::TypeConstraints
368 - 'type' now supports messages as well
369 thanks to phaylon for finding this
370 - added tests for this
371 - added &list_all_type_constraints and
372 &list_all_builtin_type_constraints
373 functions to facilitate introspection.
375 * Moose::Meta::Attribute
376 - fixed regexp 'handles' declarations
377 to build the list of delegated methods
378 correctly (and not override important
379 things like &new) thanks to ashleyb
381 - added tests and docs for this
382 - added the 'documentation' attributes
383 so that you can actually document your
384 attributes and inspect them through the
386 - added tests and docs for this
389 - when loading custom attribute metaclasses
390 it will first look in for the class in the
391 Moose::Meta::Attribute::Custom::$name, and
392 then default to just loading $name.
393 - added tests and docs for this
395 * Moose::Meta::TypeConstraint
396 - type constraints now stringify to their names.
397 - added test for this
400 - added tests to assure we work with Module::Refresh
401 - added stricter test skip logic in the Moose POOP
402 test, ask Rob Kinyon why.
403 - *cough* DBM::Deep 1.0 backwards compatability sucks *cough* ;)
405 0.18 Sat. March 10, 2007
406 ~~ Many, many documentation updates ~~
409 - We now use Class::MOP::load_class to
411 - added tests to show types and subtypes
412 working with Declare::Constraints::Simple
413 and Test::Deep as constraint engines.
416 !! You must have Class::MOP 0.37_001 !!
417 !! for this developer release to work !!
419 This release was primarily adding the immutable
420 feature to Moose. An immutable class is one which
421 you promise not to alter. When you set the class
422 as immutable it will perform various bits of
423 memoization and inline certain part of the code
424 (constructors, destructors and accessors). This
425 minimizes (and in some cases totally eliminates)
426 one of Moose's biggest performance hits. This
427 feature is not on by default, and is 100% optional.
428 It has several configurable bits as well, so you
429 can pick and choose to your specific needs.
431 The changes involved in this were fairly wide and
432 highly specific, but 100% backwards compatible, so
433 I am not going to enumerate them here. If you are
434 truely interested in what was changed, please do
437 0.17 Tues. Nov. 14, 2006
438 * Moose::Meta::Method::Accessor
439 - bugfix for read-only accessors which
440 are have a type constraint and lazy.
441 Thanks to chansen for finding it.
443 0.16 Tues. Nov. 14, 2006
445 There are some speed improvements in this release,
446 but they are only the begining, so stay tuned.
449 - BUILDALL and DEMOLISHALL no longer get
450 called unless they actually need to be.
451 This gave us a signifigant speed boost
452 for the cases when there is no BUILD or
453 DEMOLISH method present.
455 * Moose::Util::TypeConstraints
456 * Moose::Meta::TypeConstraint
457 - added an 'optimize_as' option to the
458 type constraint, which allows for a
459 hand optimized version of the type
460 constraint to be used when possible.
461 - Any internally created type constraints
462 now provide an optimized version as well.
464 0.15 Sun. Nov. 5, 2006
466 This version of Moose *must* have Class::MOP 0.36 in order
467 to work correctly. A number of small internal tweaks have
468 been made in order to be compatible with that release.
470 * Moose::Util::TypeConstraints
471 - added &unimport so that you can clean out
472 your class namespace of these exported
476 - fixed minor issue which occasionally
477 comes up during global destruction
479 - moved Moose::Meta::Method::Overriden into
483 - moved Moose::Meta::Role::Method into
486 * Moose::Meta::Attribute
487 - changed how we do type checks so that
488 we reduce the overall cost, but still
491 - moved accessor generation methods to
492 Moose::Meta::Method::Accessor to
493 conform to the API changes from
496 * Moose::Meta::TypeConstraint
497 - changed how constraints are compiled
498 so that we do less recursion and more
499 iteration. This makes the type check
501 - moved Moose::Meta::TypeConstraint::Union
504 * Moose::Meta::Method::Accessor
505 - created this from methods formerly found in
506 Moose::Meta::Attribute
508 * Moose::Meta::Role::Method
509 - moved this from Moose::Meta::Role
511 * Moose::Meta::Method::Overriden
512 - moved this from Moose::Meta::Class
514 * Moose::Meta::TypeConstraint::Union
515 - moved this from Moose::Meta::TypeConstraint
517 0.14 Mon. Oct. 9, 2006
519 * Moose::Meta::Attribute
520 - fixed lazy attributes which were not getting
521 checked with the type constraint (thanks ashley)
522 - added tests for this
523 - removed the over-enthusiastic DWIMery of the
524 automatic ArrayRef and HashRef defaults, it
525 broke predicates in an ugly way.
526 - removed tests for this
528 0.13 Sat. Sept. 30, 2006
530 This version of Moose *must* have Class::MOP 0.35 in order
531 to work correctly. A number of small internal tweaks have
532 been made in order to be compatible with that release.
535 - Removed the use of UNIVERSAL::require to be a better
536 symbol table citizen and remove a dependency
537 (thanks Adam Kennedy)
539 **~~ removed experimental & undocumented feature ~~**
540 - commented out the 'method' and 'self' keywords, see the
541 comments for more info.
544 - added a FAQ and WTF files to document frequently
545 asked questions and common problems
547 * Moose::Util::TypeConstraints
548 - added GlobRef and FileHandle type constraint
549 - added tests for this
551 * Moose::Meta::Attribute
552 - if your attribute 'isa' ArrayRef of HashRef, and you have
553 not explicitly set a default, then make the default DWIM.
554 This will also work for subtypes of ArrayRef and HashRef
556 - you can now auto-deref subtypes of ArrayRef or HashRef too.
557 - new test added for this (thanks to ashley)
560 - added basic support for runtime role composition
561 but this is still *highly experimental*, so feedback
562 is much appreciated :)
563 - added tests for this
565 * Moose::Meta::TypeConstraint
566 - the type constraint now handles the coercion process
567 through delegation, this is to support the coercion
570 * Moose::Meta::TypeConstraint::Union
571 - it is now possible for coercions to be performed
573 - added tests for this (thanks to konobi)
575 * Moose::Meta::TypeCoercion
576 - properly capturing error when type constraint
580 - Scalar::Util 1.18 is bad on Win32, so temporarily
581 only require version 1.17 for Win32 and cygwin.
582 (thanks Adam Kennedy)
584 0.12 Sat. Sept. 1, 2006
586 - Recipe5 (subtypes & coercion) has been written
589 - fixed "bad meta" error message to be more descriptive
590 - fixed &unimport to not remove the &inner and &super
591 keywords because we need to localize them.
592 - fixed number of spelling/grammer issues, thanks Theory :)
594 **~~ experimental & undocumented feature ~~**
595 - added the method and self keywords, they are basically
596 just sugar, and they may not stay around.
599 - added &dump method to easily Data::Dumper
602 * Moose::Meta::TypeConstraint
603 - added the &is_a_type_of method to check both the current
604 and the subtype of a method (similar to &isa with classes)
607 - this is now a subclass of Class::MOP::Module, and no longer
608 creates the _role_meta ugliness of before.
609 - fixed tests to reflect this change
611 0.11 Wed. July 12, 2006
613 - added an &unimport method to remove all the keywords
614 that Moose will import, simply add 'no Moose' to the
615 bottom of your class file.
618 - fixed some test failures caused by a forgotten test
621 0.10 Thurs. July 6, 2006
623 - improved error message when loading modules so
624 it is less confusing when you load a role.
625 - added &calculate_all_roles method to
626 Moose::Meta::Class and Moose::Meta::Role
629 This module has been tested against Class::MOP 0.30
630 but it does not yet utilize the optimizations
631 it makes available. Stay tuned for that ;)
633 0.09_03 Fri. June 23, 2006
634 ++ DEVELOPER RELEASE ++
636 - 'use strict' and 'use warnings' are no longer
637 needed in Moose classes, Moose itself will
638 turn them on for you.
639 - added tests for this
640 - moved code from exported subs to private methods
641 in Moose::Meta::Class
644 - as with Moose, strict and warnings are
645 automatically turned on for you.
646 - added tests for this
649 - now handles an edge case for override errors
650 - added tests for this
651 - added some more edge case tests
653 0.09_02 Tues. May 16, 2006
654 ++ DEVELOPER RELEASE ++
656 - added prototypes to the exported subs
660 - added prototypes to the exported subs
663 * Moose::Util::TypeConstraints
664 - cleaned up prototypes for the subs
667 0.09_01 Fri. May 12, 2006
668 ++ DEVELOPER RELEASE ++
669 - This release works in combination with
670 Class::MOP 0.29_01, it is a developer
671 release because it uses the a new
672 instance sub-protocol and a fairly
673 complete Role implementation. It has
674 not yet been optimized, so it slower
675 the the previous CPAN version. This
676 release also lacks good updated docs,
677 the official release will have updated docs.
680 - refactored the keyword exports
681 - 'with' now checks Role validaity and
682 accepts more than one Role at a time
683 - 'extends' makes metaclass adjustments as
684 needed to ensure metaclass compatability
687 - refactored the keyword exports
688 - 'with' now checks Role validaity and
689 accepts more than one Role at a time
691 * Moose::Util::TypeConstraints
692 - added the 'enum' keyword for simple
693 string enumerations which can be used as
695 - see example of usage in t/202_example.t
698 - more careful checking of params to new()
701 - much work done on the role composition
702 - many new tests for conflict detection
703 and composition edge cases
704 - not enough documentation, I suggest
707 * Moose::Meta::Instance
708 - added new Instance metaclass to support
709 the new Class::MOP instance protocol
712 - some small changes to support the new
714 - some small additions to support Roles
716 * Moose::Meta::Attribute
717 - some improvements to the accessor generation code
719 - some small changes to support the new
721 - (still somewhat) experimental delegation support
722 with the 'handles' option
723 - added several tests for this
724 - no docs for this yet
726 0.05 Thurs. April 27, 2006
728 - keywords are now exported with Sub::Exporter
729 thanks to chansen for this commit
730 - has keyword now takes a 'metaclass' option
731 to support custom attribute meta-classes
732 on a per-attribute basis
733 - added tests for this
734 - the 'has' keyword not accepts inherited slot
735 specifications (has '+foo'). This is still an
736 experimental feature and probably not finished
737 see t/038_attribute_inherited_slot_specs.t for
738 more details, or ask about it on #moose
739 - added tests for this
742 - keywords are now exported with Sub::Exporter
744 * Moose::Utils::TypeConstraints
745 - reorganized the type constraint hierarchy, thanks
746 to nothingmuch and chansen for his help and advice
748 - added some tests for this
749 - keywords are now exported with Sub::Exporter
750 thanks to chansen for this commit
753 - due to changes in Class::MOP, we had to change
754 construct_instance (for the better)
756 * Moose::Meta::Attribute
757 - due to changes in Class::MOP, we had to add the
758 initialize_instance_slot method (it's a good thing)
760 * Moose::Meta::TypeConstraint
761 - added type constraint unions
762 - added tests for this
763 - added the is_subtype_of predicate method
764 - added tests for this
766 0.04 Sun. April 16th, 2006
768 - Roles can now consume other roles
769 - added tests for this
770 - Roles can specify required methods now with
771 the requires() keyword
772 - added tests for this
775 - ripped out much of it's guts ,.. much cleaner now
776 - added required methods and correct handling of
777 them in apply() for both classes and roles
778 - added tests for this
779 - no longer adds a does() method to consuming classes
780 it relys on the one in Moose::Object
781 - added roles attribute and some methods to support
782 roles consuming roles
784 * Moose::Meta::Attribute
785 - added support for triggers on attributes
786 - added tests for this
787 - added support for does option on an attribute
788 - added tests for this
791 - added support for attribute triggers in the
793 - added tests for this
796 - Moose no longer creates a subtype for your class
797 if a subtype of the same name already exists, this
798 should DWIM in 99.9999% of all cases
800 * Moose::Util::TypeConstraints
801 - fixed bug where incorrect subtype conflicts were
803 - added test for this
806 - this class can now be extended with 'use base' if
807 you need it, it properly loads the metaclass class now
808 - added test for this
810 0.03_02 Wed. April 12, 2006
812 - you must now explictly use Moose::Util::TypeConstraints
813 it no longer gets exported for you automatically
816 - new() now accepts hash-refs as well as key/value lists
817 - added does() method to check for Roles
818 - added tests for this
821 - added roles attribute along with the add_role() and
823 - added tests for this
826 - now adds a does() method to consuming classes
827 which tests the class's hierarchy for roles
828 - added tests for this
830 0.03_01 Mon. April 10, 2006
832 - added new Role recipe (no content yet, only code)
835 - added 'with' keyword for Role support
836 - added test and docs for this
837 - fixed subtype quoting bug
838 - added test for this
842 - added test and docs
844 * Moose::Util::TypeConstraints
845 - added the message keyword to add custom
846 error messages to type constraints
849 - the meta role to support Moose::Role
850 - added tests and docs
853 - moved a number of things from Moose.pm
854 to here, they should have been here
857 * Moose::Meta::Attribute
858 - moved the attribute option macros here
859 instead of putting them in Moose.pm
861 * Moose::Meta::TypeConstraint
862 - added the message attributes and the
864 - added tests and docs for this
866 0.03 Thurs. March 30, 2006
868 - added the Moose::Cookbook with 5 recipes,
869 describing all the stuff Moose can do.
872 - fixed an issue with &extends super class loading
873 it now captures errors and deals with inline
874 packages correctly (bug found by mst, solution
876 - added super/override & inner/augment features
877 - added tests and docs for these
880 - BUILDALL now takes a reference of the %params
881 that are passed to &new, and passes that to
884 * Moose::Util::TypeConstraints
885 - Type constraints now survive runtime reloading
886 - added test for this
889 - fixed the way attribute defaults are handled
890 during instance construction (bug found by chansen)
892 * Moose::Meta::Attribute
893 - read-only attributes now actually enforce their
894 read-only-ness (this corrected in Class::MOP as
897 0.02 Tues. March 21, 2006
899 - many more tests, fixing some bugs and
901 - &extends now loads the base module with
903 - added UNIVERSAL::require to the
906 - each new Moose class will also create
907 and register a subtype of Object which
908 correspond to the new Moose class.
909 - the 'isa' option in &has now only
910 accepts strings, and will DWIM in
913 * Moose::Util::TypeConstraints
914 - added type coercion features
915 - added tests for this
916 - added support for this in attributes
917 and instance construction
919 - type construction no longer creates a
920 function, it registers the type instead.
921 - added several functions to get the
925 - BUILDALL and DEMOLISHALL were broken
926 because of a mis-named hash key, Whoops :)
928 * Moose::Meta::Attribute
929 - adding support for coercion in the
930 autogenerated accessors
933 - adding support for coercion in the
934 instance construction
936 * Moose::Meta::TypeConstraint
937 * Moose::Meta::TypeCoercion
938 - type constraints and coercions are now
939 full fledges meta-objects
941 0.01 Wed. March 15, 2006
942 - Moooooooooooooooooose!!!