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