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