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