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