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