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