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