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