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