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