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