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