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