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