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