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