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