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