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