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