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