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