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