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