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