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