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