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