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