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