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