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