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