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