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