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