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