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