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