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