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