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