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