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