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