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