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