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