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