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