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