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