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