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