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