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