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