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