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