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