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