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