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