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