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