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