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