Add version #, release date, and tweak changes
[gitmo/Moose.git] / Changes
1 Also see Moose::Manual::Delta for more details of, and workarounds
2 for, noteworthy changes.
3
4 0.89_01 Wed Sep 2, 2009
5     * Moose::Meta::Attribute
6       - Added the currying syntax for delegation from AttributeHelpers to the
7         existing delegation API. (hdp)
8
9     * Moose::Meta::Attribute::Native
10       - We have merged the functionality of MooseX::AttributeHelpers into the
11         Moose core with some API tweaks. See Moose::Manual::Delta for
12         details. (hdp, jhannah, rbuels, Sartak, perigrin, doy)
13
14     * Moose::Error::Croak
15     * Moose::Error::Confess
16       - Clarify documentation on how to use different error-throwing
17         modules. (Curtis Jewell)
18
19     * Moose
20       - Correct POD for builder to point to Recipe8, not 9. (gphat)
21
22 0.89 Thu Aug 13, 2009
23     * Moose::Manual::Attributes
24       - Clarify "is", include discussion of "bare". (Sartak)
25
26     * Moose::Meta::Role::Method::Conflicting
27     * Moose::Meta::Role::Application::ToClass
28       - For the first set of roles involved in a conflict, report all
29         unresolved method conflicts, not just the first method. Fixes #47210
30         reported by Ovid. (Sartak)
31
32     * Moose::Meta::TypeConstraint
33       - Add assert_valid method to use a TypeConstraint for assertion (rjbs)
34
35     * Moose::Exporter
36       - Make "use Moose -metaclass => 'Foo'" do alias resolution, like -traits
37         does. (doy)
38       - Allow specifying role options (alias, excludes, MXRP stuff) in the
39         arrayref passed to "use Moose -traits" (doy)
40
41     * Moose::Util
42       - Add functions meta_class_alias and meta_attribute_alias for creating
43         aliases for class and attribute metaclasses and metatraits. (doy)
44
45     * Moose::Meta::Attribute
46     * Moose::Meta::Method::Accessor
47       - A trigger now receives the old value as a second argument, if the
48         attribute had one. (Dave Rolsky)
49
50     * Moose::Meta::Method::Constructor
51       - Fix a bug with $obj->new when $obj has stringify overloading.
52         Reported by Andrew Suffield [rt.cpan.org #47882] (Sartak)
53         - However, we will probably deprecate $obj->new, so please don't start
54           using it for new code!
55
56     * Moose::Meta::Role::Application
57     * Moose::Meta::Role::Application::RoleSummation
58       - Rename alias and excludes to -alias and -excludes (but keep the old
59         names for now, for backcompat) (doy)
60
61 0.88 Fri Jul 24, 2009
62     * Moose::Manual::Contributing
63       - Re-write the Moose::Manual::Contributing document to reflect
64         the new layout and methods of work for the Git repository. All
65         work now should be done in topic branches and reviewed by a
66         core committer before being applied to master. All releases
67         are done by a cabal member and merged from master to
68         stable. This plan was devised by Yuval, blame him. (perigrin)
69
70     * Moose::Meta::Role
71       - Create metaclass attributes for the different role application
72         classes.  (rafl)
73
74     * Moose::Util::MetaRole
75       - Allow applying roles to a meta role's role application
76         classes. (rafl)
77
78     * Moose::Meta::Attribute
79       - Add weak_ref to allowed options for "has '+foo'" (mst)
80
81     * Moose::Meta::Method::Accessor
82       - No longer uses inline_slot_access in accessors, to support
83         non-lvalue-based meta instances. (sorear)
84
85 0.87 Tue Jul 7, 2009
86     * Moose::Meta::Method::Delegation
87       - Once again allow class names as well as objects for
88         delegation. This was changed in 0.86.
89
90 0.86 Fri Jul 3, 2009
91     * Moose::Meta::Class::Immutable::Trait
92       - Fixes to work with the latest Class::MOP.
93
94     * Moose::Meta::Method::Delegation
95       - Delegation now dies with a more useful error message if the
96         attribute's accessor returns something defined but
97         unblessed. (hdp)
98
99 0.85 Fri, Jun 26, 2009
100     * Moose::Meta::Attribute
101       - The warning for 'no associated methods' is now split out into
102         the _check_associated_methods method, so that extensions can
103         safely call 'after install_accessors => ...'. This fixes a
104         warning from MooseX::AttributeHelpers. (hdp)
105
106 0.84 Fri, Jun 26, 2009
107     * Moose::Role
108       - has now sets definition_context for attributes defined in
109         roles. (doy)
110
111     * Moose::Meta::Attribute
112       - When adding an attribute to a metaclass, if the attribute has
113         no associated methods, it will give a deprecation
114         warning. (hdp)
115       - Methods generated by delegation were not being added to
116         associated_methods. (hdp)
117       - Attribute accessors (reader, writer, accessor, predicate,
118         clearer) now warn if they overwrite an existing method. (doy)
119       - Attribute constructors now warn very noisily about unknown (or
120         misspelled) arguments
121
122     * Moose::Util::TypeConstraints
123       - Deprecated the totally useless Role type name, which just
124         checked if $object->can('does'). Note that this is _not_ the
125         same as a type created by calling role_type('RoleName').
126
127     * Moose::Util::TypeConstraints
128     * Moose::Meta::TypeConstraint::DuckType
129       - Reify duck type from a regular subtype into an actual class
130         (Sartak)
131         - Document this because Sartak did all my work for me
132           (perigrin)
133
134     * Moose::Meta::Attribute
135       - Allow Moose::Meta::TypeConstraint::DuckType in handles, since
136         it is just a list of methods (Sartak)
137
138     * Moose::Meta::Role
139       - The get_*_method_modifiers methods would die if the role had
140         no modifiers of the given type (Robert Buels).
141
142 0.83 Tue, Jun 23, 2009
143     * Moose::Meta::Class
144       - Fix _construct_instance not setting the special __MOP__ object
145         key in instances of anon classes. (doy)
146
147 0.82 Sun, Jun 21, 2009
148     * Moose::Manual::Types
149       - Mention MooseX::Types early to avoid users falling down the
150         string parsing rathole (mst)
151
152     * Moose::Manual::MooseX
153       - Add warnings about class-level extensions and mention considering
154         using plain objects instead
155
156 0.81 Sun, Jun 7, 2009
157     * Bumped our Class::MOP prereq to the latest version (0.85), since
158       that's what we need.
159
160 0.80 Sat, Jun 6, 2009
161     * Moose::Manual::FAQ 
162       - Add FAQ about the coercion change from 0.76 because it came up
163         three times today (perigrin)
164         - Win doy $10 dollars because Sartak didn't think anybody
165           would document this fast enough (perigrin)
166
167     * Moose::Meta::Method::Destructor
168       - Inline a DESTROY method even if there are no DEMOLISH methods
169         to prevent unnecessary introspection in
170         Moose::Object::DEMOLISHALL
171
172     * Moose::*
173       - A role's required methods are now represented by
174         Moose::Meta::Role::Method::Required objects. Conflicts are now
175         represented by Moose::Meta::Role::Method::Conflicting
176         objects. The benefit for end-users in that unresolved
177         conflicts generate different, more instructive, errors,
178         resolving Ovid's #44895. (Sartak)
179
180     * Moose::Role
181       - Improve the error message of "extends" as suggested by Adam
182         Kennedy and confound (Sartak)
183       - Link to Moose::Manual::Roles from Moose::Role as we now have
184         excellent documentation (Adam Kennedy)
185
186     * Tests
187       - Update test suite for subname change in Class::MOP
188         (nothingmuch)
189       - Add TODO test for infinite recursion in Moose::Meta::Class
190         (groditi)
191
192 0.79 Wed, May 13, 2009
193     * Tests
194       - More fixes for Win32 problems. Reported by Robert Krimen.
195
196     * Moose::Object
197       - The DEMOLISHALL method could still blow up in some cases
198         during global destruction. This method has been made more
199         resilient in the face of global destruction's random garbage
200         collection order.
201
202     * Moose::Exporter
203       - If you "also" a module that isn't loaded, the error message
204         now acknowledges that (Sartak)
205
206     * Moose
207       - When your ->meta method does not return a Moose::Meta::Class,
208         the error message gave the wrong output (Sartak)
209
210 0.78 Tue, May 12, 2009
211     * Moose::Cookbook::FAQ and Moose::Cookbook::WTF
212       - Merged these documents into what is now Moose::Manual::FAQ
213
214     * Moose::Unsweetened
215       - Moved to Moose::Manual::Unsweetened
216
217     * Moose::Cookbook::Basics::Recipes 9-12
218       - Renamed to be 8-11, since recipe 8 did not exist
219
220     * Moose::Exporter
221       - Make Moose::Exporter import strict and warnings into packages
222         that use it (doy)
223
224     * Moose::Object
225       - Fix DEMOLISHALL sometimes not being able to find DEMOLISH
226         methods during global destruction (doy)
227
228     * Moose::Meta::Class
229     * Moose::Meta::Role::Application::ToClass
230       - Track the Role::Application objects created during class-role
231         consumption (Sartak)
232
233     * Moose::Meta::Class
234       - Fix metaclass incompatibility errors when extending a vanilla perl
235         class which isa Moose class with a metaclass role applied (t0m)
236
237     * Moose::Meta::Role
238       - Add a role-combination hook, _role_for_combination, for the
239         benefit of MooseX::Role::Parameterized (Sartak)
240
241     * Tests
242       - Some tests were failing on Win32 because they explicit checked
243         warning output for newlines. Reported by Nickolay Platonov.
244
245 0.77 Sat, May 2, 2009
246     * Moose::Meta::Role
247       - Add explicit use of Devel::GlobalDestruction and Sub::Name
248         (perigrin)
249
250     * Moose::Object
251       - Pass a boolean to DEMOLISHALL and DEMOLISH indicating whether
252         or not we are currently in global destruction (doy)
253       - Add explicit use of Devel::GlobalDestruction and Sub::Name
254         (perigrin)
255
256     * Moose::Cookbook::FAQ
257       - Reworked much of the existing content to be more useful to
258         modern Moose hackers (Sartak)
259
260     * Makefile.PL
261       - Depend on Class::MOP 0.83 instead of 0.82_01.
262
263 0.76 Mon, April 27, 2009
264     * Moose::Meta::TypeConstraint
265       - Do not run coercions in coerce() if the value already passes the type
266         constraint (hdp)
267
268     * Moose::Meta::TypeConstraint::Class
269       - In validation error messages, specifically say that the value is not
270         an instance of the class. This should alleviate some frustrating
271         forgot-to-load-my-type bugs. rt.cpan.org #44639 (Sartak)
272
273     * Moose::Meta::Role::Application::ToClass
274       - Revert the class-overrides-role warning in favor of a solution outside
275         of the Moose core (Sartak)
276
277     * Tests
278       - Make Test::Output optional again, since it's only used in a few files
279         (Sartak)
280
281 0.75_01 Thu, April 23, 2009
282     * Moose::Meta::Role::Application::ToClass
283       - Moose now warns about each class overriding methods from roles it
284         consumes (Sartak)
285
286     * Tests
287       - Warnings tests have standardized on Test::Output which is now an
288         unconditionally dependency (Sartak)
289
290     * Moose::Meta::Class
291       - Changes to immutabilization to work with Class::MOP 0.82_01+.
292
293 0.75 Mon, April 20, 2009
294     * Moose
295     * Moose::Meta::Class
296       - Move validation of not inheriting from roles from Moose::extends to
297         Moose::Meta::Class::superclasses (doy)
298
299     * Moose::Util
300       - add ensure_all_roles() function to encapsulate the common "apply this
301         role unless the object already does it" pattern (hdp)
302
303     * Moose::Exporter
304       - Users can now select a different metaclass with the "-metaclass"
305         option to import, for classes and roles (Sartak)
306
307     * Moose::Meta::Role
308       - Make method_metaclass an attr so that it can accept a metarole
309         application.  (jdv)
310
311 0.74 Tue, April 7, 2009
312     * Moose::Meta::Role
313     * Moose::Meta::Method::Destructor
314       - Include stack traces in the deprecation warnings.
315         (Florian Ragwitz)
316
317     * Moose::Meta::Class
318       - Removed the long-deprecated _apply_all_roles method.
319
320     * Moose::Meta::TypeConstraint
321       - Removed the long-deprecated union method.
322
323
324 0.73_02 Mon, April 6, 2009
325     * More deprecations and renamings
326       - Moose::Meta::Method::Constructor
327         - initialize_body => _initialize_body (this is always called
328           when an object is constructed)
329
330     * Moose::Object
331       - The DEMOLISHALL method could throw an exception during global
332         destruction, meaning that your class's DEMOLISH methods would
333         not be properly called. Reported by t0m.
334
335     * Moose::Meta::Method::Destructor
336       - Destructor inlining was totally broken by the change to the
337         is_needed method in 0.72_01. Now there is a test for this
338         feature, and it works again.
339
340     * Moose::Util
341       - Bold the word 'not' in the POD for find_meta (t0m)
342
343 0.73_01 Sun, April 5, 2009
344     * Moose::*
345       - Call user_class->meta in fewer places, with the eventual goal
346         of allowing the user to rename or exclude ->meta
347         altogether. Instead uses Class::MOP::class_of. (Sartak)
348
349     * Moose::Meta::Method::Accessor
350       - If an attribute had a lazy default, and that value did not
351         pass the attribute's type constraint, it did not get the
352         message from the type constraint, instead using a generic
353         message. Test provided by perigrin.
354
355     * Moose::Util::TypeConstraints
356       - Add duck_type keyword. It's sugar over making sure an object
357         can() a list of methods. This is easier than jrockway's
358         suggestion to fork all of CPAN. (perigrin)
359         - add tests and documentation (perigrin)
360
361     * Moose
362       - Document the fact that init_meta() returns the target class's
363         metaclass object. (hdp)
364
365     * Moose::Cookbook::Extending::Recipe1
366     * Moose::Cookbook::Extending::Recipe2
367     * Moose::Cookbook::Extending::Recipe3
368     * Moose::Cookbook::Extending::Recipe4
369       - Make init_meta() examples explicitly return the metaclass and
370         point out this fact. (hdp)
371
372     * Moose::Cookbook::Basics::Recipe12
373       - A new recipe, creating a custom meta-method class.
374
375     * Moose::Cookbook::Meta::Recipe6
376       - A new recipe, creating a custom meta-method class.
377
378     * Moose::Meta::Class
379     * Moose::Meta::Method::Constructor
380       - Attribute triggers no longer receive the meta-attribute object
381         as an argument in any circumstance. Previously, triggers
382         called during instance construction were passed the
383         meta-attribute, but triggers called by normal accessors were
384         not. Fixes RT#44429, reported by Mark Swayne. (hdp)
385
386     * Moose::Manual::Attributes
387       - Remove references to triggers receving the meta-attribute object as an
388         argument. (hdp)
389
390     * Moose::Cookbook::FAQ
391       - Remove recommendation for deprecated Moose::Policy and
392         Moose::Policy::FollowPBP; recommend MooseX::FollowPBP
393         instead. (hdp)
394
395     * Many methods have been renamed with a leading underscore, and a
396       few have been deprecated entirely. The methods with a leading
397       underscore are consider "internals only". People writing
398       subclasses or extensions to Moose should feel free to override
399       them, but they are not for "public" use.
400
401       - Moose::Meta::Class
402         - check_metaclass_compatibility => _check_metaclass_compatibility
403
404       - Moose::Meta::Method::Accessor
405         - initialize_body => _initialize_body (this is always called
406           when an object is constructed)
407         - /(generate_.*_method(?:_inline)?)/ => '_' . $1
408
409       - Moose::Meta::Method::Constructor
410         - initialize_body => _initialize_body (this is always called
411           when an object is constructed)
412         - /(generate_constructor_method(?:_inline)?)/ => '_' . $1
413         - attributes => _attributes (now inherited from parent)
414         - meta_instance => _meta_instance (now inherited from parent)
415
416       - Moose::Meta::Role
417         - alias_method is deprecated. Use add_method
418
419 0.73 Fri, March 29, 2009
420     * No changes from 0.72_01.
421
422 0.72_01 Thu, March 26, 2009
423     * Everything
424       - Almost every module has complete API documentation. A few
425         methods (and even whole classes) have been intentionally
426         excluded pending some rethinking of their APIs.
427
428     * Moose::Util::TypeConstraints
429       - Calling subtype with a name as the only argument is now an
430         exception. If you want an anonymous subtype do:
431
432          my $subtype = subtype as 'Foo';
433
434     * Moose::Cookbook::Meta::Recipe7
435       - A new recipe, creating a custom meta-instance class.
436
437     * Moose::Cookbook::Basics::Recipe5
438       - Fix various typos and mistakes. Includes a patch from Radu
439         Greab.
440
441     * Moose::Cookbook::Basics::Recipe9
442       - Link to this recipe from Moose.pm's builder blurb
443
444     * Moose::Exporter
445       - When wrapping a function with a prototype, Moose::Exporter now
446         makes sure the wrapped function still has the same
447         prototype. (Daisuke Maki)
448
449     * Moose::Meta::Attribute
450       - Allow a subclass to set lazy_build for an inherited
451         attribute. (hdp)
452
453     * Makefile.PL
454       - Explicitly depend on Data::OptList. We already had this dependency
455         via Sub::Exporter, but since we're using it directly we're
456         better off with it listed. (Sartak)
457
458     * Moose::Meta::Method::Constructor
459       - Make it easier to subclass the inlining behaviour. (Ash
460         Berlin)
461
462     * Moose::Manual::Delta
463       - Details significant changes in the history of Moose, along
464         with recommended workarounds.
465
466     * Moose::Manual::Contributing
467       - Contributor's guide to Moose.
468
469     * Moose::Meta::Method::Constructor
470       - The long-deprecated intialize_body method has been removed
471         (yes, spelled like that).
472
473     * Moose::Meta::Method::Destructor
474       - This is_needed method is now always a class method.
475
476     * Moose::Meta::Class
477       - Changes to the internals of how make_immutable works to match
478         changes in latest Class::MOP.
479
480 0.72 Mon, February 23, 2009
481     * Moose::Object
482     * Moose::Meta::Method::Constructor
483       - A mutable class accepted Foo->new(undef) without complaint,
484         while an immutable class would blow up with an unhelpful
485         error. Now, in both cases we throw a helpful error
486         instead. Reported by doy.
487
488 0.71_01 Sun, February 22, 2009
489     * Moose::Cookbook
490       - Hopefully fixed some POD errors in a few recipes that caused
491         them to display weird on search.cpan.org.
492
493     * Moose::Util::TypeConstraints
494       - Calling type or subtype without the sugar helpers (as, where,
495         message) is now deprecated.
496       - The subtype function tried hard to guess what you meant, but
497         often got it wrong. For example:
498
499          my $subtype = subtype as 'ArrayRef[Object]';
500
501         This caused an error in the past, but now works as you'd
502         expect.
503
504     * Everywhere
505       - Make sure Moose.pm is loaded before calling
506         Moose->throw_error. This wasn't normally an issue, but could
507         bite you in weird cases.
508
509 0.71 Thu, February 19, 2009
510     * Moose::Cookbook::Basics::Recipe11
511       - A new recipe which demonstrates the use of BUILDARGS and
512         BUILD. (Dave Rolsky)
513
514     * Moose::Cookbook::Roles::Recipe3
515       - A new recipe, applying a role to an object instance. (Dave
516         Rolsky)
517
518     * Moose::Exporter
519       - Allow overriding specific keywords from "also" packages. (doy)
520
521     * Tests
522       - Replace hardcoded cookbook tests with Test::Inline to ensure
523         the tests match the actual code in the recipes. (Dave Rolsky)
524
525     * Moose::Cookbook
526       - Working on the above turned up a number of little bugs in the
527         recipe code. (Dave Rolsky)
528
529     * Moose::Util::TypeConstraints::Optimized
530       - Just use Class::MOP for the optimized ClassName check. (Dave
531         Rolsky)
532
533 0.70 Sat, February 14, 2009
534     * Moose::Util::TypeConstraints
535       - Added the RoleName type (stevan)
536         - added tests for this (stevan)
537
538     * Moose::Cookbook::Basics::Recipe3
539       - Updated the before qw[left right] sub to be a little more
540         defensive about what it accepts (stevan)
541         - added more tests to t/000_recipies/basics/003_binary_tree.t
542           (stevan)
543
544     * Moose::Object
545       - We now always call DEMOLISHALL, even if a class does not
546         define DEMOLISH. This makes sure that method modifiers on
547         DEMOLISHALL work as expected. (doy)
548         - added tests for this (EvanCarroll)
549
550     * Moose::Util::MetaRole
551       - Accept roles for the wrapped_method_metaclass (rafl)
552         - added tests for this (rafl)
553
554     * Moose::Meta::Attribute
555       - We no longer pass the meta-attribute object as a final
556         argument to triggers. This actually changed for inlined code a
557         while back, but the non-inlined version and the docs were
558         still out of date.
559
560     * Tests
561       - Some tests tried to use Test::Warn 0.10, which had bugs. Now
562         they require 0.11. (Dave Rolsky)
563
564     * Documentation
565       - Lots of small changes to the manual, cookbook, and
566         elsewhere. These were based on feedback from various
567         users, too many to list here. (Dave Rolsky)
568
569 0.69 Thu, February 12, 2009
570     * Moose
571       - Make some keyword errors use throw_error instead of croak
572         since Moose::Exporter wraps keywords now (Sartak)
573
574     * Moose::Cookbook::*
575       - Revised every recipe for style and clarity. Also moved some
576         documentation out of cookbook recipes and into Moose::Manual
577         pages. This work was funded as part of the Moose docs grant
578         from TPF. (Dave Rolsky)
579
580     * Moose::Meta::Method::Delegation
581       - If the attribute doing the delegation was not populated, the
582         error message did not specify the attribute name
583         properly. (doy)
584
585 0.68 Wed, February 4, 2009
586     * POD
587       - Many spelling, typo, and formatting fixes by daxim.
588
589     * Moose::Manual::Attributes
590       - The NAME section in the POD used "Attribute" so search.cpan
591         didn't resolve links from other documents properly.
592
593     * Moose::Meta::Method::Overriden
594       - Now properly spelled as Overridden. Thanks to daxim for
595         noticing this.
596
597 0.67 Tue, February 3, 2009
598     * Moose::Manual::*
599       - Lots of little typo fixes and a few clarifications. Several
600         pages didn't have proper titles, and so weren't actually
601         visible on search.cpan.org. Thanks to hanekomu for a variety
602         of fixes and formatting improvements.
603
604 0.66 Tue, February 3, 2009
605     * Moose::Manual
606       - This is a brand new, extensive manual for Moose. This aims to
607         provide a complete introduction to all of Moose's
608         features. This work was funded as part of the Moose docs grant
609         from TPF. (Dave Rolsky)
610
611     * Moose::Meta::Attribute
612       - Added a delegation_metaclass method to replace a hard-coded
613         use of Moose::Meta::Method::Delegation. (Dave Rolsky)
614
615     * Moose::Util::TypeConstraints
616       - If you created a subtype and passed a parent that Moose didn't
617         know about, it simply ignored the parent. Now it automatically
618         creates the parent as a class type. This may not be what you
619         want, but is less broken than before. (Dave Rolsky)
620
621     * Moose::Util::TypeConstraints
622       - This module tried throw errors by calling Moose->throw_error,
623         but it did not ensure that Moose was loaded first. This could
624         cause very unhelpful errors when it tried to throw an error
625         before Moose was loaded. (Dave Rolsky)
626
627     * Moose::Util::TypeConstraints
628       - You could declare a name with subtype such as "Foo!Bar" that
629         would be allowed, but if you used it in a parameterized type
630         such as "ArrayRef[Foo!Bar]" it wouldn't work. We now do some
631         vetting on names created via the sugar functions, so that they
632         can only contain alphanumerics, ":", and ".". (Dave Rolsky)
633
634 0.65 Thu, January 22, 2008
635     * Moose and Moose::Meta::Method::Overridden
636       - If an overridden method called super(), and then the
637         superclass's method (not overridden) _also_ called super(),
638         Moose went into an endless recursion loop. Test provided by
639         Chris Prather. (Dave Rolsky)
640
641     * Moose::Meta::TypeConstraint
642       - All methods are now documented. (gphat)
643
644     * t/100_bugs/011_DEMOLISH_eats_exceptions.t
645       - Fixed some bogus failures that occurred because we tried to
646         validate filesystem paths in a very ad-hoc and
647         not-quite-correct way. (Dave Rolsky)
648
649     * Moose::Util::TypeConstraints
650       - Added maybe_type to exports. See docs for details. (rjbs)
651
652     * Moose
653       - Added Moose::Util::TypeConstraints to the SEE ALSO
654         section. (pjf)
655
656     * Moose::Role
657       - Methods created via an attribute can now fulfill a "requires"
658         declaration for a role. (nothingmuch)
659
660     * Moose::Meta::Method::*
661       - Stack traces from inlined code will now report its line and
662         file as being in your class, as opposed to in Moose
663         guts. (nothingmuch).
664
665 0.64 Wed, December 31, 2008
666     * Moose::Meta::Method::Accessor
667       - Always inline predicate and clearer methods (Sartak)
668
669     * Moose::Meta::Attribute
670       - Support for parameterized traits (Sartak)
671       - verify_against_type_constraint method to avoid duplication
672         and enhance extensibility (Sartak)
673
674     * Moose::Meta::Class
675       - Tests (but no support yet) for parameterized traits (Sartak)
676
677     * Moose
678       - Require Class::MOP 0.75+, which has the side effect of making
679         sure we work on Win32. (Dave Rolsky)
680
681 0.63 Mon, December 8, 2008
682     * Moose::Unsweetened
683       - Some small grammar tweaks and bug fixes in non-Moose example
684         code. (Dave Rolsky)
685
686 0.62_02 Fri, December 5, 2008
687     * Moose::Meta::Role::Application::ToClass
688       - When a class does not provide all of a role's required
689         methods, the error thrown now mentions all of the missing
690         methods, as opposed to just the first one found. Requested by
691         Curtis Poe (RT #41119). (Dave Rolsky)
692
693     * Moose::Meta::Method::Constructor
694       - Moose will no longer inline a constructor for your class
695         unless it inherits its constructor from Moose::Object, and
696         will warn when it doesn't inline. If you want to force
697         inlining anyway, pass "replace_constructor => 1" to
698         make_immutable. Addresses RT #40968, reported by Jon
699         Swartz. (Dave Rolsky)
700       - The quoting of default values could be broken if the default
701         contained a single quote ('). Now we use quotemeta to escape
702         anything potentially dangerous in the defaults. (Dave Rolsky)
703
704 0.62_01 Wed, December 3, 2008
705     * Moose::Object
706       - use the method->execute API for BUILDALL
707         and DEMOLISHALL (Sartak)
708
709     * Moose::Util::TypeConstraints
710       - We now make all the type constraint meta classes immutable
711         before creating the default types provided by Moose. This
712         should make loading Moose a little faster. (Dave Rolsky)
713
714 0.62 Wed November 26, 2008
715     * Moose::Meta::Role::Application::ToClass
716       Moose::Meta::Role::Application::ToRole
717       - fixed issues where excluding and aliasing the
718         same methods for a single role did not work
719         right (worked just fine with multiple
720         roles) (stevan)
721         - added test for this (stevan)
722
723     * Moose::Meta::Role::Application::RoleSummation
724       - fixed the error message when trying to compose
725         a role with a role it excludes (Sartak)
726
727     * Moose::Exporter
728       - Catch another case where recursion caused the value
729         of $CALLER to be stamped on (t0m)
730         - added test for this (t0m)
731
732     * Moose
733       - Remove the make_immutable keyword, which has been
734         deprecated since April. It breaks metaclasses that
735         use Moose without no Moose (Sartak)
736
737     * Moose::Meta::Attribute
738       - Removing an attribute from a class now also removes delegation
739         (handles) methods installed for that attribute (t0m)
740         - added test for this (t0m)
741
742     * Moose::Meta::Method::Constructor
743       - An attribute with a default that looked like a number (but was
744         really a string) would accidentally be treated as a number
745         when the constructor was made immutable (perigrin)
746         - added test for this (perigrin)
747
748     * Moose::Meta::Role
749       - create method for constructing a role
750         dynamically (Sartak)
751         - added test for this (Sartak)
752       - anonymous roles! (Sartak)
753         - added test for this (Sartak)
754
755     * Moose::Role
756       - more consistent error messages (Sartak)
757
758     * Moose::Cookbook::Roles::Recipe1
759       - attempt to explain why a role that just requires
760         methods is useful (Sartak)
761
762 0.61 Fri November 7, 2008
763     * Moose::Meta::Attribute
764       - When passing a role to handles, it will be loaded if necessary
765         (perigrin)
766
767     * Moose::Meta::Class
768       - Method objects returned by get_method (and other methods)
769         Could end up being returned without an associated_metaclass
770         attribute. Removing get_method_map, which is provided by
771         Class::MOP::Class, fixed this. The Moose version did nothing
772         different from its parent except introduce a bug. (Dave Rolsky)
773         - added tests for this (jdv79)
774
775     * Various
776       - Added a $VERSION to all .pm files which didn't have one. Fixes
777         RT #40049, reported by Adam Kennedy. (Dave Rolsky)
778
779     * Moose::Cookbook::Basics::Recipe4
780     * Moose::Cookbook::Basics::Recipe6
781       - These files had spaces on the first line of the SYNOPSIS, as
782         opposed to a totally empty line. According to RT #40432, this
783         confuses POD parsers. (Dave Rolsky)
784
785 0.60 Fri October 24, 2008
786     * Moose::Exporter
787       - Passing "-traits" when loading Moose caused the Moose.pm
788         exports to be broken. Reported by t0m. (Dave Rolsky)
789         - Tests for this bug. (t0m)
790
791     * Moose::Util
792       - Change resolve_metaclass alias to use the new
793         load_first_existing_class function. This makes it a lot
794         simpler, and also around 5 times faster. (t0m)
795       - Add caching to resolve_metaclass_alias, which gives an order
796         of magnitude speedup to things which repeatedly call the
797         Moose::Meta::Attribute->does method, notably MooseX::Storage
798         (t0m)
799
800     * Moose::Util::TypeConstraint
801       - Put back the changes for parameterized constraints that
802         shouldn't have been removed in 0.59. We still cannot parse
803         them, but MooseX modules can create them in some other
804         way. See the 0.58 changes for more details. (jnapiorkowski)
805       - Changed the way subtypes are created so that the job is
806         delegated to a type constraint parent. This clears up some
807         hardcoded checking and should allow correct subtypes of
808         Moose::Meta::Type::Constraint. Don't rely on this new API too
809         much (create_child_type) because it may go away in the
810         future. (jnapiorkowski)
811
812     * Moose::Meta::TypeConstraint::Union
813       - Type constraint names are sorted as strings, not numbers.
814         (jnapiorkowski)
815
816     * Moose::Meta::TypeConstraint::Parameterizable
817       - New parameterize method. This can be used as a factory method
818         to make a new type constraint with a given parameterized
819         type. (jnapiorkowski)
820         - added tests (jnapiorkowski)
821
822 0.59 Tue October 14, 2008
823     * Moose
824       - Add abridged documentation for builder/default/initializer/
825         predicate, and link to more details sections in
826         Class::MOP::Attribute. (t0m)
827
828     * Moose::Util::TypeConstraints
829       - removed prototypes from all but the &-based stuff (mst)
830
831     * Moose::Util::TypeConstraints
832       - Creating a anonymous subtype with both a constraint and a
833         message failed with a very unhelpful error, but should just
834         work. Reported by t0m. (Dave Rolsky)
835
836     * Tests
837       - Some tests that used Test::Warn if it was available failed
838         with older versions of Test::Warn. Reported by Fayland. (Dave
839         Rolsky)
840       - Test firing behavior of triggers in relation to builder/default/
841         lazy_build. (t0m)
842       - Test behavior of equals/is_a_type_of/is_a_subtype_of for all
843         kinds of supported type. (t0m)
844
845     * Moose::Meta::Class
846       - In create(), do not pass "roles" option to the superclass
847         - added related test that creates an anon metaclass with
848           a required attribute
849
850     * Moose::Meta::TypeConstraint::Class
851     * Moose::Meta::TypeConstraint::Role
852       - Unify behavior of equals/is_a_type_of/is_a_subtype_of with
853         other types (as per change in 0.55_02). (t0m)
854
855     * Moose::Meta::TypeConstraint::Registry
856       - Fix warning when dealing with unknown type names (t0m)
857
858     * Moose::Util::TypeConstraints
859       - Reverted changes from 0.58 related to handle parameterized
860         types. This caused random failures on BSD and Win32 systems,
861         apparently related to the regex engine. This means that Moose
862         can no longer parse structured type constraints like
863         ArrayRef[Int,Int] or HashRef[name=>Str]. This will be
864         supported in a slightly different way via MooseX::Types some
865         time in the future. (Dave Rolsky)
866
867 0.58 Sat September 20, 2008
868     !! This release has an incompatible change regarding !!
869     !! how roles add methods to a class !!
870
871     * Roles and role application
872       ! Roles now add methods by calling add_method, not
873         alias_method. They make sure to always provide a method
874         object, which will be cloned internally. This means that it is
875         now possible to track the source of a method provided by a
876         role, and even follow its history through intermediate roles.
877
878         This means that methods added by a role now show up when
879         looking at a class's method list/map. (Dave Rolsky)
880
881     * Makefile.PL
882       - From this release on, we'll try to maintain a list of
883         conflicting modules, and warn you if you have one
884         installed. For example, this release conflicts with ...
885         - MooseX::Singleton        <= 0.11
886         - MooseX::Params::Validate <= 0.05
887         - Fey::ORM                 <= 0.10
888
889         In general, we try to not break backwards compatibility for
890         most Moose users, but MooseX modules and other code which
891         extends Moose's metaclasses is often affected by very small
892         changes in the Moose internals.
893
894     * Moose::Meta::Method::Delegation
895     * Moose::Meta::Attribute
896       - Delegation methods now have their own method class. (Dave
897         Rolsky)
898
899     * Moose::Meta::TypeConstraint::Parameterizable
900       - Added a new method 'parameterize' which is basically a factory
901         for the containing constraint. This makes it easier to create
902         new types of parameterized constraints. (jnapiorkowski)
903
904     * Moose::Meta::TypeConstraint::Union
905       - Changed the way Union types canonicalize their names to follow
906         the normalized TC naming rules, which means we strip all
907         whitespace. (jnapiorkowski)
908
909     * Moose::Util::TypeConstraints
910       - Parameter and Union args are now sorted, this makes Int|Str
911         the same constraint as Str|Int. (jnapiorkowski)
912       - Changes to the way Union types are parsed to more correctly
913         stringify their names. (jnapiorkowski)
914       - When creating a parameterized type, we now use the new
915         parameterize method. (jnapiorkowski)
916       - Incoming type constraint strings are now normalized to remove
917         all whitespace differences. (jnapiorkowski)
918       - Changed the way we parse type constraint strings so that we now
919         match TC[Int,Int,...] and TC[name=>Str] as parameterized type
920         constraints. This lays the foundation for more flexible type
921         constraint implementations.
922
923     * Tests and docs for all the above. (jnapiorkowski)
924
925     * Moose::Exporter
926     * Moose
927       - Moose::Exporter will no longer remove a subroutine that the
928         exporting package re-exports. Moose re-exports the
929         Carp::confess function, among others. The reasoning is that we
930         cannot know whether you have also explicitly imported those
931         functions for your own use, so we err on the safe side and
932         always keep them. (Dave Rolsky)
933         - added tests for this (rafl)
934
935     * Moose::Meta::Class
936       - Changes to how we fix metaclass compatibility that are much
937         too complicated to go into. The summary is that Moose is much
938         less likely to complain about metaclass incompatibility
939         now. In particular, if two metaclasses differ because
940         Moose::Util::MetaRole was used on the two corresponding
941         classes, then the difference in roles is reconciled for the
942         subclass's metaclass. (Dave Rolsky)
943       - Squashed an warning in _process_attribute (thepler)
944
945     * Moose::Meta::Role
946       - throw exceptions (sooner) for invalid attribute names (thepler)
947         - added tests for this (thepler)
948
949     * Moose::Util::MetaRole
950       - If you explicitly set a constructor or destructor class for a
951         metaclass object, and then applied roles to the metaclass,
952         that explicitly set class would be lost and replaced with the
953         default.
954
955     * Moose::Meta::Class
956     * Moose::Meta::Attribute
957     * Moose::Meta::Method
958     * Moose
959     * Moose::Object
960     * Moose::Error::Default
961     * Moose::Error::Croak
962     * Moose::Error::Confess
963       - All instances of confess() changed to use overridable
964         C<throw_error> method. This method ultimately calls a class
965         constructor, and you can change the class being called. In
966         addition, errors now pass more information than just a string.
967         The default C<error_class> behaves like C<Carp::confess>, so
968         the behavior is not visibly different for end users.
969
970 0.57 Wed September 3, 2008
971     * Moose::Intro
972       - A new bit of doc intended to introduce folks familiar with
973         "standard" Perl 5 OO to Moose concepts. (Dave Rolsky)
974
975     * Moose::Unsweetened
976       - Shows examples of two classes, each done first with and then
977         without Moose. This makes a nice parallel to
978         Moose::Intro. (Dave Rolsky)
979
980     * Moose::Util::TypeConstraints
981       - Fixed a bug in find_or_parse_type_constraint so that it
982         accepts a Moose::Meta::TypeConstraint object as the parent
983         type, not just a name (jnapiorkowski)
984         - added tests (jnapiorkowski)
985
986     * Moose::Exporter
987       - If Sub::Name was not present, unimporting failed to actually
988         remove some sugar subs, causing test failures (Dave Rolsky)
989
990 0.56 Mon September 1, 2008
991     For those not following the series of dev releases, there are
992     several major changes in this release of Moose.
993       ! Moose::init_meta should now be called as a method. See the
994         docs for details.
995
996       - Major performance improvements by nothingmuch.
997
998       - New modules for extension writers, Moose::Exporter and
999         Moose::Util::MetaRole by Dave Rolsky.
1000
1001       - Lots of doc improvements and additions, especially in the
1002         cookbook sections.
1003
1004       - Various bug fixes.
1005
1006     * Removed all references to the experimental-but-no-longer-needed
1007       Moose::Meta::Role::Application::ToMetaclassInstance.
1008
1009     * Require Class::MOP 0.65.
1010
1011 0.55_04 Sat August 30, 2008
1012     * Moose::Util::MetaRole
1013     * Moose::Cookbook::Extending::Recipe2
1014       - This simplifies the application of roles to any meta class, as
1015         well as the base object class. Reimplemented metaclass traits
1016         using this module. (Dave Rolsky)
1017
1018     * Moose::Cookbook::Extending::Recipe1
1019       - This a new recipe, an overview of various ways to write Moose
1020         extensions (Dave Rolsky)
1021
1022     * Moose::Cookbook::Extending::Recipe3
1023     * Moose::Cookbook::Extending::Recipe4
1024       - These used to be Extending::Recipe1 and Extending::Recipe2,
1025         respectively.
1026
1027 0.55_03 Fri August 29, 2008
1028     * No changes from 0.55_02 except increasing the Class::MOP
1029       dependency to 0.64_07.
1030
1031 0.55_02 Fri August 29, 2008
1032     * Makefile.PL and Moose.pm
1033       - explicitly require Perl 5.8.0+ (Dave Rolsky)
1034
1035     * Moose::Util::TypeConstraints
1036       - Fix warnings from find_type_constraint if the type is not
1037         found (t0m).
1038
1039     * Moose::Meta::TypeConstraint
1040       - Predicate methods (equals/is_a_type_of/is_subtype_of) now
1041         return false if the type you specify cannot be found in the
1042         type registry, rather than throwing an unhelpful and
1043         coincidental exception. (t0m).
1044         - added docs & test for this (t0m)
1045
1046     * Moose::Meta::TypeConstraint::Registry
1047       - add_type_constraint now throws an exception if a parameter is
1048         not supplied (t0m).
1049         - added docs & test for this (t0m)
1050
1051     * Moose::Cookbook::FAQ
1052       - Added a faq entry on the difference between "role" and "trait"
1053         (t0m)
1054
1055     * Moose::Meta::Role
1056       - Fixed a bug that caused role composition to not see a required
1057         method when that method was provided by another role being
1058         composed at the same time. (Dave Rolsky)
1059         - test and bug finding (tokuhirom)
1060
1061 0.55_01 Wed August 20, 2008
1062
1063     !! Calling Moose::init_meta as a function is now         !!
1064     !! deprecated. Please see the Moose.pm docs for details. !!
1065
1066     * Moose::Meta::Method::Constructor
1067       - Fix inlined constructor so that values produced by default
1068         or builder methods are coerced as required. (t0m)
1069         - added test for this (t0m)
1070
1071     * Moose::Meta::Attribute
1072       - A lazy attribute with a default or builder did not attempt to
1073         coerce the default value. The immutable code _did_
1074         coerce. (t0m)
1075         - added test for this (t0m)
1076
1077     * Moose::Exporter
1078       - This is a new helper module for writing "Moose-alike"
1079         modules. This should make the lives of MooseX module authors
1080         much easier. (Dave Rolsky)
1081
1082     * Moose
1083     * Moose::Cookbook::Meta::Recipe5
1084       - Implemented metaclass traits (and wrote a recipe for it):
1085
1086           use Moose -traits => 'Foo'
1087
1088         This should make writing small Moose extensions a little
1089         easier (Dave Rolsky)
1090
1091     * Moose::Cookbook::Basics::Recipe1
1092       - Removed any examples of direct hashref access, and applied an
1093         editorial axe to reduce verbosity. (Dave Rolsky)
1094
1095     * Moose::Cookbook::Basics::Recipe1
1096       - Also applied an editorial axe here. (Dave Rolsky)
1097
1098     * Moose
1099     * Moose::Cookbook::Extending::Recipe1
1100     * Moose::Cookbook::Extending::Recipe2
1101       - Rewrote extending and embedding moose documentation and
1102         recipes to use Moose::Exporter (Dave Rolsky)
1103
1104     * Moose
1105     * Moose::Role
1106       - These two modules now warn when you load them from the main
1107         package "main" package, because we will not export sugar to
1108         main. Previously it just did nothing. (Dave Rolsky)
1109
1110     * Moose::Role
1111       - Now provide an init_meta method just like Moose.pm, and you
1112         can call this to provide an alternate role metaclass. (Dave
1113         Rolsky and nothingmuch)
1114       - get_method_map now respects the package cache flag (nothingmuch)
1115
1116     * Moose::Meta::Role
1117       - Two new methods - add_method and wrap_method_body
1118         (nothingmuch)
1119
1120     * many modules
1121       - Optimizations including allowing constructors to accept hash
1122         refs, making many more classes immutable, and making
1123         constructors immutable. (nothingmuch)
1124
1125 0.55 Sun August 3, 2008
1126     * Moose::Meta::Attribute
1127       - breaking down the way 'handles' methods are
1128         created so that the process can be more easily
1129         overridden by subclasses (stevan)
1130
1131     * Moose::Meta::TypeConstraint
1132       - fixing what is passed into a ->message with
1133         the type constraints (RT #37569)
1134         - added tests for this (Charles Alderman)
1135
1136     * Moose::Util::TypeConstraints
1137       - fix coerce to accept anon types like subtype can (mst)
1138
1139     * Moose::Cookbook
1140       - reorganized the recipes into sections - Basics, Roles, Meta,
1141         Extending - and wrote abstracts for each section (Dave Rolsky)
1142
1143     * Moose::Cookbook::Basics::Recipe10
1144       - A new recipe that demonstrates operator overloading
1145         in combination with Moose. (bluefeet)
1146
1147     * Moose::Cookbook::Meta::Recipe1
1148       - an introduction to what meta is and why you'd want to make
1149         your own metaclass extensions (Dave Rolsky)
1150
1151     * Moose::Cookbook::Meta::Recipe4
1152       - a very simple metaclass example (Dave Rolsky)
1153
1154     * Moose::Cookbook::Extending::Recipe1
1155       - how to write a Moose-alike module to use your own object base
1156         class (Dave Rolsky)
1157
1158     * Moose::Cookbook::Extending::Recipe2
1159       - how to write modules with an API just like C<Moose.pm> (Dave
1160         Rolsky)
1161
1162     * all documentation
1163       - Tons of fixes, both syntactical and grammatical (Dave
1164         Rolsky, Paul Fenwick)
1165
1166 0.54 Thurs. July 3, 2008
1167     ... this is not my day today ...
1168
1169     * Moose::Meta::Attribute
1170       - fixed legal_options_for_inheritance such that
1171         clone_and_inherit options still works for
1172         Class::MOP::Attribute objects and therefore
1173         does not break MooseX::AttributeHelpers
1174         (stevan)
1175
1176 0.53 Thurs. July 3, 2008
1177     * Whoops, I guess I should run 'make manifest' before
1178       actually releasing the module. No actual changes
1179       in this release, except the fact that it includes
1180       the changes that I didn't include in the last
1181       release. (stevan--)
1182
1183 0.52 Thurs. July 3, 2008
1184     * Moose
1185       - added "FEATURE REQUESTS" section to the Moose docs
1186         to properly direct people (stevan) (RT #34333)
1187       - making 'extends' croak if it is passed a Role since
1188         this is not ever something you want to do
1189         (fixed by stevan, found by obra)
1190         - added tests for this (stevan)
1191
1192     * Moose::Object
1193       - adding support for DOES (as in UNIVERSAL::DOES)
1194         (nothingmuch)
1195         - added test for this
1196
1197     * Moose::Meta::Attribute
1198       - added legal_options_for_inheritance (wreis)
1199         - added tests for this (wreis)
1200
1201     * Moose::Cookbook::Snacks::*
1202       - removed some of the unfinished snacks that should
1203         not have been released yet. Added some more examples
1204         to the 'Keywords' snack. (stevan)
1205
1206     * Moose::Cookbook::Style
1207       - added general Moose "style guide" of sorts to the
1208         cookbook (nothingmuch) (RT #34335)
1209
1210     * t/
1211       - added more BUILDARGS tests (stevan)
1212
1213 0.51 Thurs. Jun 26, 2008
1214     * Moose::Role
1215       - add unimport so "no Moose::Role" actually does
1216         something (sartak)
1217
1218     * Moose::Meta::Role::Application::ToRole
1219       - when RoleA did RoleB, and RoleA aliased a method from RoleB in
1220         order to provide its own implementation, that method still got
1221         added to the list of required methods for consumers of
1222         RoleB. Now an aliased method is only added to the list of
1223         required methods if the role doing the aliasing does not
1224         provide its own implementation. See Recipe 11 for an example
1225         of all this. (Dave Rolsky)
1226         - added tests for this
1227
1228     * Moose::Meta::Method::Constructor
1229       - when a single argument that wasn't a hashref was provided to
1230         an immutabilized constructor, the error message was very
1231         unhelpful, as opposed to the non-immutable error. Reported by
1232         dew. (Dave Rolsky)
1233         - added test for this (Dave Rolsky)
1234
1235     * Moose::Meta::Attribute
1236       - added support for meta_attr->does("ShortAlias") (sartak)
1237         - added tests for this (sartak)
1238       - moved the bulk of the `handles` handling to the new
1239         install_delegation method (Stevan)
1240
1241     * Moose::Object
1242       - Added BUILDARGS, a new step in new()
1243
1244     * Moose::Meta::Role::Application::RoleSummation
1245       - fix typos no one ever sees (sartak)
1246
1247     * Moose::Util::TypeConstraints
1248     * Moose::Meta::TypeConstraint
1249     * Moose::Meta::TypeCoercion
1250       - Attempt to work around the ??{ } vs. threads issue
1251         (not yet fixed)
1252       - Some null_constraint optimizations
1253
1254 0.50 Thurs. Jun 11, 2008
1255     - Fixed a version number issue by bumping all modules
1256       to 0.50.
1257
1258 0.49 Thurs. Jun 11, 2008
1259     !! This version now approx. 20-25% !!
1260     !! faster with new Class::MOP 0.59 !!
1261
1262     * Moose::Meta::Attribute
1263       - fixed how the is => (ro|rw) works with
1264         custom defined reader, writer and accessor
1265         options.
1266         - added docs for this (TODO).
1267         - added tests for this (Thanks to Penfold)
1268       - added the custom attribute alias for regular
1269         Moose attributes which is "Moose"
1270       - fix builder and default both being used
1271         (groditi)
1272
1273     * Moose
1274       Moose::Meta::Class
1275       Moose::Meta::Attribute
1276       Moose::Meta::Role
1277       Moose::Meta::Role::Composite
1278       Moose::Util::TypeConstraints
1279       - switched usage of reftype to ref because
1280         it is much faster
1281
1282     * Moose::Meta::Role
1283       - changing add_package_symbol to use the new
1284         HASH ref form
1285
1286     * Moose::Object
1287       - fixed how DEMOLISHALL is called so that it
1288         can be overrided in subclasses (thanks to Sartak)
1289         - added test for this (thanks to Sartak)
1290
1291     * Moose::Util::TypeConstraints
1292       - move the ClassName type check code to
1293         Class::MOP::is_class_loaded (thanks to Sartak)
1294
1295     * Moose::Cookbook::Recipe11
1296       - add tests for this (thanks to tokuhirom)
1297
1298 0.48 Thurs. May 29, 2008
1299     (early morning release engineering)--
1300
1301     - fixing the version in Moose::Meta::Method::Destructor
1302       which was causing the indexer to choke
1303
1304 0.47 Thurs. May 29, 2008
1305     (late night release engineering)--
1306
1307     - fixing the version is META.yml, no functional
1308       changes in this release
1309
1310 0.46 Wed. May 28, 2008
1311     !! This version now approx. 20-25% !!
1312     !! faster with new Class::MOP 0.57 !!
1313
1314     * Moose::Meta::Class
1315       - some optimizations of the &initialize method
1316         since it is called so often by &meta
1317
1318     * Moose::Meta::Class
1319       Moose::Meta::Role
1320       - now use the get_all_package_symbols from the
1321         updated Class::MOP, test suite is now 10 seconds
1322         faster
1323
1324     * Moose::Meta::Method::Destructor
1325       - is_needed can now also be called as a class
1326         method for immutablization to check if the
1327         destructor object even needs to be created
1328         at all
1329
1330     * Moose::Meta::Method::Destructor
1331       Moose::Meta::Method::Constructor
1332       - added more descriptive error message to help
1333         keep people from wasting time tracking an error
1334         that is easily fixed by upgrading.
1335
1336 0.45 Saturday, May 24, 2008
1337     * Moose
1338       - Because of work in Class::MOP 0.57, all
1339         XS based functionality is now optional
1340         and a Pure Perl version is supplied
1341         - the CLASS_MOP_NO_XS environment variable
1342           can now be used to force non-XS versions
1343           to always be used
1344         - several of the packages have been tweaked
1345           to take care of this, mostly we added
1346           support for the package_name and name
1347           variables in all the Method metaclasses
1348       - before/around/after method modifiers now
1349         support regexp matching of names
1350         (thanks to Takatoshi Kitano)
1351         - tests added for this
1352         - NOTE: this only works for classes, it
1353           is currently not supported in roles,
1354           but, ... patches welcome
1355       - All usage of Carp::confess have been replaced
1356         by Carp::croak in the "keyword" functions since
1357         the stack trace is usually not helpful
1358
1359     * Moose::Role
1360       - All usage of Carp::confess have been replaced
1361         by Carp::croak in the "keyword" functions since
1362         the stack trace is usually not helpful
1363       - The 'has' keyword for roles now accepts the
1364         same array ref form that Moose.pm does
1365         (has [qw/foo bar/] => (is => 'rw', ...))
1366         - added test for this
1367
1368     * Moose::Meta::Attribute
1369       - trigger on a ro-attribute is no longer an
1370         error, as it's useful to trigger off of the
1371         constructor
1372
1373     * Moose::Meta::Class
1374       - added same 'add_package_symbol' fix as in
1375         Class::MOP 0.57
1376
1377     * Moose::Util
1378       - does_role now handles non-Moose classes
1379         more gracefully
1380         - added tests for this
1381       - added the 'add_method_modifier' function
1382         (thanks to Takatoshi Kitano)
1383
1384     * Moose::Util::TypeConstraints
1385       - subtypes of parameterizable types now are
1386         themselves parameterizable types
1387
1388     * Moose::Meta::Method::Constructor
1389       - fixed bug where trigger was not being
1390         called by the inlined immutable
1391         constructors
1392         - added test for this (thanks to Caelum)
1393
1394     * Moose::Meta::Role::Application::ToInstance
1395       - now uses the metaclass of the instance
1396         (if possible) to create the anon-class
1397         (thanks Jonathan Rockway)
1398
1399     * Moose::Cookbook::Recipe22
1400       - added the meta-attribute trait recipe
1401         (thanks to Sartak)
1402
1403     * t/
1404       - fixed hash-ordering test bug that was
1405         causing occasional cpantester failures
1406       - renamed the t/000_recipe/*.t tests to be
1407         more descriptive (thanks to Sartak)
1408
1409 0.44 Sat. May 10, 2008
1410     * Moose
1411       - made make_immutable warning cluck to
1412         show where the error is (thanks mst)
1413
1414     * Moose::Object
1415       - BUILDALL and DEMOLISHALL now call
1416         ->body when looping through the
1417         methods, to avoid the overloaded
1418         method call.
1419       - fixed issue where DEMOLISHALL was
1420         eating the $@ values, and so not
1421         working correctly, it still kind of
1422         eats them, but so does vanilla perl
1423         - added tests for this
1424
1425     * Moose::Cookbook::Recipe7
1426       - added new recipe for immutable
1427         functionality (thanks Dave Rolsky)
1428
1429     * Moose::Cookbook::Recipe9
1430       - added new recipe for builder and
1431         lazy_build (thanks Dave Rolsky)
1432
1433     * Moose::Cookbook::Recipe11
1434       - added new recipe for method aliasing
1435         and exclusion with Roles (thanks Dave Rolsky)
1436
1437     * t/
1438       - fixed Win32 test failure (thanks spicyjack)
1439
1440     ~ removed Build.PL and Module::Build compat
1441       since Module::Install has done that.
1442
1443 0.43 Wed. April, 30, 2008
1444     * NOTE TO SELF:
1445         drink more coffee before
1446         doing release engineering
1447
1448     - whoops, forgot to do the smolder tests,
1449       and we broke some of the custom meta-attr
1450       modules. This fixes that.
1451
1452 0.42 Mon. April 28, 2008
1453     - some bad tests slipped by, nothing else
1454       changed in this release (cpantesters++)
1455
1456     - upped the Class::MOP dependency to 0.55
1457       since we have tests which need the C3
1458       support
1459
1460 0.41 Mon. April 28, 2008
1461     ~~ numerous documentation updates ~~
1462
1463     - Changed all usage of die to Carp::croak for better
1464       error reporting (initial patch by Tod Hagan)
1465
1466     ** IMPORTANT NOTE **
1467     - the make_immutable keyword is now deprecated, don't
1468       use it in any new code and please fix your old code
1469       as well. There will be 2 releases, and then it will
1470       be removed.
1471
1472     * Moose
1473       Moose::Role
1474       Moose::Meta::Class
1475       - refactored the way inner and super work to avoid
1476         any method/@ISA cache penalty (nothingmuch)
1477
1478     * Moose::Meta::Class
1479       - fixing &new_object to make sure trigger gets the
1480         coerced value (spotted by Charles Alderman on the
1481         mailing list)
1482         - added test for this
1483
1484     * Moose::Meta::Method::Constructor
1485       - immutable classes which had non-lazy attributes were calling
1486         the default generating sub twice in the constructor. (bug
1487         found by Jesse Luehrs, fixed by Dave Rolsky)
1488         - added tests for this (Dave Rolsky)
1489       - fix typo in initialize_body method (nothingmuch)
1490
1491     * Moose::Meta::Method::Destructor
1492       - fix typo in initialize_body method (nothingmuch)
1493
1494     * Moose::Meta::Method::Overriden
1495       Moose::Meta::Method::Augmented
1496       - moved the logic for these into their own
1497         classes (nothingmuch)
1498
1499     * Moose::Meta::Attribute
1500       - inherited attributes may now be extended without
1501         restriction on the type ('isa', 'does') (Sartak)
1502         - added tests for this (Sartak)
1503       - when an attribute property is malformed (such as lazy without
1504         a default), give the name of the attribute in the error
1505         message (Sartak)
1506       - added the &applied_traits and &has_applied_traits methods
1507         to allow introspection of traits
1508         - added tests for this
1509       - moved 'trait' and 'metaclass' argument handling to here from
1510         Moose::Meta::Class
1511       - clone_and_inherit_options now handles 'trait' and 'metaclass' (has
1512         '+foo' syntax) (nothingmuch)
1513         - added tests for this (t0m)
1514
1515     * Moose::Object
1516       - localize $@ inside DEMOLISHALL to avoid it
1517         eating $@ (found by Ernesto)
1518         - added test for this (thanks to Ernesto)
1519
1520     * Moose::Util::TypeConstraints
1521       - &find_type_constraint now DWIMs when given an
1522         type constraint object or name (nothingmuch)
1523       - &find_or_create_type_constraint superseded with a number of more
1524         specific functions:
1525         - find_or_create_{isa,does}_type_constraint
1526         - find_or_parse_type_constraint
1527
1528     * Moose::Meta::TypeConstraint
1529       Moose::Meta::TypeConstraint::Class
1530       Moose::Meta::TypeConstraint::Role
1531       Moose::Meta::TypeConstraint::Enum
1532       Moose::Meta::TypeConstraint::Union
1533       Moose::Meta::TypeConstraint::Parameterized
1534         - added the &equals method for comparing two type
1535           constraints (nothingmuch)
1536           - added tests for this (nothingmuch)
1537
1538     * Moose::Meta::TypeConstraint
1539       - add the &parents method, which is just an alias to &parent.
1540         Useful for polymorphism with TC::{Class,Role,Union} (nothingmuch)
1541
1542     * Moose::Meta::TypeConstraint::Class
1543       - added the class attribute for introspection purposes
1544         (nothingmuch)
1545         - added tests for this
1546
1547     * Moose::Meta::TypeConstraint::Enum
1548       Moose::Meta::TypeConstraint::Role
1549       - broke these out into their own classes (nothingmuch)
1550
1551     * Moose::Cookbook::Recipe*
1552       - fixed references to test file locations in the POD
1553         and updated up some text for new Moose features
1554         (Sartak)
1555
1556     * Moose::Util
1557       - Added &resolve_metaclass_alias, a helper function for finding an actual
1558         class for a short name (e.g. in the traits list)
1559
1560 0.40 Fri. March 14, 2008
1561     - I hate Pod::Coverage
1562
1563 0.39 Fri. March 14, 2008
1564     * Moose
1565       - documenting the use of '+name' with attributes
1566         that come from recently composed roles. It makes
1567         sense, people are using it, and so why not just
1568         officially support it.
1569       - fixing the 'extends' keyword so that it will not
1570         trigger Ovid's bug (http://use.perl.org/~Ovid/journal/35763)
1571
1572     * oose
1573       - added the perl -Moose=+Class::Name feature to allow
1574         monkeypatching of classes in one liners
1575
1576     * Moose::Util
1577       - fixing the 'apply_all_roles' keyword so that it will not
1578         trigger Ovid's bug (http://use.perl.org/~Ovid/journal/35763)
1579
1580     * Moose::Meta::Class
1581       - added ->create method which now supports roles (thanks to jrockway)
1582         - added tests for this
1583       - added ->create_anon_class which now supports roles and caching of
1584         the results (thanks to jrockway)
1585         - added tests for this
1586       - made ->does_role a little more forgiving when it is
1587         checking a Class::MOP era metaclasses.
1588
1589     * Moose::Meta::Role::Application::ToInstance
1590       - it is now possible to pass extra params to be used when
1591         a role is applied to an the instance (rebless_params)
1592         - added tests for this
1593
1594     * Moose::Util::TypeConstraints
1595       - class_type now accepts an optional second argument for a
1596         custom message. POD anotated accordingly (groditi)
1597         - added tests for this
1598       - it is now possible to make anon-enums by passing 'enum' an
1599         ARRAY ref instead of the $name => @values. Everything else
1600         works as before.
1601         - added tests for this
1602
1603     * t/
1604       - making test for using '+name' on attributes consumed
1605         from a role, it works and makes sense too.
1606
1607     * Moose::Meta::Attribute
1608       - fix handles so that it doesn't return nothing
1609         when the method cannot be found, not sure why
1610         it ever did this originally, this means we now
1611         have slightly better support for AUTOLOADed
1612         objects
1613         - added more delegation tests
1614       - adding ->does method to this so as to better
1615         support traits and their introspection.
1616         - added tests for this
1617
1618     * Moose::Object
1619       - localizing the Data::Dumper configurations so
1620         that it does not pollute others (RT #33509)
1621       - made ->does a little more forgiving when it is
1622         passed Class::MOP era metaclasses.
1623
1624 0.38 Fri. Feb. 15, 2008
1625     * Moose::Meta::Attribute
1626       - fixed initializer to correctly do
1627         type checking and coercion in the
1628         callback
1629         - added tests for this
1630
1631     * t/
1632       - fixed some finicky tests (thanks to konobi)
1633
1634 0.37 Thurs. Feb. 14, 2008
1635     * Moose
1636       - fixed some details in Moose::init_meta
1637         and its superclass handling (thanks thepler)
1638         - added tests for this (thanks thepler)
1639       - 'has' now dies if you don't pass in name
1640         value pairs
1641       - added the 'make_immutable' keyword as a shortcut
1642         to make_immutable
1643
1644     * Moose::Meta::Class
1645       Moose::Meta::Method::Constructor
1646       Moose::Meta::Attribute
1647       - making (init_arg => undef) work here too
1648         (thanks to nothingmuch)
1649
1650     * Moose::Meta::Attribute
1651       Moose::Meta::Method::Constructor
1652       Moose::Meta::Method::Accessor
1653       - make lazy attributes respect attr initializers (rjbs)
1654         - added tests for this
1655
1656     * Moose::Util::TypeConstraints
1657       Moose::Util::TypeConstraints::OptimizedConstraints
1658       Moose::Meta::TypeConstraints
1659       Moose::Meta::Attribute
1660       Moose::Meta::Method::Constructor
1661       Moose::Meta::Method::Accessor
1662       - making type errors use the
1663         assigned message (thanks to Sartak)
1664         - added tests for this
1665
1666     * Moose::Meta::Method::Destructor
1667       - making sure DESTROY gets inlined properly
1668         with successive DEMOLISH calls (thanks to manito)
1669
1670     * Moose::Meta::Attribute
1671       Moose::Meta::Method::Accessor
1672       - fixed handling of undef with type constraints
1673         (thanks to Ernesto)
1674         - added tests for this
1675
1676     * Moose::Util
1677       - added &get_all_init_args and &get_all_attribute_values
1678         (thanks to Sartak and nothingmuch)
1679
1680 0.36 Sat. Jan. 26, 2008
1681     * Moose::Role
1682       Moose::Meta::Attribute
1683       - role type tests now support when roles are
1684         applied to non-Moose classes (found by ash)
1685         - added tests for this (thanks to ash)
1686       - couple extra tests to boost code coverage
1687
1688     * Moose::Meta::Method::Constructor
1689       - improved fix for handling Class::MOP attributes
1690         - added test for this
1691
1692     * Moose::Meta::Class
1693       - handled the add_attribute($attribute_meta_object)
1694         case correctly
1695         - added test for this
1696
1697 0.35 Tues. Jan. 22, 2008
1698     * Moose::Meta::Method::Constructor
1699       - fix to make sure even Class::MOP attributes
1700         are handled correctly (Thanks to Dave Rolsky)
1701         - added test for this (also Dave Rolsky)
1702
1703     * Moose::Meta::Class
1704       - improved error message on _apply_all_roles,
1705         you should now use Moose::Util::apply_all_roles
1706         and you shouldnt have been using a _ prefixed
1707         method in the first place ;)
1708
1709 0.34 Mon. Jan. 21, 2008
1710     ~~~ more misc. doc. fixes ~~~
1711     ~~ updated copyright dates ~~
1712
1713     Moose is now a postmodern object system :)
1714       - (see the POD for details)
1715
1716     * <<Role System Refactoring>>
1717     - this release contains a major reworking and
1718       cleanup of the role system
1719       - 100% backwards compat.
1720       - Role application now restructured into seperate
1721         classes based on type of applicants
1722       - Role summation (combining of more than one role)
1723         is much cleaner and anon-classes are no longer
1724         used in this process
1725       - new Composite role metaclass
1726       - runtime application of roles to instances
1727         is now more efficient and re-uses generated
1728         classes when applicable
1729
1730     * <<New Role composition features>>
1731       - methods can now be excluded from a given role
1732         during composition
1733       - methods can now be aliased to another name (and
1734         still retain the original as well)
1735
1736     * Moose::Util::TypeConstraints::OptimizedConstraints
1737       - added this module (see above)
1738
1739     * Moose::Meta::Class
1740       - fixed the &_process_attribute method to be called
1741         by &add_attribute, so that the API is now correct
1742
1743     * Moose::Meta::Method::Accessor
1744       - fixed bug when passing a list of values to
1745         an accessor would get (incorrectly) ignored.
1746         Thanks to Sartak for finding this ;)
1747         - added tests for this (Sartak again)
1748
1749     * Moose::Meta::Method::Accessor
1750       Moose::Meta::Method::Constructor
1751       Moose::Meta::Attribute
1752       Moose::Meta::TypeConstraint
1753       Moose::Meta::TypeCoercion
1754       - lots of cleanup of such things as:
1755         - generated methods
1756         - type constraint handling
1757         - error handling/messages
1758         (thanks to nothingmuch)
1759
1760     * Moose::Meta::TypeConstraint::Parameterizable
1761       - added this module to support the refactor
1762         in Moose::Meta::TypeConstraint::Parameterized
1763
1764     * Moose::Meta::TypeConstraint::Parameterized
1765       - refactored how these types are handled so they
1766         are more generic and not confined to ArrayRef
1767         and HashRef only
1768
1769     * t/
1770       - shortened some file names for better VMS support (RT #32381)
1771
1772 0.33 Fri. Dec. 14, 2007
1773     !! Moose now loads 2 x faster !!
1774     !!  with new Class::MOP 0.49  !!
1775
1776     ++ new oose.pm module to make command line
1777        Moose-ness easier (see POD docs for more)
1778
1779     * Moose::Meta::Class
1780     * Moose::Meta::Role
1781       - several tweaks to take advantage of the
1782         new method map caching in Class::MOP
1783
1784     * Moose::Meta::TypeConstraint::Parameterized
1785       - allow subtypes of ArrayRef and HashRef to
1786         be used as a container (sartak)
1787         - added tests for this
1788       - basic support for coercion to ArrayRef and
1789         HashRef for containers (sartak)
1790         - added tests for this
1791
1792     * Moose::Meta::TypeCoercion
1793       - coercions will now create subtypes as needed
1794         so you can now add coercions to parameterized
1795         types without having to explictly define them
1796         - added tests for this
1797
1798     * Moose::Meta::Method::Accessor
1799       - allow subclasses to decide whether we need
1800         to copy the value into a new variable (sartak)
1801
1802 0.32 Tues. Dec. 4, 2007
1803     * Moose::Util::TypeConstraints
1804       - fixing how subtype aliases of unions work
1805         they should inherit the parent's coercion
1806         - added tests for this
1807       - you can now define multiple coercions on
1808         a single type at different times instead of
1809         having to do it all in one place
1810         - added tests for this
1811
1812     * Moose::Meta::TypeConstraint
1813       - there is now a default constraint of sub { 1 }
1814         instead of Moose::Util::TypeConstraints setting
1815         this for us
1816
1817     * Moose::Meta::TypeCoercion
1818     * Moose::Meta::TypeCoercion::Union
1819       - added the &has_coercion_for_type and
1820         &add_type_coercions methods to support the
1821         new features above (although you cannot add
1822         more type coercions for Union types)
1823
1824 0.31 Mon. Nov. 26, 2007
1825     * Moose::Meta::Attribute
1826       - made the +attr syntax handle extending types with
1827         parameters. So "has '+foo' => (isa => 'ArrayRef[Int]')"
1828         now works if the original foo is an ArrayRef.
1829         - added tests for this.
1830       - delegation now works even if the attribute does not
1831         have a reader method using the get_read_method_ref
1832         method from Class::MOP::Attribute.
1833         - added tests for this
1834         - added docs for this
1835
1836     * Moose::Util::TypeConstraints
1837       - passing no "additional attribute info" to
1838         &find_or_create_type_constraint will no longer
1839         attempt to create an __ANON__ type for you,
1840         instead it will just return undef.
1841         - added docs for this
1842
1843 0.30 Fri. Nov. 23, 2007
1844     * Moose::Meta::Method::Constructor
1845       -builder related bug in inlined constructor. (groditi)
1846
1847     * Moose::Meta::Method::Accessor
1848       - genereate unnecessary calls to predicates and refactor
1849         code generation for runtime speed (groditi)
1850
1851     * Moose::Util::TypeConstraints
1852       - fix ClassName constraint to introspect symbol table (mst)
1853         - added more tests for this (mst)
1854       - fixed it so that subtype 'Foo' => as 'HashRef[Int]' ...
1855         with work correctly.
1856         - added tests for this
1857
1858     * Moose::Cookbook
1859       - adding the link to Recipie 11 (written by Sartak)
1860         - adding test for SYNOPSIS code
1861
1862     * t/
1863       - New tests for builder bug. Upon instantiation, if an
1864         attribute had a builder, no value and was not lazy the
1865         builder default was not getting run, oops. (groditi)
1866
1867 0.29 Tues. Nov. 13, 2007
1868     * Moose::Meta::Attribute
1869       - Fix error message on missing builder method (groditi)
1870
1871     * Moose::Meta::Method::Accessor
1872       - Fix error message on missing builder method (groditi)
1873
1874     * t/
1875       - Add test to check for the correct error message when
1876         builder method is missing (groditi)
1877
1878 0.28 Tues. Nov. 13, 2007
1879     - 0.27 packaged incorrectly (groditi)
1880
1881 0.27 Tues. Nov. 13, 2007
1882     * Moose::Meta::Attribute
1883       - Added support for the new builder option (groditi)
1884       - Added support for lazy_build option (groditi)
1885       - Changed slot initialization for predicate changes (groditi)
1886
1887     * Moose::Meta::Method::Accessor
1888       - Added support for lazy_build option (groditi)
1889       - Fix inline methods to work with corrected predicate
1890         behavior (groditi)
1891
1892     * Moose::Meta::Method::Constructor
1893       - Added support for lazy_build option (groditi)
1894
1895     * t/
1896       - tests for builder and lazy_build (groditi)
1897
1898     * fixing some misc. bits in the docs that
1899       got mentioned on CPAN Forum & perlmonks
1900
1901     * Moose::Meta::Role
1902       - fixed how required methods are handled
1903         when they encounter overriden or modified
1904         methods from a class (thanks to confound).
1905         - added tests for this
1906
1907     * Moose::Util::TypeConstraint
1908       - fixed the type notation parser so that
1909         the | always creates a union and so is
1910         no longer a valid type char (thanks to
1911         konobi, mugwump and #moose for working
1912         this one out.)
1913         - added more tests for this
1914
1915 0.26 Thurs. Sept. 27, 2007
1916     == New Features ==
1917
1918     * Parameterized Types
1919       We now support parameterized collection types, such as:
1920           ArrayRef[Int]    # array or integers
1921           HashRef[Object]  # a hash with object values
1922       They can also be nested:
1923           ArrayRef[HashRef[RegexpRef]] # an array of hashes with regex values
1924       And work with the type unions as well:
1925           ArrayRef[Int | Str]  # array of integers of strings
1926
1927     * Better Framework Extendability
1928       Moose.pm is now "extendable" such that it is now much
1929       easier to extend the framework and add your own keywords
1930       and customizations. See the "EXTENDING AND EMBEDDING MOOSE"
1931       section of the Moose.pm docs.
1932
1933     * Moose Snacks!
1934       In an effort to begin documenting some of the various
1935       details of Moose as well as some common idioms, we have
1936       created Moose::Cookbook::Snacks as a place to find
1937       small (easily digestable) nuggets of Moose code.
1938
1939     ====
1940     ~ Several doc updates/cleanup thanks to castaway ~
1941
1942     - converted build system to use Module::Install instead of
1943       Module::Build (thanks to jrockway)
1944
1945     * Moose
1946       - added all the meta classes to the immutable list and
1947         set it to inline the accessors
1948       - fix import to allow Sub::Exporter like { into => }
1949             and { into_level => } (perigrin)
1950       - exposed and documented init_meta() to allow better
1951             embedding and extending of Moose (perigrin)
1952
1953         * t/
1954           - complete re-organization of the test suite
1955           - added some new tests as well
1956           - finally re-enabled the Moose::POOP test since
1957             the new version of DBM::Deep now works again
1958             (thanks rob)
1959
1960     * Moose::Meta::Class
1961       - fixed very odd and very nasty recursion bug with
1962         inner/augment (mst)
1963         - added tests for this (eilara)
1964
1965     * Moose::Meta::Attribute
1966       Moose::Meta::Method::Constructor
1967       Moose::Meta::Method::Accessor
1968       - fixed issue with overload::Overloaded getting called
1969         on non-blessed items. (RT #29269)
1970         - added tests for this
1971
1972     * Moose::Meta::Method::Accessor
1973       - fixed issue with generated accessor code making
1974         assumptions about hash based classes (thanks to dexter)
1975
1976     * Moose::Coookbook::Snacks
1977       - these are bits of documentation, not quite as big as
1978         Recipes but which have no clear place in the module docs.
1979         So they are Snacks! (horray for castaway++)
1980
1981     * Moose::Cookbook::Recipe4
1982       - updated it to use the new ArrayRef[MyType] construct
1983         - updated the accompanying test as well
1984
1985     +++ Major Refactor of the Type Constraint system +++
1986     +++       with new features added as well        +++
1987
1988     * Moose::Util::TypeConstraint
1989       - no longer uses package variable to keep track of
1990         the type constraints, now uses the an instance of
1991         Moose::Meta::TypeConstraint::Registry to do it
1992       - added more sophisticated type notation parsing
1993         (thanks to mugwump)
1994         - added tests for this
1995
1996     * Moose::Meta::TypeConstraint
1997       - some minor adjustments to make subclassing easier
1998       - added the package_defined_in attribute so that we
1999         can track where the type constraints are created
2000
2001     * Moose::Meta::TypeConstraint::Union
2002       - this is now been refactored to be a subclass of
2003         Moose::Meta::TypeConstraint
2004
2005     * Moose::Meta::TypeCoercion::Union
2006       - this has been added to service the newly refactored
2007         Moose::Meta::TypeConstraint::Union and is itself
2008         a subclass of Moose::Meta::TypeCoercion
2009
2010     * Moose::Meta::TypeConstraint::Parameterized
2011       - added this module (taken from MooseX::AttributeHelpers)
2012         to help construct nested collection types
2013         - added tests for this
2014
2015     * Moose::Meta::TypeConstraint::Registry
2016       - added this class to keep track of type constraints
2017
2018 0.25 Mon. Aug. 13, 2007
2019     * Moose
2020       - Documentation update to reference Moose::Util::TypeConstraints
2021         under 'isa' in 'has' for how to define a new type
2022         (thanks to shlomif).
2023
2024     * Moose::Meta::Attribute
2025       - required attributes now will no longer accept undef
2026         from the constructor, even if there is a default and lazy
2027         - added tests for this
2028       - default subroutines must return a value which passes the
2029         type constraint
2030         - added tests for this
2031
2032     * Moose::Meta::Attribute
2033     * Moose::Meta::Method::Constructor
2034     * Moose::Meta::Method::Accessor
2035       - type-constraint tests now handle overloaded objects correctly
2036         in the error message
2037         - added tests for this (thanks to EvanCarroll)
2038
2039     * Moose::Meta::TypeConstraint::Union
2040       - added (has_)hand_optimized_constraint to this class so that
2041         it behaves as the regular Moose::Meta::TypeConstraint does.
2042
2043     * Moose::Meta::Role
2044       - large refactoring of this code
2045       - added several more tests
2046         - tests for subtle conflict resolition issues
2047           added, but not currently running
2048           (thanks to kolibre)
2049
2050     * Moose::Cookbook::Recipe7
2051       - added new recipe for augment/inner functionality
2052         (still in progress)
2053         - added test for this
2054
2055     * Moose::Spec::Role
2056       - a formal definition of roles (still in progress)
2057
2058     * Moose::Util
2059       - utilities for easier working with Moose classes
2060         - added tests for these
2061
2062     * Test::Moose
2063       - This contains Moose specific test functions
2064         - added tests for these
2065
2066 0.24 Tues. July 3, 2007
2067     ~ Some doc updates/cleanup ~
2068
2069     * Moose::Meta::Attribute
2070       - added support for roles to be given as parameters
2071         to the 'handles' option.
2072         - added tests and docs for this
2073       - the has '+foo' attribute form now accepts changes to
2074         the lazy option, and the addition of a handles option
2075         (but not changing the handles option)
2076         - added tests and docs for this
2077
2078     * Moose::Meta::Role
2079       - required methods are now fetched using find_method_by_name
2080         so that required methods can come from superclasses
2081         - adjusted tests for this
2082
2083 0.23 Mon. June 18, 2007
2084     * Moose::Meta::Method::Constructor
2085       - fix inlined constructor for hierarchy with multiple BUILD methods (mst)
2086     * Moose::Meta::Class
2087       - Modify make_immutable to work with the new Class::MOP immutable
2088         mechanism + POD + very basic test (groditi)
2089     * Moose::Meta::Attribute
2090       - Fix handles to use goto() so that caller() comes out properly on
2091         the other side (perigrin)
2092
2093 0.22 Thurs. May 31, 2007
2094     * Moose::Util::TypeConstraints
2095       - fix for prototype undeclared issue when Moose::Util::TypeConstraints
2096         loaded before consumers (e.g. Moose::Meta::Attribute) by predeclaring
2097         prototypes for functions
2098       - added the ClassName type constraint, this checks for strings
2099         which will respond true to ->isa(UNIVERSAL).
2100         - added tests and docs for this
2101       - subtyping just in name now works correctly by making the
2102         default for where be { 1 }
2103         - added test for this
2104
2105     * Moose::Meta::Method::Accessor
2106       - coerce and lazy now work together correctly, thanks to
2107         merlyn for finding this bug
2108         - tests added for this
2109       - fix reader presedence bug in Moose::Meta::Attribute + tests
2110
2111     * Moose::Object
2112       - Foo->new(undef) now gets ignored, it is assumed you meant to pass
2113         a HASH-ref and missed. This produces better error messages then
2114         having it die cause undef is not a HASH.
2115         - added tests for this
2116
2117 0.21 Thursday, May 2nd, 2007
2118     * Moose
2119       - added SUPER_SLOT and INNER_SLOT class hashes to support unimport
2120       - modified unimport to remove super and inner along with the rest
2121         - altered unimport tests to handle this
2122
2123     * Moose::Role
2124       - altered super export to populate SUPER_SLOT
2125
2126     * Moose::Meta::Class
2127       - altered augment and override modifier application to use *_SLOT
2128         - modified tests for these to unimport one test class each to test
2129
2130     * Moose::Meta::Role
2131       - fixed issue where custom attribute metaclasses
2132         where not handled correctly in roles
2133         - added tests for this
2134
2135     * Moose::Meta::Class
2136       - fixed issue where extending metaclasses with
2137         roles would blow up. Thanks to Aankhen`` for
2138         finding this insidious error, and it's solution.
2139
2140     ~~ lots of spelling and grammer fixes in the docs,
2141        many many thanks to rlb3 and Aankhen for these :)
2142
2143 0.20 Friday, April 6th, 2007
2144     >> I messed up the SKIP logic in one test
2145        so this release is just to fix that.
2146
2147     * Moose
2148       - 'has' now also accepts an ARRAY ref
2149         to create multiple attrs (see docs)
2150         (thanks to konobi for this)
2151          - added tests and docs
2152
2153 0.19 Thurs. April 5th, 2007
2154     ~~ More documentation updates ~~
2155
2156     * Moose::Util::TypeConstraints
2157       - 'type' now supports messages as well
2158         thanks to phaylon for finding this
2159         - added tests for this
2160       - added &list_all_type_constraints and
2161         &list_all_builtin_type_constraints
2162         functions to facilitate introspection.
2163
2164     * Moose::Meta::Attribute
2165       - fixed regexp 'handles' declarations
2166         to build the list of delegated methods
2167         correctly (and not override important
2168         things like &new) thanks to ashleyb
2169         for finding this
2170         - added tests and docs for this
2171       - added the 'documentation' attributes
2172         so that you can actually document your
2173         attributes and inspect them through the
2174         meta-object.
2175         - added tests and docs for this
2176
2177     * Moose::Meta::Class
2178       - when loading custom attribute metaclasses
2179         it will first look in for the class in the
2180         Moose::Meta::Attribute::Custom::$name, and
2181         then default to just loading $name.
2182         - added tests and docs for this
2183
2184     * Moose::Meta::TypeConstraint
2185       - type constraints now stringify to their names.
2186         - added test for this
2187
2188     * misc.
2189       - added tests to assure we work with Module::Refresh
2190       - added stricter test skip logic in the Moose POOP
2191         test, ask Rob Kinyon why.
2192         - *cough* DBM::Deep 1.0 backwards compatibility sucks *cough* ;)
2193
2194 0.18 Sat. March 10, 2007
2195     ~~ Many, many documentation updates ~~
2196
2197     * misc.
2198       - We now use Class::MOP::load_class to
2199         load all classes.
2200       - added tests to show types and subtypes
2201         working with Declare::Constraints::Simple
2202         and Test::Deep as constraint engines.
2203
2204 0.18_001
2205     !! You must have Class::MOP 0.37_001  !!
2206     !! for this developer release to work !!
2207
2208     This release was primarily adding the immutable
2209     feature to Moose. An immutable class is one which
2210     you promise not to alter. When you set the class
2211     as immutable it will perform various bits of
2212     memoization and inline certain part of the code
2213     (constructors, destructors and accessors). This
2214     minimizes (and in some cases totally eliminates)
2215     one of Moose's biggest performance hits. This
2216     feature is not on by default, and is 100% optional.
2217     It has several configurable bits as well, so you
2218     can pick and choose to your specific needs.
2219
2220     The changes involved in this were fairly wide and
2221     highly specific, but 100% backwards compatible, so
2222     I am not going to enumerate them here. If you are
2223     truely interested in what was changed, please do
2224     a diff :)
2225
2226 0.17 Tues. Nov. 14, 2006
2227     * Moose::Meta::Method::Accessor
2228       - bugfix for read-only accessors which
2229         are have a type constraint and lazy.
2230         Thanks to chansen for finding it.
2231
2232 0.16 Tues. Nov. 14, 2006
2233     ++ NOTE ++
2234     There are some speed improvements in this release,
2235     but they are only the begining, so stay tuned.
2236
2237     * Moose::Object
2238       - BUILDALL and DEMOLISHALL no longer get
2239         called unless they actually need to be.
2240         This gave us a signifigant speed boost
2241         for the cases when there is no BUILD or
2242         DEMOLISH method present.
2243
2244     * Moose::Util::TypeConstraints
2245     * Moose::Meta::TypeConstraint
2246       - added an 'optimize_as' option to the
2247         type constraint, which allows for a
2248         hand optimized version of the type
2249         constraint to be used when possible.
2250       - Any internally created type constraints
2251         now provide an optimized version as well.
2252
2253 0.15 Sun. Nov. 5, 2006
2254     ++ NOTE ++
2255     This version of Moose *must* have Class::MOP 0.36 in order
2256     to work correctly. A number of small internal tweaks have
2257     been made in order to be compatible with that release.
2258
2259     * Moose::Util::TypeConstraints
2260       - added &unimport so that you can clean out
2261         your class namespace of these exported
2262         keywords
2263
2264     * Moose::Meta::Class
2265       - fixed minor issue which occasionally
2266         comes up during global destruction
2267         (thanks omega)
2268       - moved Moose::Meta::Method::Overriden into
2269         its own file.
2270
2271     * Moose::Meta::Role
2272       - moved Moose::Meta::Role::Method into
2273         its own file.
2274
2275     * Moose::Meta::Attribute
2276       - changed how we do type checks so that
2277         we reduce the overall cost, but still
2278         retain correctness.
2279        *** API CHANGE ***
2280       - moved accessor generation methods to
2281         Moose::Meta::Method::Accessor to
2282         conform to the API changes from
2283         Class::MOP 0.36
2284
2285     * Moose::Meta::TypeConstraint
2286       - changed how constraints are compiled
2287         so that we do less recursion and more
2288         iteration. This makes the type check
2289         faster :)
2290       - moved Moose::Meta::TypeConstraint::Union
2291         into its own file
2292
2293     * Moose::Meta::Method::Accessor
2294       - created this from methods formerly found in
2295         Moose::Meta::Attribute
2296
2297     * Moose::Meta::Role::Method
2298       - moved this from Moose::Meta::Role
2299
2300     * Moose::Meta::Method::Overriden
2301       - moved this from Moose::Meta::Class
2302
2303     * Moose::Meta::TypeConstraint::Union
2304       - moved this from Moose::Meta::TypeConstraint
2305
2306 0.14 Mon. Oct. 9, 2006
2307
2308     * Moose::Meta::Attribute
2309       - fixed lazy attributes which were not getting
2310         checked with the type constraint (thanks ashley)
2311         - added tests for this
2312       - removed the over-enthusiastic DWIMery of the
2313         automatic ArrayRef and HashRef defaults, it
2314         broke predicates in an ugly way.
2315         - removed tests for this
2316
2317 0.13 Sat. Sept. 30, 2006
2318     ++ NOTE ++
2319     This version of Moose *must* have Class::MOP 0.35 in order
2320     to work correctly. A number of small internal tweaks have
2321     been made in order to be compatible with that release.
2322
2323     * Moose
2324       - Removed the use of UNIVERSAL::require to be a better
2325         symbol table citizen and remove a dependency
2326         (thanks Adam Kennedy)
2327
2328       **~~ removed experimental & undocumented feature ~~**
2329       - commented out the 'method' and 'self' keywords, see the
2330         comments for more info.
2331
2332     * Moose::Cookbook
2333       - added a FAQ and WTF files to document frequently
2334         asked questions and common problems
2335
2336     * Moose::Util::TypeConstraints
2337       - added GlobRef and FileHandle type constraint
2338         - added tests for this
2339
2340     * Moose::Meta::Attribute
2341       - if your attribute 'isa' ArrayRef of HashRef, and you have
2342         not explicitly set a default, then make the default DWIM.
2343         This will also work for subtypes of ArrayRef and HashRef
2344         as well.
2345       - you can now auto-deref subtypes of ArrayRef or HashRef too.
2346         - new test added for this (thanks to ashley)
2347
2348     * Moose::Meta::Role
2349       - added basic support for runtime role composition
2350         but this is still *highly experimental*, so feedback
2351         is much appreciated :)
2352         - added tests for this
2353
2354     * Moose::Meta::TypeConstraint
2355       - the type constraint now handles the coercion process
2356         through delegation, this is to support the coercion
2357         of unions
2358
2359     * Moose::Meta::TypeConstraint::Union
2360       - it is now possible for coercions to be performed
2361         on a type union
2362         - added tests for this (thanks to konobi)
2363
2364     * Moose::Meta::TypeCoercion
2365       - properly capturing error when type constraint
2366         is not found
2367
2368     * Build.PL
2369       - Scalar::Util 1.18 is bad on Win32, so temporarily
2370         only require version 1.17 for Win32 and cygwin.
2371         (thanks Adam Kennedy)
2372
2373 0.12 Sat. Sept. 1, 2006
2374     * Moose::Cookbook
2375       - Recipe5 (subtypes & coercion) has been written
2376
2377     * Moose
2378       - fixed "bad meta" error message to be more descriptive
2379       - fixed &unimport to not remove the &inner and &super
2380         keywords because we need to localize them.
2381       - fixed number of spelling/grammer issues, thanks Theory :)
2382
2383       **~~ experimental & undocumented feature ~~**
2384       - added the method and self keywords, they are basically
2385         just sugar, and they may not stay around.
2386
2387     * Moose::Object
2388       - added &dump method to easily Data::Dumper
2389         an object
2390
2391     * Moose::Meta::TypeConstraint
2392       - added the &is_a_type_of method to check both the current
2393         and the subtype of a method (similar to &isa with classes)
2394
2395     * Moose::Meta::Role
2396       - this is now a subclass of Class::MOP::Module, and no longer
2397         creates the _role_meta ugliness of before.
2398         - fixed tests to reflect this change
2399
2400 0.11 Wed. July 12, 2006
2401     * Moose
2402       - added an &unimport method to remove all the keywords
2403         that Moose will import, simply add 'no Moose' to the
2404         bottom of your class file.
2405
2406     * t/
2407       - fixed some test failures caused by a forgotten test
2408         dependency.
2409
2410 0.10 Thurs. July 6, 2006
2411     * Moose
2412       - improved error message when loading modules so
2413         it is less confusing when you load a role.
2414       - added &calculate_all_roles method to
2415         Moose::Meta::Class and Moose::Meta::Role
2416
2417     NOTE:
2418     This module has been tested against Class::MOP 0.30
2419     but it does not yet utilize the optimizations
2420     it makes available. Stay tuned for that ;)
2421
2422 0.09_03 Fri. June 23, 2006
2423     ++ DEVELOPER RELEASE ++
2424     * Moose
2425       - 'use strict' and 'use warnings' are no longer
2426          needed in Moose classes, Moose itself will
2427          turn them on for you.
2428          - added tests for this
2429       - moved code from exported subs to private methods
2430         in Moose::Meta::Class
2431
2432     * Moose::Role
2433       - as with Moose, strict and warnings are
2434         automatically turned on for you.
2435          - added tests for this
2436
2437     * Moose::Meta::Role
2438       - now handles an edge case for override errors
2439         - added tests for this
2440       - added some more edge case tests
2441
2442 0.09_02 Tues. May 16, 2006
2443     ++ DEVELOPER RELEASE ++
2444     * Moose
2445       - added prototypes to the exported subs
2446       - updated docs
2447
2448     * Moose::Role
2449       - added prototypes to the exported subs
2450       - updated docs
2451
2452     * Moose::Util::TypeConstraints
2453       - cleaned up prototypes for the subs
2454       - updated docs
2455
2456 0.09_01 Fri. May 12, 2006
2457     ++ DEVELOPER RELEASE ++
2458       - This release works in combination with
2459         Class::MOP 0.29_01, it is a developer
2460         release because it uses the a new
2461         instance sub-protocol and a fairly
2462         complete Role implementation. It has
2463         not yet been optimized, so it slower
2464         the the previous CPAN version. This
2465         release also lacks good updated docs,
2466         the official release will have updated docs.
2467
2468     * Moose
2469       - refactored the keyword exports
2470         - 'with' now checks Role validaity and
2471           accepts more than one Role at a time
2472         - 'extends' makes metaclass adjustments as
2473            needed to ensure metaclass compatibility
2474
2475     * Moose::Role
2476       - refactored the keyword exports
2477         - 'with' now checks Role validaity and
2478           accepts more than one Role at a time
2479
2480     * Moose::Util::TypeConstraints
2481       - added the 'enum' keyword for simple
2482         string enumerations which can be used as
2483         type constraints
2484         - see example of usage in t/202_example.t
2485
2486     * Moose::Object
2487       - more careful checking of params to new()
2488
2489     * Moose::Meta::Role
2490       - much work done on the role composition
2491         - many new tests for conflict detection
2492           and composition edge cases
2493         - not enough documentation, I suggest
2494           looking at the tests
2495
2496     * Moose::Meta::Instance
2497       - added new Instance metaclass to support
2498         the new Class::MOP instance protocol
2499
2500     * Moose::Meta::Class
2501       - some small changes to support the new
2502         instance protocol
2503       - some small additions to support Roles
2504
2505     * Moose::Meta::Attribute
2506       - some improvements to the accessor generation code
2507         by nothingmuch
2508       - some small changes to support the new
2509         instance protocol
2510       - (still somewhat) experimental delegation support
2511         with the 'handles' option
2512         - added several tests for this
2513         - no docs for this yet
2514
2515 0.05 Thurs. April 27, 2006
2516     * Moose
2517       - keywords are now exported with Sub::Exporter
2518         thanks to chansen for this commit
2519       - has keyword now takes a 'metaclass' option
2520         to support custom attribute meta-classes
2521         on a per-attribute basis
2522         - added tests for this
2523       - the 'has' keyword not accepts inherited slot
2524         specifications (has '+foo'). This is still an
2525         experimental feature and probably not finished
2526         see t/038_attribute_inherited_slot_specs.t for
2527         more details, or ask about it on #moose
2528         - added tests for this
2529
2530     * Moose::Role
2531       - keywords are now exported with Sub::Exporter
2532
2533     * Moose::Utils::TypeConstraints
2534       - reorganized the type constraint hierarchy, thanks
2535         to nothingmuch and chansen for his help and advice
2536         on this
2537         - added some tests for this
2538       - keywords are now exported with Sub::Exporter
2539         thanks to chansen for this commit
2540
2541     * Moose::Meta::Class
2542       - due to changes in Class::MOP, we had to change
2543         construct_instance (for the better)
2544
2545     * Moose::Meta::Attribute
2546       - due to changes in Class::MOP, we had to add the
2547         initialize_instance_slot method (it's a good thing)
2548
2549     * Moose::Meta::TypeConstraint
2550       - added type constraint unions
2551         - added tests for this
2552       - added the is_subtype_of predicate method
2553         - added tests for this
2554
2555 0.04 Sun. April 16th, 2006
2556     * Moose::Role
2557       - Roles can now consume other roles
2558         - added tests for this
2559       - Roles can specify required methods now with
2560         the requires() keyword
2561         - added tests for this
2562
2563     * Moose::Meta::Role
2564       - ripped out much of it's guts ,.. much cleaner now
2565       - added required methods and correct handling of
2566         them in apply() for both classes and roles
2567         - added tests for this
2568       - no longer adds a does() method to consuming classes
2569         it relys on the one in Moose::Object
2570       - added roles attribute and some methods to support
2571         roles consuming roles
2572
2573     * Moose::Meta::Attribute
2574       - added support for triggers on attributes
2575         - added tests for this
2576       - added support for does option on an attribute
2577         - added tests for this
2578
2579     * Moose::Meta::Class
2580       - added support for attribute triggers in the
2581         object construction
2582         - added tests for this
2583
2584     * Moose
2585       - Moose no longer creates a subtype for your class
2586         if a subtype of the same name already exists, this
2587         should DWIM in 99.9999% of all cases
2588
2589     * Moose::Util::TypeConstraints
2590       - fixed bug where incorrect subtype conflicts were
2591         being reported
2592         - added test for this
2593
2594     * Moose::Object
2595       - this class can now be extended with 'use base' if
2596         you need it, it properly loads the metaclass class now
2597         - added test for this
2598
2599 0.03_02 Wed. April 12, 2006
2600     * Moose
2601       - you must now explictly use Moose::Util::TypeConstraints
2602         it no longer gets exported for you automatically
2603
2604     * Moose::Object
2605       - new() now accepts hash-refs as well as key/value lists
2606       - added does() method to check for Roles
2607         - added tests for this
2608
2609     * Moose::Meta::Class
2610       - added roles attribute along with the add_role() and
2611         does_role() methods
2612         - added tests for this
2613
2614     * Moose::Meta::Role
2615       - now adds a does() method to consuming classes
2616         which tests the class's hierarchy for roles
2617         - added tests for this
2618
2619 0.03_01 Mon. April 10, 2006
2620     * Moose::Cookbook
2621       - added new Role recipe (no content yet, only code)
2622
2623     * Moose
2624       - added 'with' keyword for Role support
2625         - added test and docs for this
2626       - fixed subtype quoting bug
2627         - added test for this
2628
2629     * Moose::Role
2630       - Roles for Moose
2631         - added test and docs
2632
2633     * Moose::Util::TypeConstraints
2634       - added the message keyword to add custom
2635         error messages to type constraints
2636
2637     * Moose::Meta::Role
2638       - the meta role to support Moose::Role
2639         - added tests and docs
2640
2641     * Moose::Meta::Class
2642       - moved a number of things from Moose.pm
2643         to here, they should have been here
2644         in the first place
2645
2646     * Moose::Meta::Attribute
2647       - moved the attribute option macros here
2648         instead of putting them in Moose.pm
2649
2650     * Moose::Meta::TypeConstraint
2651       - added the message attributes and the
2652         validate method
2653         - added tests and docs for this
2654
2655 0.03 Thurs. March 30, 2006
2656     * Moose::Cookbook
2657       - added the Moose::Cookbook with 5 recipes,
2658         describing all the stuff Moose can do.
2659
2660     * Moose
2661       - fixed an issue with &extends super class loading
2662         it now captures errors and deals with inline
2663         packages correctly (bug found by mst, solution
2664         stolen from alias)
2665       - added super/override & inner/augment features
2666         - added tests and docs for these
2667
2668     * Moose::Object
2669       - BUILDALL now takes a reference of the %params
2670         that are passed to &new, and passes that to
2671         each BUILD as well.
2672
2673     * Moose::Util::TypeConstraints
2674       - Type constraints now survive runtime reloading
2675         - added test for this
2676
2677         * Moose::Meta::Class
2678           - fixed the way attribute defaults are handled
2679             during instance construction (bug found by chansen)
2680
2681     * Moose::Meta::Attribute
2682       - read-only attributes now actually enforce their
2683         read-only-ness (this corrected in Class::MOP as
2684         well)
2685
2686 0.02 Tues. March 21, 2006
2687     * Moose
2688       - many more tests, fixing some bugs and
2689         edge cases
2690       - &extends now loads the base module with
2691         UNIVERSAL::require
2692         - added UNIVERSAL::require to the
2693           dependencies list
2694       ** API CHANGES **
2695       - each new Moose class will also create
2696         and register a subtype of Object which
2697         correspond to the new Moose class.
2698       - the 'isa' option in &has now only
2699         accepts strings, and will DWIM in
2700         almost all cases
2701
2702     * Moose::Util::TypeConstraints
2703       - added type coercion features
2704         - added tests for this
2705         - added support for this in attributes
2706           and instance construction
2707       ** API CHANGES **
2708       - type construction no longer creates a
2709         function, it registers the type instead.
2710         - added several functions to get the
2711           registered types
2712
2713     * Moose::Object
2714       - BUILDALL and DEMOLISHALL were broken
2715         because of a mis-named hash key, Whoops :)
2716
2717     * Moose::Meta::Attribute
2718       - adding support for coercion in the
2719         autogenerated accessors
2720
2721     * Moose::Meta::Class
2722       - adding support for coercion in the
2723         instance construction
2724
2725     * Moose::Meta::TypeConstraint
2726     * Moose::Meta::TypeCoercion
2727           - type constraints and coercions are now
2728             full fledges meta-objects
2729
2730 0.01 Wed. March 15, 2006
2731     - Moooooooooooooooooose!!!