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