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