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