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