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