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