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