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