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