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