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