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