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