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