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