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