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