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