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