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