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