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