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