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